/* RESET */
:root {
  --bs-font-sans-serif: 'Poppins', sans-serif;
  --bs-body-font-family: 'Poppins', sans-serif;
}

body, html, h1, h2, h3, h4, h5, h6, p, a, span, button, input, textarea, select, li {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

body, html {
  overflow-x: hidden;
}


/* ==== floting button===== */
/* STACK POSITION */
.floating-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* BUTTON BASE */
.Btn {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON CONTAINER */
.whatsapp-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #00a618;
  font-size: 20px;
  transition: 0.3s;
}

.call-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #213c72;
  font-size: 20px;
  transition: 0.3s;
}




/* BACKGROUND */
.BG {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: -1;
  transition: 0.4s;
}

/* WHATSAPP COLOR */
.Btn.whatsapp .BG {
  background: #25D366;
}

/* CALL COLOR */
.Btn.call .BG {
  background: #213C72;
}

/* HOVER EFFECT */
.Btn:hover .BG {
  transform: rotate(35deg) scale(1.2);
}

.Btn:hover .svgContainer {
  background: rgba(255, 255, 255, 0.2);
}

/* FLOAT ANIMATION */
.floating-stack {
  animation: floatUp 2s infinite ease-in-out;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* TOOLTIP */
.floating-stack a {
  position: relative;
}

.floating-stack a::after {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #213C72;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}

/* TEXT */
.floating-stack a:first-child::after {
  content: "Chat on WhatsApp";
}

.floating-stack a:last-child::after {
  content: "Call Now";
}

/* SHOW TOOLTIP */
.floating-stack a:hover::after {
  opacity: 1;
}



/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ICON */
.custom-toggler i {
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

/* SCROLL COLOR CHANGE (FIXED) */
.navbar.scrolled .custom-toggler i {
  color: #213C72 !important;
}

/* ===== NAVBAR GLASS ===== */
.glass-nav {
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

/* ===== NAV BUTTON ===== */
.nav-btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #213C72, #4facfe);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 24px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(79, 172, 254, 0.4);
}

/* SHINE */
.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.nav-btn:hover::before {
  left: 130%;
}

/* ===== NAV LINKS ===== */
.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: white;
  text-decoration: none;
}

/* UNDERLINE */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* REMOVE BLACK BOX ISSUE */
.nav-link,
.nav-link:focus,
.nav-link:active,
.nav-link.show {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.navbar-nav .nav-item {
  background: transparent !important;
}

/* ===== DROPDOWN ===== */
.custom-dropdown {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0;

  transform-origin: top;
  transform: rotateX(-90deg);
  opacity: 0;
  transition: all 0.4s ease;
  display: block;
  pointer-events: none;
}

/* DESKTOP ONLY */
@media (min-width: 992px) {
  .dropdown:hover .custom-dropdown {
    transform: rotateX(0deg);
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* ITEMS */
.dropdown-item {
  color: white;
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 25px;
}

.highlight-item {
  color: #4facfe;
}

/* ICON */
.dropdown-icon {
  font-size: 12px;
  transition: 0.3s;
}

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

  /* NAV DROPDOWN FULL WIDTH */
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    text-align: center;
  }

  .nav-link {
    font-weight: 400;
    color: #213C72 !important;
    justify-content: center;
    display: flex;
    padding: 12px 0;
  }

  .nav-btn {
    margin-top: 10px;
    width: 100%;
  }

  /* DROPDOWN SLIDE */
  .custom-dropdown {
    display: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.9);

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .dropdown.open .custom-dropdown {
    max-height: 300px;
  }

  .dropdown.open .dropdown-icon {
    transform: rotate(180deg);
  }
}

/* ===== SCROLL STATE ===== */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled .nav-link {
  color: #213c72 !important;
}

/* LOGO SWITCH */
.logo-dark {
  display: none;
}

.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: block;
}


/* HERO */
.hero {
  position: relative;
  height: 120vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
.overlay {
  backdrop-filter: blur(8px);
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
  z-index: -1;
}

/* CONTENT */
.hero-content {
  z-index: 2;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* TITLE */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title span {
  background: linear-gradient(90deg, #213C72, #88b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.hero-subtitle {
  max-width: 1280px;
  margin: 20px auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* COMMON BUTTON BASE */
.hero-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

/* PRIMARY CTA */
.btn-cta {
  background: linear-gradient(135deg, #213C72, #4facfe);
  padding: 14px 32px;
  font-weight: 300;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
}

/* HOVER - FLOAT + GLOW */
.btn-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(79, 172, 254, 0.4);
}

/* CLICK EFFECT */
.btn-cta:active {
  transform: scale(0.95);
}

/* SHINE EFFECT */
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #ffffff66, transparent);
  transition: 0.6s;
}

.btn-cta:hover::before {
  left: 100%;
}


/* GLASS BUTTON BASE */
.btn-glass {
  font-weight: 300;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



/* RIPPLE EFFECT */
.hero-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: width 0.4s, height 0.4s, opacity 0.6s;
}

.hero-btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}


/* STATS */
/* WRAPPER CENTER */
.stats-wrapper {
  display: flex;
  justify-content: center;
}

/* 🧊 LIQUID GLASS CONTAINER */
.stats-glass {
  height: 130px;
  max-width: 660px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.35);

  position: relative;
  overflow: hidden;
}

/* ✨ LIQUID SHINE FLOW */
.stats-glass::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  top: -50%;
  left: -50%;
  animation: liquidMove 8s linear infinite;
}

@keyframes liquidMove {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* STAT ITEM (NO BOX) */
.stat-item {
  padding: 20px 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* 🎰 VENDING MACHINE EFFECT */
.stat-item:hover {
  transform: translateY(-10px) scale(1.08);
}

/* CLICK PRESS */
.stat-item:active {
  transform: scale(0.92);
}

/* NUMBER STYLE */
.stat-item h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;

  /* Gradient text */
  background: linear-gradient(135deg, #ffffff, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.stat-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* HIGHLIGHT */
.stat-item.highlight h2 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ENTRY ANIMATION (VENDING POP) */
.stat-item {
  animation: popUp 0.6s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes popUp {
  from {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .stat-item h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: 130vh;
  }

  .hero-content {
    margin-top: 40px;
  }
}



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


  .form-card {
    padding: 16px !important;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .stat-card {
    padding: 15px;
  }

  .navbar-collapse {
    border: 1px solid gray;
    backdrop-filter: blur(4px);
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
  }
}




/* ======== Benifite Section here ========= */
.benefit-card {
  background: transparent;
  height: 320px;
  width: 100%;
  margin-bottom: 20px;
}

.benefit-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover .card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(33, 60, 114, 0.15);
}

.benefit-card .card-front,
.benefit-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FRONT CARD STYLING */
.benefit-card .card-front {
  z-index: 2;
  top: 0;
}

.benefit-card:hover .card-front {
  transform: translateY(-20px);
  opacity: 0;
}

.benefit-card .card-front .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #213C72, #4facfe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.benefit-card .card-front .icon i {
  font-size: 32px;
  color: #fff;
}

.benefit-card .card-front h3 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(33, 60, 114, 0.1);
}

.benefit-card .card-front h5 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.benefit-card .card-front p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4facfe;
  margin: 0;
}

.benefit-card .card-front .arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(79, 172, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4facfe;
  transition: all 0.3s ease;
}

/* BACK CARD STYLING */
.benefit-card .card-back {
  background: #fff;
  color: #213C72;
  top: 100%;
  z-index: 3;
  opacity: 0;
}

.benefit-card:hover .card-back {
  top: 0;
  opacity: 1;
}

.benefit-card .card-back h5 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #213C72;
  transform: translateY(20px);
  transition: transform 0.5s 0.1s ease;
}

.benefit-card .card-back p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  transform: translateY(20px);
  transition: transform 0.5s 0.2s ease;
}

