html, body {
   
    overflow-x: hidden;
}


* {
    box-sizing: border-box;

}


   .btn-gradient-primary {
   background: linear-gradient(90deg, #043575, #282036);
   color: #fff !important;
   transition: 0.3s ease;
   }
   .btn-gradient-primary:hover {
   background: linear-gradient(90deg, #282036, #043575);
   transform: translateY(-3px);
   }
   @keyframes pulse {
   0%, 100% { transform: scale(1); }
   50% { transform: scale(1.03); }
   }

   .process-section {
   background: linear-gradient(135deg, #f8fbff, #f2f6f7);
   }
   .text-gradient {
   background: linear-gradient(90deg, #007bff, #00c6ff);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   }
   .process-card {
   border-radius: 8px;
   transition: all 0.4s ease-in-out;
   border: 1px solid rgba(0, 123, 255, 0.1);
   }
   .process-number {
  width: 60px;
  height: 60px;
  line-height: 60px;          /* ✅ vertically centers number (works in Safari too) */
  border-radius: 50%;         /* ✅ keeps it circular */
  background-color:#043575;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  -webkit-text-stroke: 0 transparent; /* ✅ Fix iOS text rendering issue */
  -webkit-font-smoothing: antialiased;
  overflow: visible;           /* ✅ prevents Safari clipping text */
}
   .process-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
   }
   .process-card:hover {
   background-color: #043575;
   }
   .btn-primary {
   background: linear-gradient(90deg, #007bff, #00c6ff);
   border: none;
   transition: all 0.3s ease-in-out;
   }
   .btn-primary:hover {
   background: linear-gradient(90deg, #0056b3, #0092ff);
   transform: translateY(-3px);
   }


   .text-gradient {
   background: linear-gradient(90deg, #007bff, #00c6ff);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   }
   .icon-circle {
   width: 70px;
   height: 70px;
   background: linear-gradient(135deg, #043575, #69291d);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 28px;
   transition: all 0.4s ease;
   }
   .feature-card {
   transition: all 0.4s ease-in-out;
   border-radius: 5px;
   border: 1px solid rgba(0, 123, 255, 0.1);
   }
   .feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
   }
   .feature-card:hover .icon-circle {
   transform: scale(1.1) rotate(10deg);
   background-color:#043575;
   }

   .ltn__feature-item{
   border: 1px dashed #ccbdba;
   border-radius: 5px;
   }
   .ltn__feature-info h4{
   font-size: 17px;
   }



  .btn-gradient-primary {
    background: linear-gradient(90deg, #043575);
    color: #fff !important;
    transition: 0.3s ease;
  }
  .btn-gradient-primary:hover {
    background: linear-gradient(90deg, #282036, #043575);
    transform: translateY(-3px);
  }

  .process-card {
    transition: 0.3s ease-in-out;
    background-color: #fff;
  }

  .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #043575, #282036);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .step-number {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
  }

  @media (max-width: 767px) {
    .process-card {
      padding: 2rem 1.5rem;
    }
  }


.bi{
    color: #043575 !important;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card i {
  font-size: 55px;
  display: inline-block;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}



    h1.trusted-heading {
      display: inline-flex;
      align-items: center;
      background-color: #e6f0ff; /* Light blue background */
      color: #043575; /* Deep blue text */
      font-family: 'Segoe UI', Arial, sans-serif;
      font-size: 25px;
      font-weight: 700;
      border-radius: 50px;
      padding: 25px 40px;
      gap: 10px;
      margin: 0;
    }

    h1.trusted-heading i {
      font-size: 22px;
      color: #043575;
    }

    /* Optional subtle animation */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-2px); }
    }

    h1.trusted-heading i {
      animation: float 2s ease-in-out infinite;
    }
  @media(max-width: 576px){
      h1.trusted-heading{
    font-size: 15px;
}
  }





/* ✅ Equal height, no stretching */
.ltn__brand-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  overflow: hidden;
}
.ltn__brand-logo-item img {
  width: auto;
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ltn__brand-logo-item img:hover {
  transform: scale(1.1);
}

/* ✅ Auto-slide animation wrapper */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logo-track {
  display: flex;
  width: calc(200px * 12); /* 12 total images (6 original + 6 duplicates) */
  animation: scroll 25s linear infinite;
}

/* ✅ Continuous scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6)); /* Move half of the track */
  }
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
    .ltn__brand-logo-item img{
        height: 65px;
    }
  .ltn__brand-logo-item {
    height: 70px;
  }
  .logo-track {
    animation: scroll 20s linear infinite;
  }
}
@media (max-width: 480px) {
  .ltn__brand-logo-item {
    height: 60px;
  }
  .logo-track {
    animation: scroll 18s linear infinite;
  }
}



.ltn__testimoni-info video {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltn__testimoni-info video:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/*=======================================*/


.privacy-header .icon-wrap {
  background: linear-gradient(135deg, #007bff, #043575);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.privacy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.policy-item {
  margin-bottom: 2rem;
  border-bottom: 1px dashed #e5e9f0;
  padding-bottom: 1.5rem;
}

.policy-item h2 {
  font-size: 27px;
  font-weight: 600;
  color: #043575;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-item ul {
  margin-top: 8px;
  padding-left: 25px;
}

.policy-item ul li {
  margin-bottom: 6px;
}

.contact-card {
  background: #f0f7ff;
  border-left: 4px solid #043575;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .privacy-header .icon-wrap {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .policy-item h2 {
    font-size: 1.3rem;
    font-weight: bold;
  }
}

/*==================================*/
