 :root {
      --primary:    #0a6e6e;
      --primary-lt: #0d8f8f;
      --accent:     #f0a500;
      --accent-lt:  #ffc53d;
      --surface:    #f4faf9;
      --surface2:   #e8f5f4;
      --dark:       #0d2b2b;
      --mid:        #1a4444;
      --text:       #1e3a3a;
      --muted:      #5a7a7a;
      --white:      #ffffff;
      --card-bg:    #ffffff;
      --radius:     16px;
      --radius-sm:  10px;
      --shadow:     0 8px 32px rgba(10,110,110,.12);
      --shadow-md:  0 16px 48px rgba(10,110,110,.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .brand-font { font-family: 'Inter', sans-serif; }

    /* ─── NAVBAR ─── */
    .navbar {
      background: white;
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(10,110,110,.1);
      padding: 14px 0;
      transition: box-shadow .3s;
      z-index: 1000;
    }
    .navbar.scrolled { box-shadow: 0 4px 24px rgba(10,110,110,.12); }
    .navbar-brand {
      font-family: 'Syne', sans-serif !important;
      font-weight: 800;
      font-size: 1.9rem;
      color: var(--primary) !important;
      letter-spacing: 1px;
    }
    .navbar-brand span { color: var(--accent); }
    .nav-link {
      font-weight: 500;
      color: var(--text) !important;
      margin: 0 6px;
      transition: color .2s;
    }
    .nav-link:hover { color: var(--primary) !important; }
    .nav-link {
      position: relative;
      transition: color .3s ease;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 2.5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 4px;
      transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
      opacity: 0;
    }
    .nav-link:hover::after {
      transform: translateX(-50%) scaleX(0.6);
      opacity: 0.5;
    }
    .nav-link.active-link {
      color: var(--primary) !important;
      font-weight: 600;
    }
    .nav-link.active-link::after {
      transform: translateX(-50%) scaleX(1);
      opacity: 1;
    }
    .btn-nav {
      background: var(--primary);
      color: var(--white) !important;
      border-radius: 50px;
      padding: 8px 22px;
      font-weight: 600;
      transition: background .2s, transform .2s;
    }
    .btn-nav:hover { background: var(--primary-lt); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--mid) 5%, #0d6b6b 50%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('../img/herobg.webp') center/cover no-repeat;
      opacity: .08;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .35;
    }
    .hero-orb-1 { width: 500px; height: 500px; background: var(--primary-lt); top: -120px; right: -100px; }
    .hero-orb-2 { width: 350px; height: 350px; background: var(--accent); bottom: -80px; left: -60px; opacity: .2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,165,0,.15);
      border: 1px solid rgba(240,165,0,.4);
      color: var(--accent-lt);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .5px;
      margin-bottom: 22px;
      animation: fadeInDown .8s ease both;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      color: var(--white);
      line-height: 1.12;
      font-weight: 800;
      animation: fadeInUp .9s .2s ease both;
    }
    .hero h1 span { color: var(--accent); }
    .hero-sub {
      color: rgba(255,255,255,.72);
      font-size: 1.1rem;
      max-width: 520px;
      line-height: 1.7;
      margin: 20px 0 36px;
      animation: fadeInUp .9s .35s ease both;
    }
    .hero-cta { animation: fadeInUp .9s .5s ease both; }
    .btn-primary-custom {
      background: var(--accent);
      color: var(--dark);
      font-weight: 700;
      padding: 14px 34px;
      border-radius: 50px;
      font-size: 1rem;
      border: none;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 6px 24px rgba(240,165,0,.35);
    }
    .btn-primary-custom:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(240,165,0,.45); color: var(--dark); }
    .btn-outline-custom {
      border: 2px solid rgba(255,255,255,.35);
      color: var(--white);
      font-weight: 600;
      padding: 13px 30px;
      border-radius: 50px;
      font-size: 1rem;
      background: transparent;
      transition: all .2s;
    }
    .btn-outline-custom:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }
    .hero-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 50px;
      animation: fadeInUp .9s .65s ease both;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--accent); }
    .hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
   /* HERO IMAGE WRAPPER */
