@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
  margin: 0;
  padding: 0;
}

h3{
  font-size: 30px;
}
h4{
  font-size: 20px;
}

.heading-smooth {
  position: relative;
  display: inline-block;
  /* font-size: 46px; */
  /* white-space: nowrap; */
  font-weight: 800;
  text-transform: uppercase;
  color: #302F79;
  background: linear-gradient(90deg, #302F79, #2378B1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 10px;
}

.heading-smooth::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #302F79, #2378B1);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 120 10' xmlns='http://www.w3.org/2000/svg'><path d='M0 5 Q 30 0, 60 5 T 120 5' fill='none' stroke='black' stroke-width='3'/></svg>")
    repeat-x;
  -webkit-mask-size: 60px 10px;
  animation: moveWave 4s linear infinite;
}

@keyframes moveWave {
  from {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
  to {
    mask-position: 60px 0;
    -webkit-mask-position: 60px 0;
  }
}



h1,h2,h3,h4,h5,h6  {
  /* text-align: justify; */
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;

  /* font-size: 20px;  */
}
p,span,ul,li{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}
p{
  text-align: justify !important;
 
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #4cb7ff;
  transition: width 0.3s ease-in-out;
}
    .active {
  position: relative;
  text-decoration: none;
  color: #4cb7ff;
  
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #4cb7ff;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover {
  color: #4cb7ff;
}

.nav-link:hover::after {
  width: 100%;
}

a{
  text-decoration: none;

}


/* carousel */


  .swiper {
    width: 100%;
    height: 75vh;
  }

  .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
  }

  /* Subtle dark overlay for better text readability */
  .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.534);
  }

  /* Slide text */
  .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 850px;
    animation: fadeInUp 1.2s ease forwards;
  }

  .slide-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  }

  .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
  }

  .slide-content a {
    display: inline-block;
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .slide-content a:hover {
    background: #1e3a8a;
    color: #fff;
  }

  /* Pagination bullets */
  .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.6;
    transition: 0.3s;
  }

  .swiper-pagination-bullet-active {
    background: #1e3a8a !important;
    opacity: 1;
    transform: scale(1.2);
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .swiper {
      height: 60vh;
    }

    .slide-content {
      left: 5%;
      max-width: 90%;
      text-align: center;
      transform: translateY(-50%);
    }

    .slide-content h2 {
      font-size: 26px;
      line-height: 1.4;
    }

    .slide-content p {
      font-size: 15px;
    }

    .slide-content a {
      padding: 10px 24px;
    }
    }


/* buttons */



.shine-button {
  position: relative;
  padding: 0.7rem 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  /* min-width: 200px; */
}

.shine-button::before {
  content: '';
  position: absolute;
  height: 250%;
  width: 40px;
  top: 0;
  /* left: -60px; */
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg) translateY(-35%);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    left: -80px;
  }
  40% {
    left: calc(100% + 20px);
  }
  100% {
    left: calc(100% + 20px);
  }
}


.button-deep {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(30, 58, 138, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-deep:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(30, 58, 138, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shine-button:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}


/* values */
    .tilt-card {
      background: rgba(69, 146, 233, 0.5);
      position: relative;
      border-radius: 1rem;
      /* overflow-: hidden; */
      transition: transform 0.2s ease, box-shadow 0.4s ease;
      will-change: transform;
    }

    .tilt-card::before,
    .tilt-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: -1;
      
    }

    .tilt-card::after {
      filter: blur(25px);
      opacity: 0.6;
    }

    .tilt-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    .card-content {
      position: relative;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
      border-radius: 1rem;
      /* border: 1px solid rgba(255, 255, 255, 0.3); */
      height: 100%;
      padding: 1.5rem;
      z-index: 9999;
    }


/* clients */

.clients-section {
  width: 100%;
  /* margin: 70px auto; */
  text-align: center;
  /* padding: 20px; */
}


.clients-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 10px;
}

.slider {
  position: relative;
  overflow: hidden;
  height: 160px;
  border-radius: 10px;
  background: rgba(192, 15, 15, 0.08);
  backdrop-filter: blur(8px);
  background: linear-gradient(to right, #4cb7ff, #302F79);
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.slide-track {
  display: flex;
  width: calc(200px * 18);
  animation: scroll 25s linear infinite;
}

.slide {
  width: 200px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  position: relative;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #4cb7ff20, #302F7920);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide:hover::before {
  opacity: 1;
}

.slide img {
  width: auto;
  height: 120px;
  filter: brightness(0.95);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.slide:hover img {
  transform: scale(1.1) rotateZ(1deg);
  opacity: 1;
  filter: brightness(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 9)); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-track {
    animation-duration: 35s;
  }
  .slide {
    width: 150px;
  }
  .slide img {
    height: 90px;
  }
}

@media (max-width: 480px) {
  .clients-heading {
    font-size: 1.5rem;
  }
  .slide-track {
    animation-duration: 45s;
  }
  .slide {
    width: 120px;
  }
  .slide img {
    height: 70px;
  }
}

    