/* ================================================
   INDEX PAGE SPECIFIC STYLES
   ================================================ */

/* ================================================
   HERO / BANNER SECTION
   ================================================ */

.hero {
  height: 100vh;
  position: relative;
}

/* Dark gradient overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(10, 22, 40, 0.2) 50%,
    rgba(10, 22, 40, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  z-index: 2;
  bottom: 35%;
  text-align: center;
  animation: fadeUp 1s ease;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 20px;
  margin-top: 12px;
  color: #e0e8f0;
  font-weight: 300;
}

.hero-content .btn {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, #f0a500, #ffc947);
  border: none;
  color: #0a1628;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.hero-content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(240, 165, 0, 0.4);
  background: linear-gradient(135deg, #ffc947, #f0a500);
}

/* Ken Burns for Carousel */
.carousel-item.active img {
  animation: kenBurnsHome 20s infinite alternate linear;
}

@keyframes kenBurnsHome {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(10, 22, 40, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-size: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 180, 216, 0.7);
}

/* Carousel Indicators */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #00b4d8;
  border-color: #ffffff;
  transform: scale(1.2);
}

.carousel-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* Responsive Hero */
@media (max-width: 991px) {
  .carousel-item img { height: 70vh; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
  .hero-content { bottom: 30%; }
}

@media (max-width: 576px) {
  .carousel-item img { height: 50vh; }
  .hero-content h1 { font-size: 22px; }
  .hero-content p { font-size: 14px; }
  .hero-content { bottom: 25%; }
}

/* ================================================
   CONCISE CONTENT SECTION
   ================================================ */
.content-section {
    min-height: 80vh;
    padding: 5vh 2.5rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface), var(--surface-alt));
}



/* Description */
.content-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}
/* Animation */
.content-text {
    animation: fadeLeft 1s ease forwards;
    font-size: 1.2em; /* 20% larger base */
}
.content-image {
    animation: fadeRight 1s ease forwards;
}

.content-text .btn-teal {
    padding: 16px 40px;
    font-size: 1.1rem;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {

    .content-desc {
        text-align: center;
        margin: 0 auto;
    }

    .content-text {
        margin-bottom: 30px;
        text-align: center;
    }
}

.counts {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.counts .stats-item {
  padding: 40px 30px;
  width: 100%;
  text-align: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf3 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 180, 216, 0.1);
  position: relative;
  overflow: hidden;
}

.counts .stats-item::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(240, 165, 0, 0.05));
  transition: top 0.4s ease;
  z-index: 1;
}

.counts .stats-item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
}

.counts .stats-item:hover::before {
  top: 0;
}

.counts .stats-item span {
  font-size: 52px;
  display: block;
  color: #00b4d8;
  font-weight: 800;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.counts .stats-item:hover span {
  color: #f0a500;
  transform: scale(1.1);
}

.counts .stats-item p {
  color: #1e3a5f;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .counts {
    padding: 40px 0;
  }

  .counts .stats-item {
    padding: 30px 20px;
  }

  .counts .stats-item span {
    font-size: 40px;
  }

  .counts .stats-item p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* ===== TESTIMONIAL WRAPPER ===== */
.testimonials .testimonial-wrap {
  padding-left: 40px;
}

/* ===== SLIDER FIX ===== */
.testimonials .swiper {
  overflow: hidden;
}

/* ===== CARD ===== */
.testimonials .testimonial-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 180, 216, 0.1);
  padding: 30px 25px 25px 70px;
  margin: 25px 12px;
  min-height: 220px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* ===== HOVER EFFECT ===== */
.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

/* ===== IMAGE (MODERN CIRCLE 🔥) ===== */
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* 🔥 circular */
  border: 3px solid #00b4d8;
  position: absolute;
  left: -45px;
  object-fit: cover;
  background: #fff;
}

/* ===== NAME ===== */
.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 3px;
  color: #1e3a5f;
}

/* ===== ROLE ===== */
.testimonials .testimonial-item h4 {
  color: #8b9bb4;
  font-size: 13px;
  margin: 0;
}

/* ===== STARS ===== */
.testimonials .testimonial-item .stars {
  margin: 10px 0;
  display: flex;
  gap: 3px;
}

/* ===== TEXT ===== */
.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-top: 5px;
}

/* ===== QUOTE ICON ===== */
.testimonials .quote-icon {
  color: #00b4d8;
  font-size: 14px;
  margin: 0 4px;
}

/* ===== PAGINATION ===== */
.testimonials .swiper-pagination {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* ===== BULLETS ===== */
.testimonials .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0d0d0;
  border: 1px solid #00b4d8;
  opacity: 1;
  border-radius: 50%;
  transition: 0.3s;
}

.testimonials .swiper-pagination-bullet:hover {
  background: #00b4d8;
  transform: scale(1.2);
}

.testimonials .swiper-pagination-bullet-active {
  background: #00b4d8;
  width: 12px;
  height: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {

  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 25px;
    padding-top: 70px;
    text-align: center;
  }

  .testimonials .testimonial-item .testimonial-img {
    left: 50%;
    transform: translateX(-50%);
    top: -45px;
  }

}
/* ================================================
   ASK US / CONTACT SECTION
   ================================================ */


