/* =============================================
   RESET & GLOBAL
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #f8fafc;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-offer-bar {
  background: linear-gradient(90deg, #0B1F3A, #1E3A8A);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-text {
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-text {
  color: #F59E0B;
  font-weight: 600;
  position: relative;
  display: inline-block;
  animation: pulseGlow 1.8s infinite;
}

.contact-text a {
  color: #F59E0B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-text a:hover {
  color: #ffb83b;
  text-decoration: underline;
}

@keyframes pulseGlow {
  0%   { transform: scale(1);    text-shadow: 0 0 0px  rgba(245,158,11,0.4); }
  50%  { transform: scale(1.08); text-shadow: 0 0 8px  rgba(245,158,11,0.8); }
  100% { transform: scale(1);    text-shadow: 0 0 0px  rgba(245,158,11,0.4); }
}

/* =============================================
   HEADER
   ============================================= */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transition: all 0.2s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* DESKTOP NAV */
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #0B1F3A;
  font-weight: 500;
  position: relative;
  transition: 0.25s;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  width: 0%;
  height: 2.5px;
  background: #F59E0B;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover        { color: #F59E0B; }

.nav-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-login {
  border: 1.5px solid #0B1F3A;
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  color: #0B1F3A;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-login:hover {
  background: #0B1F3A;
  color: #fff;
  transform: translateY(-1px);
}

.btn-enroll {
  background: #F59E0B;
  color: #fff;
  padding: 8px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(245,158,11,0.2);
}

.btn-enroll:hover {
  background: #e68a00;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(245,158,11,0.3);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  color: #0B1F3A;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.menu-toggle:hover { background-color: rgba(0,0,0,0.06); }

/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.nav-item { position: relative; }

/* DROPDOWN ARROW */
.arrow {
  display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-right: 2px solid #0B1F3A;
  border-bottom: 2px solid #0B1F3A;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.25s;
  position: relative;
  top: -1px;
}

/* MEGA MENU — DESKTOP */
.mega-menu {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: 850px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mega-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mega-content h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #0B1F3A;
}

.mega-content a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  transition: 0.25s;
  font-size: 0.9rem;
}

.mega-content a:hover {
  color: #F59E0B;
  padding-left: 6px;
}

/* MOBILE BUTTONS — hidden on desktop */
.mobile-drawer-buttons {
  display: none;
  border-bottom: none !important;
}

/* =============================================
   DESKTOP CLICK-TO-OPEN (min 993px)
   ============================================= */
