
.testimonial-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Inter', sans-serif;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 20px;
    margin: 10px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

  .client-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b6b;
  }
  .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .client-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }

  .city {
    font-size: 14px;
    color: #888;
    text-align: center;
  }

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 24px; 
  
  color: #6495ED;
  pointer-events: none; /* click handled by Swiper */
  transition: transform 0.3s ease;
  background-color: #E6E6FF;
  padding: 5px 10px;
  border-radius: 100%;
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
  transform: scale(1.2);
  background-color: #B8B8FF;
  color: #1434A4;
}

  @media (max-width: 768px) {
    .testimonial-section {
      padding: 50px 15px;
    }
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
  content: none; /* removes default arrows */
}



/* carousel */


.carousel-item {
  width: 100%;
  height: 110vh; /* full viewport height */
}

.carousel-item > .ban {
  width: 100%;
  height: 99%; /* slightly taller to avoid gaps */
  object-fit: cover; /* fills entire container without gaps */
  display: block;
}


/* ===============================
   Mobile-specific Styles
================================= */
@media (max-width: 640px) {
  .carousel-item {
    height: auto; /* allow height to adjust */
  }

  .carousel-item > .ban {
    width: 100%;
    height: auto;           /* keep natural ratio */
    object-fit: contain;    /* show the entire image on mobile */
  }

  /* Move the dots upward for better visibility */
  .carousel-indicators {
    bottom: 10px !important; /* closer to bottom inside image */
  }
}









/* Smooth fade effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

/* Dots inside the banner */
.carousel-indicators {
  position: absolute;
  bottom: 30px; /* inside the image */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin: 0;
  padding: 0;
}
.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.7);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.3);
  background-color: #FF8904; /* active dot color */
}

/* Navbar font */
.navbar {
  font-family: 'Inter', sans-serif;
}

/* Caption styling */
.carousel-caption {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 600px;
}

.carousel-caption h1 {
  font-size: 4.0rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.carousel-caption p {
  font-size: 1.25rem;
  color: #f8f9fa;
}


  /* 🔥 Custom left-to-right animation */
  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .slide-right {
    animation: slideRight 1s ease forwards;
  }

  .slide-right.delay {
    animation-delay: 0.5s;
  }

.watermark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100px;
  opacity: 0.8;
  pointer-events: none;
}

/* 📱 Mobile responsive */
@media (max-width: 640px) {
  .watermark {
    width: 60px;     /* smaller logo on phones */
    top: 8px;
    right: 8px;
    opacity: 0.8;    /* slightly more visible on small screens */
  }
}
