/* ===================== EDUVISION ACADEMY CSS ===================== */
/* Root Variables */
:root {
  --primary: #1a3c7c;
  --primary-dark: #0f2557;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --gradient: linear-gradient(135deg, #1a3c7c 0%, #2d68c4 100%);
  --gradient-accent: linear-gradient(135deg, #f5a623 0%, #e8822e 100%);
  --light-bg: #f8f9ff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26,60,124,0.10);
  --shadow-hover: 0 12px 40px rgba(26,60,124,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); background: #fff; overflow-x: hidden; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: 'Roboto', serif; }
.gradient-text { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===================== TOP HEADER ===================== */
.top-header {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
}
.top-info span { color: rgba(255,255,255,0.75); }
.top-info span i { color: var(--accent); }
.top-social {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; text-decoration: none; transition: all 0.3s;
}
.top-social:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-top-enq {
  background: var(--gradient-accent); color: white; border: none; padding: 5px 16px;
  border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.btn-top-enq:hover { opacity: 0.9; transform: translateY(-1px); color: white; }

/* ===================== MAIN NAVBAR ===================== */
.main-navbar {
  background: white; padding: 14px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s; z-index: 999;
}
.main-navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px; background: var(--gradient); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 20px;
}
.brand-name { display: block; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.brand-sub { display: block; font-size: 10px; font-weight: 600; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }
.nav-link { color: var(--text-dark) !important; font-weight: 500; font-size: 15px; padding: 8px 14px !important; border-radius: var(--radius-sm); transition: all 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(26,60,124,0.07); }
.nav-enq-btn { background: var(--gradient) !important; color: white !important; border-radius: 25px; padding: 8px 22px !important; }
.nav-enq-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.navbar-toggler { border: none; padding: 0; }
.toggler-icon { width: 38px; height: 38px; background: var(--gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; }

/* ===================== MOBILE OFFCANVAS MENU ===================== */
.mobile-menu { background: var(--primary-dark); border: none; max-width: 300px; }
.mobile-menu .offcanvas-header { background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
.mobile-menu .brand-name, .mobile-menu .brand-sub { color: white !important; }
.mobile-nav-list { list-style: none; padding: 0; }
.mobile-nav-list li a {
  display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.8);
  text-decoration: none; padding: 14px 0; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: all 0.3s;
}
.mobile-nav-list li a i { width: 20px; color: var(--accent); }
.mobile-nav-list li a:hover { color: white; padding-left: 8px; }
.mobile-nav-list li a.enq-link { color: var(--accent); font-weight: 700; }
.mobile-contact-info p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 8px; }
.mobile-contact-info i { color: var(--accent); margin-right: 8px; }
.mob-social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; }
.mob-social:hover { background: var(--accent); color: white; }

/* ===================== HERO SECTION ===================== */
.hero-section { background: var(--gradient); position: relative; overflow: hidden; padding: 80px 0 120px; }
.min-vh-hero { min-height: 85vh; }
.hero-bg-anim { position: absolute; inset: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: blobFloat 8s ease-in-out infinite; }
.blob1 { width: 500px; height: 500px; background: #4d90fe; top: -150px; right: -100px; animation-delay: 0s; }
.blob2 { width: 300px; height: 300px; background: #f5a623; bottom: -80px; left: 10%; animation-delay: 3s; }
.blob3 { width: 200px; height: 200px; background: #a8d8ea; top: 30%; left: 40%; animation-delay: 6s; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; padding: 8px 18px; border-radius: 25px; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px; }
.hero-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 30px; line-height: 1.7; }
.stat-pill { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 10px 16px; text-align: center; color: white; }
.stat-pill strong { display: block; font-size: 22px; font-weight: 700; }
.stat-pill span { font-size: 12px; opacity: 0.8; }
.btn-primary-hero { background: var(--gradient-accent); color: white; padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.3s; box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245,166,35,0.5); color: white; }
.btn-outline-hero { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: white; padding: 14px 32px; border-radius: 30px; font-weight: 600; font-size: 16px; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s; display: inline-flex; align-items: center; }
.btn-outline-hero:hover { background: white; color: var(--primary); border-color: white; }

/* HERO VISUAL */
.hero-visual { position: relative; width: 480px; height: 480px; }
.hero-img-circle { width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 3px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: heroFloat 4s ease-in-out infinite; }
.circle-inner { font-size: 100px; color: rgba(255,255,255,0.7); }
@keyframes heroFloat { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-20px); } }
.hero-card-float { position: absolute; background: white; border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--primary); box-shadow: 0 8px 30px rgba(0,0,0,0.15); animation: cardBounce 3s ease-in-out infinite; }
.hero-card-float i { color: var(--accent); font-size: 18px; }
.card1 { top: 20px; left: 0; animation-delay: 0s; }
.card2 { bottom: 80px; right: 0; animation-delay: 1s; }
.card3 { bottom: 20px; left: 10px; animation-delay: 2s; }
@keyframes cardBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; }