@media (min-width: 993px) {
  .dropdown.active .arrow { transform: rotate(225deg); border-color: #F59E0B; }
  .dropdown.active > a    { color: #F59E0B; }

  .dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* =============================================
   MOBILE NAV (max 992px)
   ============================================= */
@media (max-width: 992px) {

  .menu-toggle { display: flex; }
  .nav-actions  { display: none; }

  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 80px;
    transition: left 0.4s ease;
  }

  .nav-menu.active { left: 0; }

  body.menu-open { overflow: hidden; }

  .nav-item { width: 100%; border-bottom: 1px solid #eee; }

  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    color: #0B1F3A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
  }

  .nav-menu a::after { display: none; }
  .nav-menu a:hover  { color: #F59E0B; }

  .arrow { margin-left: auto; flex-shrink: 0; }

  .dropdown.active > a .arrow {
    transform: rotate(225deg);
    border-color: #F59E0B;
  }

  .mega-menu,
  .dropdown.active .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    background: #f8fafc;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0; margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: max-height 0.4s ease;
  }

  .dropdown.active .mega-menu { max-height: 2500px !important; }

  .mega-content {
    display: flex;
    flex-direction: column;
    width: 100%; gap: 0;
  }

  .mega-content > div {
    width: 100%;
    padding: 14px 22px;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
  }

  .mega-content h4 {
    margin-bottom: 10px;
    color: #F59E0B;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .mega-content a {
    display: block;
    padding: 8px 0;
    color: #334155;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 0;
  }

  .mega-content a:hover { color: #F59E0B; padding-left: 5px; }

  .mobile-drawer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
    border-top: 1px solid #e2e8f0;
    border-bottom: none !important;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .mobile-drawer-buttons .btn-login-mobile,
  .mobile-drawer-buttons .btn-enroll-mobile {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    box-sizing: border-box;
    transition: 0.25s;
  }

  .btn-login-mobile  { border: 1.5px solid #0B1F3A; color: #0B1F3A; background: transparent; }
  .btn-login-mobile:hover  { background: #0B1F3A; color: #fff; }
  .btn-enroll-mobile { background: #F59E0B; color: #fff; border: none; }
  .btn-enroll-mobile:hover { background: #d97706; }
}

@media (max-width: 768px) {
  .topbar-flex { flex-direction: column; text-align: center; gap: 6px; }
  .offer-text, .contact-text { font-size: 12px; }
  .nav-container { height: 65px; }
  .logo img { width: clamp(70px, 28vw, 110px); max-height: 46px; }
  .nav-menu { padding-top: 75px; }
}

@media (max-width: 480px) {
  .container { width: 94%; }
  .logo img { width: clamp(64px, 25vw, 100px); max-height: 42px; }
}

/* =============================================
   TOP BANNER / CAROUSEL
   ============================================= */
.top-banner { width: 100%; overflow: hidden; }
.top-banner .carousel-item img { width: 100%; object-fit: cover; }

@media (max-width: 992px) { .top-banner .carousel-item img { height: 360px; } }
@media (max-width: 768px) { .top-banner .carousel-item img { height: 230px; } }
@media (max-width: 480px) { .top-banner .carousel-item img { height: 170px; } }

/* =============================================
   STATS BAR
   ============================================= */
.stats-section { background: #0B1F3A; padding: 40px 0; color: #fff; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 10px;
}

.stat            { padding: 10px 0; }
.stat img        { width: 65px; height: 65px; object-fit: contain; margin: 0 auto 8px; }
.stat h3         { font-size: 37px; font-weight: 800; color: #fbfbfb; margin-bottom: 4px; }
.stat p          { font-size: 15px; opacity: 0.9; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat { border-right: none !important; }
}

@media (max-width: 480px) {
  .stats-section { padding: 28px 0; }
  .stat h3       { font-size: 22px; }
  .stat img      { width: 32px; height: 32px; }
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-section { padding: 70px 0; background: #f9fafb; text-align: center; }

.cat-label { color: #F59E0B; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.cat-title { font-size: 30px; font-weight: 700; margin-bottom: 40px; color: #0B1F3A; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cat-card {
  padding: 28px 16px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.cat-icon img   { width: 36px; height: 36px; object-fit: contain; }
.cat-card h3    { font-size: 15px; margin-bottom: 10px; color: #0B1F3A; }
.cat-card a     { font-size: 13px; text-decoration: none; color: #555; transition: 0.3s; }
.cat-card a:hover { color: #F59E0B; }
.cat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(6deg); }

.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.cat-card:hover::before { border-color: #F59E0B; }

.bg1 { background: #eaf2f8; } .bg2 { background: #fdf2e9; }
.bg3 { background: #e8f8f5; } .bg4 { background: #f4ecf7; }
.bg5 { background: #fef9e7; } .bg6 { background: #ebf5fb; }
.bg7 { background: #eafaf1; } .bg8 { background: #f5eef8; }

@media (max-width: 992px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .categories-section { padding: 60px 0; } }
@media (max-width: 480px) {
  .cat-grid    { gap: 12px; }
  .cat-title   { font-size: 24px; margin-bottom: 26px; }
  .cat-card    { padding: 20px 12px; }
  .cat-icon    { width: 56px; height: 56px; }
  .cat-icon img { width: 28px; height: 28px; }
  .cat-card h3 { font-size: 13px; }
}

/* =============================================
   PLACEMENT
   ============================================= */
.placement-section { padding: 70px 0; background: #0B1F3A; color: #fff; }

.placement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.placement-left h2 { font-size: 28px; margin-bottom: 14px; line-height: 1.3; }
.placement-left p  { margin-bottom: 18px; opacity: 0.9; font-size: 15px; line-height: 1.7; }
.placement-list    { list-style: none; margin-bottom: 22px; }
.placement-list li { margin-bottom: 8px; font-size: 15px; }

.placement-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.stat-box {
  background: rgba(255,255,255,0.08);
  padding: 22px 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-box h3 { color: #F59E0B; font-size: 24px; margin-bottom: 4px; }
.stat-box p  { font-size: 13px; opacity: 0.85; }

@media (max-width: 992px) { .placement-grid { grid-template-columns: 1fr; gap: 36px; } .placement-section { padding: 60px 0; } }
@media (max-width: 480px) {
  .placement-left h2 { font-size: 22px; }
  .stat-box h3       { font-size: 20px; }
  .placement-stats   { gap: 12px; }
  .stat-box          { padding: 16px 10px; }
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { padding: 70px 0; background: #ffffff; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.about-left h2 { font-size: 30px; margin-bottom: 18px; color: #0B1F3A; line-height: 1.3; }
.about-text { color: #555; margin-bottom: 12px; line-height: 1.7; font-size: 15px; }

.about-image { position: relative; border-radius: 18px; overflow: hidden; }
.about-image img { width: 100%; height: auto; border-radius: 18px; transition: 0.4s ease; }
.about-image:hover img { transform: scale(1.04); }

.about-image::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(30,58,138,0.3));
  opacity: 0; transition: 0.4s;
}

.about-image:hover::after { opacity: 1; }

.btn-primary2 {
  display: inline-block;
  background: #F59E0B;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-primary2:hover { background: #d97706; transform: translateY(-2px); }

@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } .about-section { padding: 60px 0; } }
@media (max-width: 480px) { .about-left h2 { font-size: 24px; } }

/* =============================================
   COMMON
   ============================================= */
.section-label { color: #F59E0B; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.section-title { font-size: 30px; margin-bottom: 36px; color: #0B1F3A; font-weight: 700; line-height: 1.3; }
.section-title.white { color: #fff; }

.btn-primary { display: inline-block; background: #F59E0B; padding: 12px 28px; border-radius: 30px; color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { background: #d97706; transform: translateY(-2px); }

.btn-outline { display: inline-block; border: 1.5px solid #0B1F3A; padding: 12px 28px; border-radius: 30px; color: #0B1F3A; text-decoration: none; font-weight: 500; transition: 0.3s; }
.btn-outline:hover { background: #0B1F3A; color: #fff; }

@media (max-width: 480px) { .section-title { font-size: 24px; margin-bottom: 24px; } }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section { padding: 70px 0; background: linear-gradient(to bottom, #f9fafb, #eef2ff); text-align: center; }
.testimonial-wrapper { overflow: hidden; }
.testimonial-slider  { display: flex; transition: transform 0.5s ease; }

.testimonial-card {
  min-width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  text-align: left;
}

.testimonial-card p { font-size: 15px; color: #444; line-height: 1.7; position: relative; padding-left: 10px; }
.testimonial-card p::before { content: "\201C"; font-size: 40px; color: #F59E0B; position: absolute; left: -8px; top: -8px; }

.user { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.user img  { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.user h4   { margin: 0; font-size: 15px; color: #0B1F3A; }
.user span { font-size: 13px; color: #777; }

.testimonial-dots { margin-top: 22px; }
.testimonial-dots span { width: 10px; height: 10px; background: #ccc; border-radius: 50%; display: inline-block; margin: 0 5px; cursor: pointer; transition: background 0.3s; }
.testimonial-dots .active { background: #F59E0B; }

@media (max-width: 768px) { .testimonial-section { padding: 55px 0; } .testimonial-card { padding: 22px 18px; } .testimonial-card p { font-size: 14px; } }
@media (max-width: 480px) { .testimonial-card { padding: 18px 14px; border-radius: 14px; } .user img { width: 44px; height: 44px; } }

/* =============================================
   COMPANIES
   ============================================= */
.companies-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1F3A, #1E3A8A);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.companies-section::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(245,158,11,0.2);
  filter: blur(120px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.company-stats { display: flex; justify-content: center; gap: 20px; margin: 36px 0; flex-wrap: wrap; }

.c-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 22px 30px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  min-width: 120px;
}

.c-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.18); }
.c-stat h3    { color: #F59E0B; font-size: 22px; margin-bottom: 4px; }
.c-stat p     { font-size: 13px; opacity: 0.85; }

.logo-marquee { overflow: hidden; position: relative; margin-top: 40px; padding: 16px 0; }

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 44px; width: 110px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-track img:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 8px 20px rgba(245,158,11,0.35); }
.logo-marquee:hover .logo-track { animation-play-state: paused; }

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-track { gap: 18px; }
  .logo-track img { height: 34px; width: 88px; padding: 6px; }
  .companies-section { padding: 60px 0; }
  .company-stats { gap: 12px; }
  .c-stat { padding: 16px 20px; }
}

@media (max-width: 480px) { .c-stat { min-width: 100px; padding: 14px 16px; } .c-stat h3 { font-size: 18px; } }

/* =============================================
   TEAM SECTION
============================================= */

.team-section {
    padding: 80px 0;
    background: #f9fafb;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* =============================================
   TEAM CARD
============================================= */

.team-card {
    width: 340px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =============================================
   IMAGE
============================================= */

.team-img {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #eee;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

/* =============================================
   BADGE
============================================= */

.badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #F59E0B;
    color: #fff;
    padding: 7px 18px;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(245,158,11,0.35);
}

.badge.mentor {
    background: #0B1F3A;
}

/* =============================================
   CONTENT
============================================= */

.team-content {
    padding: 28px;
    text-align: left;
}

.team-content h3 {
    font-size: 28px;
    margin-bottom: 6px;
    color: #0B1F3A;
    font-weight: 700;
}

.role {
    font-size: 15px;
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 16px;
}

.desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* =============================================
   HOVER EFFECT
============================================= */

.team-card::before {
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(245,158,11,0.12), transparent);
    top: -60%;
    left: -60%;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 992px) {

    .team-grid {
        gap: 28px;
    }

    .team-card {
        width: 320px;
    }

    .team-img {
        height: 300px;
    }

    .team-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .team-section {
        padding: 60px 15px;
    }

    .team-card {
        width: 100%;
        max-width: 420px;
    }

    .team-img {
        height: 280px;
    }

    .team-content {
        padding: 24px;
    }

    .team-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .team-grid {
        gap: 22px;
    }

    .team-img {
        height: 250px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .team-content {
        padding: 22px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .role {
        font-size: 14px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =============================================
   DIRECTOR
   ============================================= */
.director-section { padding: 80px 0; background: linear-gradient(135deg, #0B1F3A, #1E3A8A); position: relative; overflow: hidden; }

.director-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(245,158,11,0.18);
  filter: blur(120px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.director-grid { display: flex; flex-direction: column; gap: 40px; margin-top: 50px; }

.director-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.director-card:hover   { transform: translateY(-6px); }
.director-card.reverse { flex-direction: row-reverse; }
.director-img          { flex-shrink: 0; }
.director-img img      { width: 240px; height: 240px; object-fit: cover; border-radius: 16px; }
.director-content      { color: #fff; flex: 1; }
.director-content h3   { font-size: 24px; margin: 10px 0 8px; }
.director-content p    { font-size: 14px; color: #ddd; line-height: 1.7; }

.role-badge { display: inline-block; background: #F59E0B; color: #fff; padding: 5px 14px; font-size: 12px; border-radius: 20px; font-weight: 600; }
.role-badge.alt { background: #fff; color: #0B1F3A; }

.director-content ul    { margin-top: 14px; padding-left: 0; }
.director-content ul li { list-style: none; font-size: 14px; margin-bottom: 6px; color: #e2e8f0; }

@media (max-width: 992px) {
  .director-card, .director-card.reverse { flex-direction: column; text-align: center; padding: 28px 22px; gap: 24px; }
  .director-img img { width: 180px; height: 180px; }
  .director-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .director-card       { padding: 22px 16px; border-radius: 14px; }
  .director-img img    { width: 150px; height: 150px; }
  .director-content h3 { font-size: 20px; }
  .director-grid       { gap: 24px; margin-top: 30px; }
}

/* =============================================
   CTA
   ============================================= */
.simple-cta { padding: 80px 0; background: #ffffff; }

.simple-cta-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; }

.cta-left  { flex: 1; min-width: 280px; }
.cta-right { flex: 1; min-width: 280px; text-align: center; }
.cta-label { color: #F59E0B; font-weight: 600; margin-bottom: 10px; font-size: 14px; }

.cta-left h2 { font-size: 32px; font-weight: 700; color: #0B1F3A; margin-bottom: 16px; line-height: 1.3; }
.cta-left h2 span { color: #F59E0B; }
.cta-desc { color: #555; font-size: 15px; margin-bottom: 18px; line-height: 1.7; }

.cta-features    { list-style: none; padding: 0; margin-bottom: 24px; }
.cta-features li { margin-bottom: 10px; color: #333; font-size: 15px; }
.cta-buttons     { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-right img { width: 100%; max-width: 560px; border-radius: 18px; box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

@media (max-width: 992px) {
  .simple-cta-wrapper { flex-direction: column; text-align: center; gap: 36px; }
  .cta-buttons { justify-content: center; }
  .cta-left, .cta-right { min-width: unset; width: 100%; }
  .simple-cta { padding: 60px 0; }
}

@media (max-width: 480px) {
  .cta-left h2 { font-size: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn-primary, .cta-buttons .btn-outline { width: 100%; text-align: center; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer-pro { position: relative; background: linear-gradient(135deg, #0B1F3A, #0F2A50); color: #fff; padding: 80px 0 20px; overflow: hidden; }

.footer-pro::before { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,158,11,0.12), transparent); top: -100px; right: -100px; pointer-events: none; }

.footer-pro-wrapper { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }

.footer-brand h2 { font-size: 26px; background: linear-gradient(90deg, #fff, #F59E0B); -webkit-background-clip: text; color: transparent; margin-bottom: 12px; }
.footer-brand p  { color: #cbd5e1; font-size: 14px; line-height: 1.7; }

.footer-social { margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-right: 8px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: 0.3s; text-decoration: none; }
.footer-social a:hover { background: #F59E0B; transform: translateY(-3px); }

.footer-links h4, .footer-newsletter h4 { margin-bottom: 18px; font-size: 15px; position: relative; padding-bottom: 10px; }
.footer-links h4::after, .footer-newsletter h4::after { content: ""; width: 28px; height: 2px; background: #F59E0B; position: absolute; bottom: 0; left: 0; }

.footer-links a { display: block; margin-bottom: 10px; color: #94a3b8; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-newsletter p { font-size: 14px; color: #94a3b8; margin-bottom: 12px; }

.newsletter-box { display: flex; background: rgba(255,255,255,0.08); border-radius: 30px; overflow: hidden; }
.newsletter-box input { flex: 1; border: none; padding: 12px 14px; background: transparent; color: #fff; outline: none; font-size: 14px; }
.newsletter-box input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-box button { background: #F59E0B; border: none; padding: 12px 16px; cursor: pointer; color: #fff; font-size: 14px; font-weight: 600; transition: 0.3s; white-space: nowrap; }
.newsletter-box button:hover { background: #d97706; }

.footer-bottom-pro { text-align: center; margin-top: 50px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); color: #64748b; font-size: 13px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-wrap img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; background: #fff; padding: 5px; }
.footer-logo-wrap h2 { font-size: 22px; font-weight: 700; background: linear-gradient(90deg, #fff, #F59E0B); -webkit-background-clip: text; color: transparent; }

@media (max-width: 992px) { .footer-pro-wrapper { grid-template-columns: 1fr 1fr; gap: 30px; } }

@media (max-width: 600px) {
  .footer-pro-wrapper { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-logo-wrap  { justify-content: center; }
  .footer-social     { text-align: center; }
  .footer-links h4::after, .footer-newsletter h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) { .footer-pro { padding: 60px 0 16px; } .footer-pro-wrapper { gap: 22px; } }

.cat-link  { text-decoration: none; color: inherit; display: block; }
.read-more { display: inline-block; margin-top: 10px; }


/* =============================================
   POPUP OVERLAY
   — hidden by default; JS adds .visible to show
============================================= */

.dp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: flex;                      /* kept so flex layout always works      */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 30px 16px;
  overflow-y: auto;

  /* SMOOTH FADE */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

/* Shown state — toggled by JS */
.dp-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   POPUP MODAL
============================================= */

.dp-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  display: flex;
  overflow: visible;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  /* SMOOTH SCALE-IN */
  transform: scale(0.88) translateY(24px);
  transition: transform 0.45s cubic-bezier(0.34, 1.28, 0.64, 1),
              opacity   0.45s ease;
  opacity: 0;
}

/* Modal animates in when overlay is visible */
.dp-overlay.visible .dp-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* =============================================
   CLOSE BUTTON
============================================= */

.dp-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #ffb000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: .3s ease;
}

.dp-close:hover {
  background: #071b49;
  transform: rotate(90deg);
}

/* =============================================
   LEFT SIDE
============================================= */

.dp-left {
  width: 42%;
  background: linear-gradient(180deg, #102b73, #1b3180);
  color: #fff;
  padding: 34px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dp-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dp-c1 { width: 140px; height: 140px; top: -35px;  left: -35px; }
.dp-c2 { width: 90px;  height: 90px;  bottom: 30px; left: 12px;  }
.dp-c3 { width: 110px; height: 110px; right: -20px; bottom: -20px; }

.dp-badge {
  display: inline-block;
  background: #ffb000;
  color: #000;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.dp-percent {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  margin-top: 18px;
  color: #ffb000;
}

.dp-percent span { font-size: 34px; }

.dp-off {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 6px;
}

.dp-sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.dp-stars {
  margin-top: 24px;
  color: #ffb000;
  font-size: 18px;
}

.dp-rating {
  margin-top: 10px;
  font-size: 13px;
  opacity: .92;
}

/* =============================================
   RIGHT SIDE
============================================= */

.dp-right {
  width: 58%;
  padding: 30px 28px;
}

.dp-eyebrow {
  color: #ff9800;
  font-size: 13px;
  font-weight: 700;
}

.dp-title {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.25;
  color: #071b49;
  font-weight: 800;
}

.dp-desc {
  margin-top: 10px;
  color: #5f6b85;
  font-size: 14px;
  line-height: 1.5;
}

/* =============================================
   COUNTDOWN
============================================= */

.dp-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.dp-unit {
  background: #071b49;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  min-width: 62px;
}

.dp-unit span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffb000;
}

.dp-unit small {
  font-size: 10px;
  letter-spacing: 1px;
}

.dp-sep {
  font-size: 20px;
  font-weight: 700;
  color: #071b49;
}

/* =============================================
   FORM
============================================= */

.dp-form { margin-top: 18px; }

.dp-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7dbe7;
  border-radius: 10px;
  font-size: 13px;
  outline: none;
  margin-bottom: 10px;
  transition: .3s;
}

.dp-input:focus { border-color: #ffb000; }

.dp-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(180deg, #ffb000, #f39a00);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.dp-btn:hover { transform: translateY(-2px); }

.dp-note {
  margin-top: 12px;
  color: #7f889d;
  font-size: 12px;
  line-height: 1.5;
}

/* =============================================
   MOBILE RESPONSIVE
============================================= */

@media (max-width: 768px) {

  .dp-overlay {
    align-items: flex-start;
    padding: 20px 12px;
  }

  .dp-modal {
    flex-direction: column;
    max-width: 95%;
    margin-top: 24px;
  }

  .dp-left,
  .dp-right { width: 100%; }

  .dp-left  { padding: 24px 16px; }
  .dp-right { padding: 22px 16px; }

  .dp-title   { font-size: 22px; }
  .dp-percent { font-size: 54px; }
  .dp-percent span { font-size: 26px; }
  .dp-off     { font-size: 22px; letter-spacing: 5px; }
  .dp-sub     { font-size: 13px; }

  .dp-unit       { min-width: 54px; padding: 8px 10px; }
  .dp-unit span  { font-size: 18px; }
  .dp-sep        { font-size: 16px; }

  .dp-input { padding: 11px 12px; font-size: 12px; }
  .dp-btn   { padding: 12px; font-size: 14px; }

  .dp-close { width: 26px; height: 26px; font-size: 14px; top: -8px; right: -8px; }
}

@media (max-width: 480px) {
  .dp-title   { font-size: 20px; }
  .dp-desc    { font-size: 13px; }
  .dp-percent { font-size: 48px; }
  .dp-percent span { font-size: 22px; }
  .dp-off     { font-size: 18px; }
}

/* =============================================
   FLOATING WHATSAPP ICON
============================================= */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.7);
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
  transition: 0.3s ease;
}

.floating-whatsapp:hover { transform: scale(1.08); background: #1ebe5d; }
.floating-whatsapp img   { width: 34px; height: 34px; }

@keyframes whatsappPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7),  0 8px 25px rgba(0,0,0,0.25); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0),  0 8px 25px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0),     0 8px 25px rgba(0,0,0,0.25); }
}

@media (max-width: 768px) {
  .floating-whatsapp       { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .floating-whatsapp img   { width: 30px; height: 30px; }
}

/* =============================================
   FAQ SECTION
============================================= */

.faq-section { padding: 90px 0; background: #f8fafc; }

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.faq-label {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-title {
  margin-top: 18px;
  font-size: 46px;
  font-weight: 800;
  color: #071b49;
  line-height: 1.2;
}

.faq-subtitle {
  margin-top: 14px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.faq-wrapper {
  max-width: 900px;
  margin: 55px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: .3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.faq-item.active {
  border-color: #f59e0b;
  box-shadow: 0 10px 35px rgba(245,158,11,0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #071b49;
  text-align: left;
  transition: .3s ease;
}

.faq-question:hover { background: rgba(245,158,11,0.03); }

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #f59e0b;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer { padding: 0 28px 24px; }

@media (max-width: 768px) {
  .faq-section   { padding: 70px 0; }
  .faq-title     { font-size: 32px; }
  .faq-subtitle  { font-size: 14px; }
  .faq-wrapper   { margin-top: 40px; gap: 14px; }
  .faq-question  { padding: 18px; font-size: 15px; gap: 14px; }
  .faq-answer    { padding: 0 18px; font-size: 13px; line-height: 1.7; }
  .faq-item.active .faq-answer { padding: 0 18px 18px; }
  .faq-icon      { width: 28px; height: 28px; font-size: 18px; }
}

@media (max-width: 480px) {
  .faq-title    { font-size: 26px; }
  .faq-subtitle { font-size: 13px; }
  .faq-question { font-size: 14px; }
}

/* =========================================
   PLACED SECTION
========================================= */

.placed-section{
  padding:90px 0;
  background:#f8fafc;
  position:relative;
  overflow:hidden;
}

/* =========================================
   HEADING
========================================= */

.placed-heading{
  text-align:center;
  margin-bottom:40px;
  padding:0 15px;
}

.placed-label{
  color:#F59E0B;
  font-weight:600;
  margin-bottom:10px;
  font-size:15px;
  letter-spacing:0.5px;
}

.placed-heading h2{
  font-size:clamp(2rem,5vw,3.5rem);
  line-height:1.2;
  color:#0B1F3A;
  margin-bottom:15px;
  font-weight:800;
}

.placed-heading h2 span{
  color:#F59E0B;
}

.placed-heading p{
  max-width:750px;
  margin:auto;
  color:#64748b;
  line-height:1.8;
  font-size:16px;
}

/* =========================================
   BANNER
========================================= */

.placed-banner-wrap{
  position:relative;
  overflow:hidden;
  border-radius:28px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.12);

  transition:0.4s ease;
}

.placed-banner{
  width:100%;
  display:block;
  border-radius:28px;
  transition:0.5s ease;
}

/* HOVER */

.placed-banner-wrap:hover .placed-banner{
  transform:scale(1.01);
}

/* =========================================
   GLOW EFFECT
========================================= */

.placed-section::before{
  content:"";
  position:absolute;

  width:400px;
  height:400px;

  background:
  rgba(245,158,11,0.15);

  filter:blur(120px);

  top:-100px;
  right:-100px;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

.placed-section{
  padding:80px 0;
}

.placed-heading{
  margin-bottom:30px;
}

.placed-heading h2{
  font-size:2.7rem;
}

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.placed-section{
  padding:60px 0;
}

.placed-heading{
  margin-bottom:22px;
  padding:0 10px;
}

.placed-label{
  font-size:13px;
}

.placed-heading h2{
  font-size:2rem;
  line-height:1.3;
}

.placed-heading p{
  font-size:14px;
  line-height:1.7;
}

.placed-banner-wrap,
.placed-banner{
  border-radius:18px;
}

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

.placed-section{
  padding:50px 0;
}

.placed-heading h2{
  font-size:1.7rem;
}

.placed-heading p{
  font-size:13px;
}

.placed-banner-wrap,
.placed-banner{
  border-radius:14px;
}

}