.benefit-card:hover .card-back h5,
.benefit-card:hover .card-back p {
  transform: translateY(0);
}



/* ==== Courses section ====== */
/* REMOVE SLIDER EFFECT */
.courses-slider {
  display: none;
}

/* NEW WRAPPER (CENTER ALIGN) */
.courses-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.course-card {
  width: 300px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* HOVER */
.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.img-box {
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}

.course-card:hover img {
  transform: scale(1.1);
}

/* BADGES */
.course-meta {
  display: flex;
  gap: 10px;
  padding: 12px 15px 0;
}

.course-meta .badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #333;
  font-weight: 500;
}

/* BUTTON */
.glass-btn {
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: none;
  color: #213C72;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.glass-btn:hover {
  background: rgba(33, 60, 114, 0.1);
}

/* RIPPLE */
.glass-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(33, 60, 114, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.glass-btn:active::after {
  width: 250px;
  height: 250px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .courses-wrapper {
    justify-content: center;
  }

  .course-card {
    width: 100%;
    max-width: 320px;
  }
}



/*======= review  section ===== */
/* CARD */
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* PROFILE AVATAR — INITIAL LETTER */
.review-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #213C72, #4facfe);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  user-select: none;
  box-shadow: 0 4px 15px rgba(33, 60, 114, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover .review-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Alternate gradient colors for visual variety */
.review-card:nth-child(2) .review-avatar {
  background: linear-gradient(135deg, #6366f1, #a78bfa);
}

.review-card:nth-child(3) .review-avatar {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.review-card:nth-child(4) .review-avatar {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* STARS */
.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

/* GLASS LIGHT EFFECT */
.review-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s;
}

.review-card:hover::before {
  opacity: 1;
  left: 100%;
}

/* TEXT */
.review-card p {
  font-size: 14px;
  color: #555;
}



/* ====== FAQ Section ======= */
/* ===== TABS (Glass + Premium) ===== */
.faq-tabs .nav-link {
  border-radius: 30px;
  padding: 10px 22px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Hover */
.faq-tabs .nav-link:hover {
  transform: translateY(-2px);
  background: rgba(33, 60, 114, 0.1);
}

/* Active */
.faq-tabs .nav-link.active {
  background: linear-gradient(135deg, #213C72, #3b5aa3) !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(33, 60, 114, 0.3);
}

/* ===== FAQ BOX ===== */
.faq-box {
  max-width: 820px;
  margin: auto;
}

/* ===== ITEM (Card Style) ===== */
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

/* Hover Effect */
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Glass Shine Effect */
.faq-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.6s;
}

.faq-item:hover::before {
  opacity: 1;
  left: 100%;
}

/* ===== QUESTION ===== */
.faq-question {
  font-weight: 600;
  position: relative;
  color: #213C72;
  padding-right: 30px;
  transition: 0.3s;
}

/* ICON (animated) */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: 0.3s;
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  opacity: 0;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active {
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.05), rgba(33, 60, 114, 0.02));
  border: 1px solid rgba(33, 60, 114, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  margin-top: 10px;
  opacity: 1;
}

.faq-item.active .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

/* ===== SMOOTH MICRO INTERACTIONS ===== */
.faq-item,
.faq-tabs .nav-link {
  transition: all 0.3s ease;
}



/* ==== form ==== */
/* SECTION */
.enquiry-section {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* CARD */
.form-card {
  width: 100%;
  max-width: 560px;
  padding: 30px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* FORM GROUP */
.form-group {
  margin-bottom: 8px;
}

/* LABEL */
.form-group label {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

/* INPUT */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  transition: 0.2s;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* BUTTON */
/* BUTTON BASE */
.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #213C72, #4facfe);
  color: #fff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

/* 💥 CLICK (PRESS EFFECT) */
.submit-btn:active {
  transform: scale(0.95);
}

/* ✨ SHINE EFFECT */
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}

/* SHINE ON HOVER */
.submit-btn:hover::before {
  left: 130%;
}

/* 🌊 RIPPLE EFFECT */
.submit-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

/* CLICK RIPPLE */
.submit-btn:active::after {
  width: 250px;
  height: 250px;
}

/* MODAL FIX */
.modal-content {
  border-radius: 16px;
  border: none;
}


/* REMOVE DEFAULT SELECT ARROW */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

/* IE FIX */
.form-group select::-ms-expand {
  display: none;
}


/* REMOVE DEFAULT ARROW */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
}

/* IE FIX */
.form-group select::-ms-expand {
  display: none;
}

/* CUSTOM ICON */
.select-group {
  position: relative;
}

.select-icon {
  position: absolute;
  right: 12px;
  top: 70%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #777;
}


/* ==== Footer Section ====== */
/* SECTION */
.footer-section {
  background: #213c72;
  color: #e2e8f0;
}

/* LOGO */
.footer-logo {
  font-weight: 700;
  color: #fff;
}

/* TITLE */
.footer-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

/* TEXT */
.footer-text {
  font-size: 14px;
  color: #94a3b8;
}

/* CONTACT */
.footer-contact {
  font-size: 14px;
  margin-bottom: 6px;
  color: #cbd5f5;
}

.footer-contact a {
  text-decoration: none;
  color: #94a3b8;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* SOCIAL */
.social-icons a {
  color: #94a3b8;
  font-size: 18px;
  margin-right: 10px;
  transition: 0.2s;
}

.social-icons a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom a {
  text-decoration: none;
  color: #94a3b8;
}