.hero-img-wrap {
  position: relative;
  animation: fadeInRight 1s .4s ease both;
}

/* IMAGE CONTAINER */
.hero-image {
  overflow: hidden;
  border-radius: 24px;
}

/* HERO IMAGE */
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.1);

  /* Auto Zoom */
  animation: zoomIn 6s ease-in-out infinite alternate;
}

/* IMAGE ZOOM */
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

/* FLOATING CARDS */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: .85rem;
  font-weight: 600;
  color: #222;

  z-index: 5;
}

/* ICON */
.hero-float-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(240,165,0,.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f0a500;
}

/* CARD POSITIONS */
.hero-float-card-1 {
  bottom: -20px;
  left: -30px;
  animation: floatY 4s ease-in-out infinite;
}

.hero-float-card-2 {
  top: 30px;
  right: -20px;
  animation: floatY 4s 2s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
    /* ─── SECTION COMMONS ─── */
    section { padding: 90px 0; }
    .section-tag {
      display: inline-block;
      background: rgba(10,110,110,.1);
      color: var(--primary);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
    }
    .section-title span { color: var(--primary); }
    .section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
    .divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 4px; margin: 18px 0 24px; }

    /* ─── TRUST BAR ─── */
    .trust-bar { background: var(--surface); padding: 28px 0; border-top: 1px solid rgba(10,110,110,.08); border-bottom: 1px solid rgba(10,110,110,.08); }
    .trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .88rem; font-weight: 500; }
    .trust-item i { color: var(--primary); font-size: 1rem; }

    /* ─── WHY CHOOSE ─── */
    .why-section { background: var(--white); }
    .why-card {
      background: var(--card-bg);
      border: 1px solid rgba(10,110,110,.08);
      border-radius: var(--radius);
      padding: 36px 28px;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      height: 100%;
      text-align: center;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
    .why-icon {
      width: 68px; height: 68px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 22px;
      font-size: 1.7rem;
    }
    .why-icon-1 { background: rgba(10,110,110,.1); color: var(--primary); }
    .why-icon-2 { background: rgba(240,165,0,.12); color: var(--accent); }
    .why-icon-3 { background: rgba(13,143,143,.1); color: var(--primary-lt); }
    .why-icon-4 { background: rgba(240,165,0,.12); color: var(--accent); }
    .why-icon-5 { background: rgba(10,110,110,.1); color: var(--primary); }
    .why-icon-6 { background: rgba(13,143,143,.1); color: var(--primary-lt); }
    .why-card h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .why-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

    /* ─── PROCESS TIMELINE ─── */
    .process-section { background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%); }
    .timeline { position: relative; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      top: 0; bottom: 0;
      background: linear-gradient(180deg, var(--primary), var(--accent));
      border-radius: 3px;
    }
    .timeline-item { position: relative; margin-bottom: 50px; }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--primary);
      border: 4px solid var(--white);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 1rem;
      z-index: 2;
      box-shadow: 0 4px 16px rgba(10,110,110,.3);
    }
    .timeline-content {
      background: var(--white);
      border-radius: var(--radius);
      padding: 26px 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(10,110,110,.06);
      max-width: 380px;
    }
    .timeline-content h5 { font-weight: 700; margin-bottom: 8px; color: var(--dark); }
    .timeline-content p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
    .timeline-step { font-size: .75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

    /* ─── ROLES SECTION ─── */
    .roles-section { background: var(--white); }
    .role-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid rgba(10,110,110,.12);
      border-radius: 50px;
      padding: 10px 20px;
      font-weight: 600;
      font-size: .92rem;
      color: var(--text);
      transition: all .2s;
      cursor: default;
    }
    .role-pill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: scale(1.04); }
    .role-pill i { color: var(--primary); transition: color .2s; }
    .role-pill:hover i { color: var(--accent); }
    .roles-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

    /* ─── VISA SECTION ─── */
    .visa-section { background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%); }
    .visa-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 30px 22px;
      text-align: center;
      transition: all .3s;
      height: 100%;
    }
    .visa-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); border-color: var(--accent); }
    .visa-card .visa-icon { font-size: 2rem; color: var(--accent); margin-bottom: 14px; }
    .visa-card h5 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .visa-card p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.5; }

    /* ─── TESTIMONIALS / CAROUSEL ─── */
    .testimonials-section { background: var(--surface); }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 30px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(10,110,110,.06);
      height: 100%;
    }
    .stars { color: var(--accent); margin-bottom: 16px; }
    .testimonial-card p { color: var(--text); font-size: .97rem; line-height: 1.75; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
    .author-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-lt));
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-weight: 700; font-size: 1.1rem;
      font-family: 'Syne', sans-serif;
      flex-shrink: 0;
    }
    .author-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
    .author-role { font-size: .82rem; color: var(--muted); }

    /* ─── SWIPER CENTER ─── */
    .swiper-testimonial .swiper-slide { display: flex; height: auto; }
    .swiper-pagination-bullet { background: var(--primary); }
    .swiper-pagination-bullet-active { background: var(--accent); }

    /* ─── STATS SECTION ─── */
    .stats-section { background: var(--primary); padding: 70px 0; }
    .stat-box { text-align: center; padding: 20px; }
    .stat-box .num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: var(--white); }
    .stat-box .plus { color: var(--accent); }
    .stat-box .lbl { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
    .stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 70px; align-self: center; }

    /* ─── PHOTO CAROUSEL ─── */
    .photo-section { background: var(--white); padding: 60px 0; }

    /* ─── ENGAGEMENT SECTION ─── */
    .engage-section { background: var(--surface); }
    .engage-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary);
      transition: transform .3s;
    }
    .engage-card:hover { transform: translateY(-4px); }
    .engage-card i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }

    /* ─── CTA SECTION ─── */
    .cta-section {
      background: linear-gradient(135deg, var(--dark) 0%, #063a3a 60%, #0a5a5a 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240,165,0,.12), transparent 70%);
      top: -200px; right: -100px;
    }
    .cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 800; }
    .cta-section p { color: rgba(255,255,255,.7); font-size: 1.1rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.7);
      padding: 60px 0 30px;
    }
    .footer-brand { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); }
    .footer-brand span { color: var(--accent); }
    .footer-desc { font-size: .9rem; line-height: 1.7; margin: 14px 0 24px; max-width: 280px; }
    .footer-link { color: rgba(255,255,255,.6); text-decoration: none; display: block; margin-bottom: 10px; font-size: .9rem; transition: color .2s; }
    .footer-link:hover { color: var(--accent); }
    .footer-heading { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 18px; }
    .social-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,.08);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.7);
      font-size: .9rem;
      transition: all .2s;
      text-decoration: none;
      margin-right: 8px;
    }
    .social-btn:hover { background: var(--primary); color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 24px; font-size: .85rem; }

    /* ─── SCROLL TO TOP ─── */
    #scrollTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 46px; height: 46px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 50%;
      font-size: 1rem;
      display: none;
      align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(10,110,110,.35);
      z-index: 999;
      transition: background .2s, transform .2s;
    }
    #scrollTop:hover { background: var(--primary-lt); transform: translateY(-3px); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
    @keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
    @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 991px) {

  /* Remove line */
  .timeline::before {
    display: none;
  }

  .timeline {
    padding-left: 0;
  }

  /* Stack cards */
  .timeline-item {
    display: block;
    margin-bottom: 20px;
  }

  /* ❌ Remove side icon */
  .timeline-dot {
    display: none;
  }

  /* ❌ Remove top icons inside cards */
  .timeline-content h5 i {
    display: none;
  }

  /* Clean full-width card */
  .timeline-content {
    margin: 0;
    padding: 18px;
    max-width: 100%;
  }

  /* Remove bootstrap structure issues */
  .timeline-item.row {
    display: block;
  }

  .timeline-item .col-md-2,
  .timeline-item .col-md-5 {
    width: 100%;
    padding: 0;
  }

  /* Remove images */
  .timeline-item img {
    display: none;
  }
}
    @media (max-width: 767px) {
      section { padding: 64px 0; }
      .stat-divider { display: none; }
    }
@media (max-width: 991px) {
  .hero .col-lg-6:first-child { text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
}