/* ===================== TICKER ===================== */
.ticker-wrap { background: var(--accent); color: white; padding: 10px 0; overflow: hidden; font-size: 14px; font-weight: 600; }
.ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== SECTIONS ===================== */
.section-pad { padding: 80px 0; }
.bg-light-custom { background: var(--light-bg); }
.section-badge { display: inline-block; background: rgba(26,60,124,0.1); color: var(--primary); padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===================== WHY CARDS ===================== */
.why-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.4s; border: 1px solid var(--border); height: 100%; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(26,60,124,0.15); }
.why-icon { width: 70px; height: 70px; background: var(--gradient); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; margin: 0 auto 18px; transition: all 0.3s; }
.why-card:hover .why-icon { transform: rotate(-5deg) scale(1.1); }
.why-card h5 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===================== COURSE CARDS ===================== */
.course-card { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.4s; height: 100%; position: relative; overflow: hidden; }
.course-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); transform: scaleX(0); transition: transform 0.3s; }
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.course-badge-tag { position: absolute; top: 16px; right: 16px; background: var(--gradient-accent); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.new-tag { background: linear-gradient(135deg, #10b981, #059669) !important; }
.course-icon-wrap { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: white; margin-bottom: 16px; }
.bed-color { background: linear-gradient(135deg, #1a3c7c, #2d68c4); }
.deled-color { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.jbt-color { background: linear-gradient(135deg, #059669, #10b981); }
.online-color { background: linear-gradient(135deg, #dc2626, #f97316); }
.course-card h5 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.course-full { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.course-features { list-style: none; padding: 0; margin-bottom: 20px; }
.course-features li { font-size: 13px; color: var(--text-muted); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.course-features li i { color: #10b981; font-size: 12px; }
.course-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.course-duration { font-size: 13px; color: var(--text-muted); }
.course-duration i { color: var(--accent); margin-right: 4px; }
.course-btn { background: var(--gradient); color: white; padding: 7px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.course-btn:hover { opacity: 0.9; transform: translateX(2px); color: white; }
.btn-view-all { background: var(--gradient); color: white; padding: 14px 36px; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-block; font-size: 16px; transition: all 0.3s; box-shadow: 0 6px 20px rgba(26,60,124,0.3); }
.btn-view-all:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,60,124,0.4); color: white; }

/* ===================== STATS SECTION ===================== */
.stats-section { background: var(--gradient); padding: 60px 0; }
.stat-item { color: white; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; margin-bottom: 6px; }
.stat-label { font-size: 15px; opacity: 0.85; font-weight: 500; }

/* ===================== PROCESS CARDS ===================== */
.process-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); position: relative; height: 100%; transition: all 0.4s; }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.process-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background: var(--gradient-accent); color: white; border-radius: 50%; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.process-icon { width: 64px; height: 64px; background: rgba(26,60,124,0.08); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--primary); margin: 12px auto 16px; }
.process-card h6 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===================== REVIEWS ===================== */
.reviews-section { background: var(--light-bg); }
.review-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); height: 100%; transition: all 0.4s; border: 1px solid var(--border); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.featured-review { background: var(--gradient); border: none; }
.featured-review p, .featured-review .reviewer strong, .featured-review .reviewer span { color: rgba(255,255,255,0.9) !important; }
.featured-review .review-stars { color: #ffd700; }
.review-stars { font-size: 18px; color: var(--accent); margin-bottom: 12px; }
.review-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: white; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer strong { display: block; font-size: 15px; color: var(--text-dark); }
.reviewer span { font-size: 12px; color: var(--text-muted); }

/* ===================== CTA ===================== */
.cta-section { padding: 60px 0; }
.cta-box { background: var(--gradient); border-radius: 24px; padding: 50px 40px; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(245,166,35,0.3); border-radius: 50%; filter: blur(60px); }
.cta-box h2 { color: white; font-size: 36px; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,0.85); font-size: 16px; }
.btn-cta-white { background: white; color: var(--primary); padding: 14px 28px; border-radius: 30px; font-weight: 700; text-decoration: none; display: inline-block; transition: all 0.3s; font-size: 15px; }
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--primary); }
.btn-cta-outline { background: transparent; color: white; padding: 13px 28px; border-radius: 30px; font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.3s; font-size: 15px; border: 2px solid rgba(255,255,255,0.5); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); color: white; }

/* ===================== FAQ ===================== */
.faq-item { background: white; border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.faq-btn { background: white !important; color: var(--text-dark) !important; font-weight: 600; font-size: 15px; box-shadow: none !important; border-radius: 0 !important; }
.faq-btn:not(.collapsed) { color: var(--primary) !important; background: rgba(26,60,124,0.04) !important; }
.faq-btn::after { filter: none; }
.faq-body { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===================== FOOTER ===================== */
.main-footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,0.6); }
.footer-heading { color: white; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(245,166,35,0.5); display: inline-block; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links li a::before { content: '›'; color: var(--accent); font-size: 16px; }
.footer-links li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.65); align-items: flex-start; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: all 0.3s; }
.footer-socials a:hover { background: var(--accent); color: white; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===================== MOBILE FIXED FOOTER ===================== */
.mobile-fixed-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; padding: 4px 0;
  border-top: 1px solid #e5e7eb;
}
.mf-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; padding: 6px 4px; font-size: 10px; font-weight: 600; transition: all 0.3s; gap: 3px; }
.mf-item i { font-size: 20px; }
.mf-item.active { color: var(--primary); }
.mf-item:hover { color: var(--primary); }
.mf-center { background: var(--gradient); color: white !important; border-radius: 14px; margin: 0 6px; padding: 8px 4px; box-shadow: 0 4px 15px rgba(26,60,124,0.3); }

/* ===================== POPUP ===================== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.4s; }
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box { background: white; border-radius: 24px; padding: 36px 32px; width: 100%; max-width: 460px; position: relative; transform: translateY(30px) scale(0.95); transition: all 0.4s; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.popup-overlay.show .popup-box { transform: translateY(0) scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: #f3f4f6; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.popup-close:hover { background: #e5e7eb; }
.popup-header { text-align: center; margin-bottom: 24px; }
.popup-icon { width: 60px; height: 60px; background: var(--gradient); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: white; font-size: 26px; margin: 0 auto 16px; }
.popup-header h4 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.popup-header p { font-size: 14px; color: var(--text-muted); }
.styled-input { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; transition: all 0.3s; }
.styled-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,60,124,0.1); outline: none; }
.btn-popup-submit { background: var(--gradient); color: white; border: none; padding: 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; }
.btn-popup-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===================== PAGE HERO ===================== */
.page-hero { background: var(--gradient); padding: 70px 0 80px; position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; font-size: clamp(32px, 5vw, 52px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 17px; }
.breadcrumb-custom { display: flex; gap: 8px; align-items: center; margin-top: 16px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.breadcrumb-custom span { color: rgba(255,255,255,0.5); font-size: 14px; }
.breadcrumb-custom .current { color: var(--accent); font-size: 14px; font-weight: 600; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.page-hero .blob1 { opacity: 0.2; }
.page-hero .blob2 { opacity: 0.15; }

/* ===================== COURSES PAGE ===================== */
.course-filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab { padding: 9px 22px; border-radius: 25px; border: 2px solid var(--border); background: white; color: var(--text-muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.filter-tab.active, .filter-tab:hover { background: var(--gradient); color: white; border-color: transparent; }

/* ===================== COURSE DETAIL PAGE ===================== */
.detail-hero { background: var(--gradient); padding: 60px 0; position: relative; overflow: hidden; }
.detail-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.course-meta-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.course-meta-item { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 14px; }
.course-meta-item .label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.course-meta-item .value { color: white; font-weight: 700; font-size: 16px; margin-top: 4px; }
.sticky-card { position: sticky; top: 100px; }
.price-card { background: white; border-radius: 20px; padding: 28px; box-shadow: 0 8px 40px rgba(26,60,124,0.15); border: 1px solid rgba(26,60,124,0.1); }
.price-main { font-size: 36px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 13px; color: #10b981; font-weight: 600; background: rgba(16,185,129,0.1); padding: 3px 10px; border-radius: 20px; }
.btn-enq-full { background: var(--gradient-accent); color: white; padding: 15px; border-radius: var(--radius-sm); font-weight: 700; text-align: center; text-decoration: none; display: block; font-size: 16px; transition: all 0.3s; margin-bottom: 10px; }
.btn-enq-full:hover { opacity: 0.9; transform: translateY(-2px); color: white; }
.btn-call-full { background: rgba(26,60,124,0.06); color: var(--primary); padding: 14px; border-radius: var(--radius-sm); font-weight: 700; text-align: center; text-decoration: none; display: block; font-size: 16px; transition: all 0.3s; border: 2px solid rgba(26,60,124,0.15); }
.btn-call-full:hover { background: var(--primary); color: white; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border: none; }
.feature-list li i { color: #10b981; }

/* ===================== ABOUT PAGE ===================== */
.team-card { background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: all 0.4s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient); color: white; font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-card h5 { font-size: 18px; margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 13px; font-weight: 600; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--primary); min-width: 80px; text-align: right; padding-top: 4px; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; position: relative; }
.timeline-dot::after { content:''; position: absolute; top: 16px; left: 7px; width: 2px; height: calc(100% + 20px); background: var(--border); }
.timeline-content h6 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--text-muted); }

/* ===================== CONTACT PAGE ===================== */
.contact-info-card { background: var(--gradient); border-radius: 20px; padding: 36px; color: white; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-item h6 { color: rgba(255,255,255,0.7); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-info-item p { color: white; font-size: 15px; font-weight: 500; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-form-card { background: white; border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.form-label-custom { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.btn-submit-main { background: var(--gradient); color: white; border: none; padding: 14px 36px; border-radius: 30px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s; width: 100%; }
.btn-submit-main:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===================== ENQUIRY PAGE ===================== */
.enquiry-form-section { background: var(--light-bg); }
.enq-form-card { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 10px 50px rgba(26,60,124,0.12); }
.enq-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.step-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; background: rgba(26,60,124,0.1); color: var(--primary); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-dot.active { background: var(--gradient); color: white; }
.step-line { flex: 1; height: 2px; background: var(--border); }

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* ===================== UTILITIES ===================== */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  body { padding-bottom: 64px; }
  .hero-title { font-size: 36px; }
  .stat-num { font-size: 36px; }
  .cta-box { padding: 36px 24px; }
  .cta-box h2 { font-size: 26px; }
  .btn-cta-outline { margin-top: 12px; margin-left: 0 !important; }
}
@media (max-width: 576px) {
  .hero-stats { gap: 12px; }
  .stat-pill { padding: 8px 12px; }
  .stat-pill strong { font-size: 18px; }
  .enq-form-card { padding: 24px 20px; }
  .contact-form-card, .contact-info-card { padding: 24px 20px; }
  .price-card { padding: 20px; }
}
.brand-logo-only {
  display: flex;
  align-items: center;
}
.main-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}
    /* ── PAGE HERO ── */
    .bed-hero {
      background: var(--indigo);
      position: relative; overflow: hidden;
      padding: 72px 0 60px;
    }
    .bed-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 60% at 85% 50%, rgba(232,130,12,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(51,64,168,0.25) 0%, transparent 55%);
    }
    .bed-hero-pattern {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(232,130,12,0.07) 1px, transparent 1px);
      background-size: 36px 36px;
    }
    .breadcrumb-nav { margin-bottom: 18px; }
    .breadcrumb-nav a, .breadcrumb-nav span {
      font-size: 0.82rem; font-weight: 600; text-decoration: none;
      color: rgba(255,255,255,0.55); letter-spacing: 0.5px;
    }
    .breadcrumb-nav a:hover { color: var(--saffron); }
    .breadcrumb-sep { margin: 0 8px; color: rgba(255,255,255,0.3); }
    .breadcrumb-nav .current { color: var(--saffron); }
    .hero-badge-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(232,130,12,0.18); border: 1px solid rgba(232,130,12,0.4);
      color: var(--saffron-lt); padding: 7px 18px; border-radius: 50px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 18px;
    }
    .bed-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.12;
      color: #fff; margin-bottom: 16px;
    }
    .bed-hero h1 .accent { color: var(--saffron); }
    .hero-tagline { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; max-width: 560px; }
    .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
    .btn-saffron {
      padding: 14px 32px; border-radius: 50px; background: var(--saffron);
      color: #fff; font-weight: 700; font-size: 0.95rem; text-decoration: none;
      border: none; cursor: pointer; box-shadow: 0 8px 28px rgba(232,130,12,0.4);
      transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-saffron:hover { background: var(--saffron-lt); transform: translateY(-2px); color: #fff; }
    .btn-ghost-white {
      padding: 14px 32px; border-radius: 50px; background: transparent;
      color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.35); cursor: pointer; transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-ghost-white:hover { border-color: var(--saffron); color: var(--saffron); }
    .hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
    .hero-chip {
      display: flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8); padding: 7px 16px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 600;
    }
    .hero-chip i { color: var(--saffron); font-size: 0.75rem; }

    /* Hero right panel */
    .hero-info-panel {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(232,130,12,0.25);
      border-radius: 24px; padding: 32px; backdrop-filter: blur(12px);
    }
    .panel-title { color: var(--saffron); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
    .info-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .info-row:last-child { border-bottom: none; }
    .info-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; font-weight: 500; }
    .info-val { color: #fff; font-size: 0.9rem; font-weight: 700; text-align: right; }
    .info-val.highlight { color: var(--saffron-lt); }
    .panel-cta {
      margin-top: 24px; padding: 14px; background: var(--saffron); border-radius: 12px;
      text-align: center; text-decoration: none; color: #fff; font-weight: 700;
      display: block; transition: all 0.2s; font-size: 0.95rem;
    }
    .panel-cta:hover { background: var(--saffron-lt); color: #fff; transform: translateY(-1px); }
    .seats-indicator {
      display: flex; align-items: center; gap: 10px; margin-top: 16px;
      padding: 12px 16px; background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3);
      border-radius: 10px;
    }
    .seats-dot { width: 8px; height: 8px; border-radius: 50%; background: #E74C3C; animation: pulse 1.5s infinite; flex-shrink: 0; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
    .seats-text { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 600; }

    /* ── STICKY TABS ── */
    .sticky-tabs {
      position: sticky; top: 0; z-index: 200;
      background: #fff; border-bottom: 2px solid var(--border);
      box-shadow: 0 4px 20px rgba(27,31,94,0.08);
    }
    .tabs-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; padding: 0 4%; }
    .tabs-inner::-webkit-scrollbar { display: none; }
    .tab-link {
      padding: 16px 22px; font-size: 0.88rem; font-weight: 600; color: var(--muted);
      text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent;
      transition: all 0.25s; display: flex; align-items: center; gap: 7px;
    }
    .tab-link:hover { color: var(--indigo); border-bottom-color: var(--indigo); }
    .tab-link.active { color: var(--saffron); border-bottom-color: var(--saffron); }

    /* ── GENERAL SECTION ── */
    .page-section { padding: 72px 0; }
    .page-section.bg-cream { background: var(--cream); }
    .page-section.bg-indigo { background: var(--indigo); }
    .section-eyebrow {
      display: inline-block; background: var(--saffron); color: #fff;
      padding: 5px 18px; border-radius: 50px; font-size: 0.72rem;
      font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
    }
    .section-eyebrow.outline {
      background: transparent; color: var(--saffron); border: 2px solid var(--saffron);
    }
    .section-h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--text); line-height: 1.2; }
    .section-h2.light { color: #fff; }
    .section-sub { color: var(--muted); font-size: 0.97rem; line-height: 1.75; margin-top: 10px; }
    .section-sub.light { color: rgba(255,255,255,0.65); }

    /* ── OVERVIEW CARDS ── */
    .overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; margin-top: 40px; }
    .ov-card {
      background: #fff; border: 1px solid var(--border); border-radius: var(--r);
      padding: 24px 20px; text-align: center; transition: all 0.3s;
    }
    .ov-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(27,31,94,0.1); border-color: var(--saffron); }
    .ov-icon {
      width: 54px; height: 54px; background: var(--saffron-pale); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin: 0 auto 14px; color: var(--saffron);
    }
    .ov-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
    .ov-val { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 800; color: var(--indigo); }

    /* ── ELIGIBILITY ── */
    .elig-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
    .elig-box { background: #fff; border-radius: 22px; padding: 32px; border: 1px solid var(--border); }
    .elig-box-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 800;
      color: var(--indigo); margin-bottom: 6px;
    }
    .elig-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
    .elig-point { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
    .ep-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; margin-top: 8px; }
    .ep-text { font-size: 0.88rem; color: var(--text); line-height: 1.65; }
    .ep-text strong { color: var(--indigo); }
    .cat-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
    .cat-table th { background: var(--indigo); color: #fff; padding: 10px 14px; font-size: 0.8rem; text-align: left; }
    .cat-table td { padding: 10px 14px; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
    .cat-table tr:last-child td { border-bottom: none; }
    .cat-table tr:nth-child(even) { background: var(--saffron-pale); }

    /* ── SUBJECTS / SYLLABUS ── */
    .syllabus-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
    .syl-tab {
      padding: 9px 22px; border-radius: 50px; cursor: pointer; font-weight: 600; font-size: 0.85rem;
      border: 2px solid var(--border); color: var(--muted); background: #fff; transition: all 0.25s;
    }
    .syl-tab.active, .syl-tab:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }
    .syl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
    .syl-item {
      background: #fff; border: 1px solid var(--border); border-radius: 12px;
      padding: 14px 18px; display: flex; align-items: flex-start; gap: 12px;
      transition: all 0.2s;
    }
    .syl-item:hover { border-color: var(--saffron); background: var(--saffron-pale); }
    .syl-num { width: 30px; height: 30px; border-radius: 8px; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }
    .syl-name { font-size: 0.86rem; font-weight: 600; color: var(--text); line-height: 1.4; }

    /* ── COLLEGE TABLE ── */
    .college-table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--border); }
    .college-table { width: 100%; border-collapse: collapse; }
    .college-table thead { background: var(--indigo); }
    .college-table th { padding: 16px 18px; color: #fff; font-size: 0.82rem; font-weight: 700; text-align: left; white-space: nowrap; }
    .college-table th:first-child { border-radius: 0; }
    .college-table td { padding: 14px 18px; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
    .college-table tr:last-child td { border-bottom: none; }
    .college-table tr:nth-child(even) td { background: var(--ivory); }
    .college-table tr:hover td { background: var(--saffron-pale); }
    .col-name { font-weight: 700; color: var(--indigo); }
    .col-type { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
    .govt { background: rgba(45,110,71,0.12); color: var(--sage); }
    .pvt  { background: rgba(27,31,94,0.1); color: var(--indigo); }
    .aided { background: rgba(232,130,12,0.12); color: var(--saffron); }
    .fee-cell { font-weight: 700; color: var(--indigo); }
    .ncte-badge { color: var(--sage); font-weight: 700; font-size: 0.85rem; }

    /* ── CAREER PATHS ── */
    .career-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 40px; }
    .career-card {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(232,130,12,0.2);
      border-radius: 18px; padding: 26px 22px; transition: all 0.3s; cursor: pointer;
    }
    .career-card:hover { background: rgba(232,130,12,0.1); border-color: var(--saffron); transform: translateY(-4px); }
    .career-icon { font-size: 2rem; margin-bottom: 14px; }
    .career-card h5 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
    .career-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; margin-bottom: 10px; }
    .career-salary { color: var(--saffron-lt); font-size: 0.82rem; font-weight: 700; }

    /* ── PROCESS STEPS ── */
    .steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 40px; position: relative; }
    .step-box {
      background: #fff; border: 1px solid var(--border); border-radius: var(--r);
      padding: 28px 22px; text-align: center; transition: all 0.3s; position: relative;
    }
    .step-box:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(27,31,94,0.1); border-color: var(--saffron); }
    .step-num {
      width: 52px; height: 52px; border-radius: 50%; background: var(--indigo);
      border: 3px solid var(--saffron); display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 800;
      color: var(--saffron); margin: 0 auto 16px;
    }
    .step-box h6 { font-size: 0.9rem; font-weight: 700; color: var(--indigo); margin-bottom: 6px; }
    .step-box p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
    .step-arrow { position: absolute; right: -12px; top: 40px; color: var(--saffron); font-size: 1rem; z-index: 2; display: none; }

    /* ── DOCUMENTS ── */
    .doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 36px; }
    .doc-item {
      background: #fff; border: 1px solid var(--border); border-radius: 14px;
      padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: all 0.25s;
    }
    .doc-item:hover { border-color: var(--saffron); background: var(--saffron-pale); }
    .doc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--saffron-pale); display: flex; align-items: center; justify-content: center; color: var(--saffron); font-size: 1rem; flex-shrink: 0; }
    .doc-name { font-size: 0.87rem; font-weight: 600; color: var(--text); }
    .doc-note { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

    /* ── FAQ ── */
    .faq-wrap { margin-top: 36px; }
    .faq-box { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: border-color 0.2s; }
    .faq-box.open { border-color: var(--saffron); }
    .faq-q {
      padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between;
      align-items: center; gap: 14px; user-select: none;
    }
    .faq-q h5 { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--indigo); line-height: 1.4; margin: 0; }
    .faq-box.open .faq-q h5 { color: var(--saffron); }
    .faq-toggle-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--saffron-pale); border: none; display: flex; align-items: center; justify-content: center; color: var(--saffron); font-size: 0.85rem; flex-shrink: 0; cursor: pointer; transition: all 0.3s; }
    .faq-box.open .faq-toggle-icon { background: var(--saffron); color: #fff; transform: rotate(45deg); }
    .faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 22px; }
    .faq-box.open .faq-ans { max-height: 400px; padding: 0 22px 18px; }
    .faq-ans p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin: 0; }
    .faq-ans ul { margin: 10px 0 0 18px; }
    .faq-ans ul li { font-size: 0.87rem; color: var(--muted); margin-bottom: 6px; line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 40px; }
    .testi-card {
      background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--border);
      transition: all 0.25s; position: relative; overflow: hidden;
    }
    .testi-card::before { content: '"'; position: absolute; top: -8px; right: 18px; font-family: 'Cormorant Garamond', serif; font-size: 7rem; color: rgba(232,130,12,0.07); line-height: 1; }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(27,31,94,0.1); }
    .testi-stars { color: var(--saffron); font-size: 0.9rem; margin-bottom: 12px; }
    .testi-text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0; }
    .testi-name { font-weight: 700; font-size: 0.9rem; color: var(--indigo); }
    .testi-role { font-size: 0.78rem; color: var(--muted); }
    .testi-badge { display: inline-block; background: var(--saffron); color: #fff; padding: 2px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; margin-top: 3px; }

    /* ── CTA BANNER ── */
    .cta-band {
      background: linear-gradient(135deg, var(--saffron) 0%, #C07020 100%);
      padding: 64px 0; text-align: center;
    }
    .cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cta-band p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 30px; }
    .btn-white-solid {
      padding: 15px 38px; border-radius: 50px; background: #fff; color: var(--saffron);
      font-weight: 800; font-size: 0.95rem; text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18); transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-white-solid:hover { background: var(--indigo); color: #fff; transform: translateY(-2px); }
    .btn-outline-white {
      padding: 15px 38px; border-radius: 50px; background: transparent; color: #fff;
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.6); transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }
    .cta-pills { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
    .cta-pill { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 600; }

    /* ── CONTACT FORM ── */
    .contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
    .contact-info-block h3 { font-size: 1.7rem; font-weight: 800; color: var(--indigo); margin-bottom: 10px; }
    .contact-info-block .sub { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
    .c-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
    .c-info-icon { width: 44px; height: 44px; background: var(--saffron); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
    .c-info-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
    .c-info-val { font-size: 0.93rem; font-weight: 700; color: var(--indigo); }
    .form-card { background: #fff; border-radius: 24px; padding: 36px; border: 1px solid var(--border); box-shadow: 0 6px 36px rgba(27,31,94,0.08); }
    .form-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 800; color: var(--indigo); margin-bottom: 22px; }
    .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .fg { margin-bottom: 16px; }
    .fg label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--indigo); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
    .fg input, .fg select, .fg textarea {
      width: 100%; padding: 13px 16px; border-radius: 12px;
      border: 1.5px solid rgba(27,31,94,0.15); background: var(--ivory);
      font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
      transition: border-color 0.2s; outline: none;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--saffron); background: #fff; }
    .fg textarea { resize: vertical; min-height: 90px; }
    .fg select { cursor: pointer; appearance: none; }
    .btn-submit {
      width: 100%; padding: 15px; border-radius: 50px; background: var(--indigo);
      color: #fff; font-weight: 700; font-size: 0.97rem; border: none; cursor: pointer;
      transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { background: var(--saffron); transform: translateY(-2px); }

    /* ── NOTICE BAR ── */
    .notice-bar {
      background: var(--indigo); padding: 14px 5%; display: flex;
      align-items: center; gap: 14px; flex-wrap: wrap;
    }
    .notice-tag { background: var(--saffron); color: #fff; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px; flex-shrink: 0; }
    .notice-text { color: rgba(255,255,255,0.85); font-size: 0.87rem; flex: 1; }
    .notice-link { color: var(--saffron-lt); font-size: 0.85rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
    .notice-link:hover { text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 992px) {
      .elig-split { grid-template-columns: 1fr; }
      .contact-split { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .bed-hero { padding: 50px 0 44px; }
      .page-section { padding: 52px 0; }
      .form-row2 { grid-template-columns: 1fr; }
      .career-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .career-grid { grid-template-columns: 1fr; }
    }