/* ============================================================
   Martian Institute - Web Designing Course Landing Page
   Stylesheet (web-styles.css)
   ------------------------------------------------------------
   TABLE OF CONTENTS - Search for the section name to jump:
   ------------------------------------------------------------
   1.  GLOBAL RESET & ROOT VARIABLES
   2.  ACCESSIBILITY (SKIP-LINK & SR-ONLY)
   3.  CLS MITIGATION (FA ICON SPACE RESERVATION)
   4.  BASE HTML / SCROLL SETTINGS
   5.  DECORATIVE AURORA BACKGROUND & SCROLLBAR
   6.  SCROLL PROGRESS BAR (DESKTOP=INVISIBLE, MOBILE=FIXED)
   7.  BASE TYPOGRAPHY & LAYOUT PRIMITIVES
   8.  GSAP REVEAL HEADINGS & SECTION TITLES
   9.  CONTENT IMAGE WRAPPER & READ-ALONG TEXT
   10. MODERN SOCIALS ICON ROW
   11. TOP BAR (CONTACT INFO + SOCIALS)
   12. SITE HEADER & PRIMARY NAVIGATION
   13. HERO SECTION (GLASS CARD, BADGE, BUTTONS, STATS)
   14. MAIN CONTENT WRAPPER & CAREER CARDS
   15. SALARY CARDS GRID
   16. ALIVE CARD (COURSE SNAPSHOT / TIMELINE)
   17. CHECK-LIST (COURSE HIGHLIGHTS) & EXPAND TOGGLE
   18. ACCORDION (CURRICULUM)
   19. INSTRUCTOR SECTION
   20. FAQ SECTION
   21. FOOTER
   22. SCROLL-TOP BUTTON
   23. MOBILE NAVIGATION PANEL
   24. FLOATING ACTION BUTTONS (WHATSAPP / SNAPSHOT)
   25. BOTTOM SHEETS (SNAPSHOT & WHATSAPP)
   26. MAP / LOCATION SECTION
   27. REVIEWS SECTION (ELFSIGHT)
   28. FONT AWESOME @font-face OVERRIDES (font-display: swap)
   29. RESPONSIVE BREAKPOINTS (1024 / 900 / 768 / 700 / 600 PX)
   30. MOBILE-ONLY FIX: SCROLL PROGRESS BAR VISIBILITY
   31. ACCESSIBILITY: PREFERS-REDUCED-MOTION (MOBILE ONLY)
   ============================================================ */

/* ============================================================
   GLOBAL RESET & ROOT VARIABLES
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }:root {    --primary-color: #eb6b22;    --primary-hover: #d95a16;    --secondary-color: #022f46;    --nav-link-color: #555555;    --white-65: rgba(255, 255, 255, 0.65);    --text-dark: #1a202c;    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;    --smooth-curve: cubic-bezier(0.25, 1, 0.5, 1);    --cinematic-curve: cubic-bezier(0.16, 1, 0.3, 1);    --spring-curve: cubic-bezier(0.34, 1.56, 0.64, 1);}

/* ============================================================
   CLS MITIGATION: Reserve space for Font Awesome icons
   ------------------------------------------------------------
   FA CSS loads asynchronously (preload pattern). Before it
   arrives, <i class="fa-*"> elements are empty inline elements
   with 0 width. When FA.css loads, icons become ~1em wide via
   ::before, causing horizontal layout shifts (CLS ~1.0).

   This rule reserves 1em of space and applies FA's default
   display/vertical-align BEFORE FA.css loads, so there's no
   visible shift when icons render.

   When FA.css arrives, its own .fa/.fas/.far/.fab rules apply
   the same properties on top — no visual jump.
   ============================================================ */
i[class*="fa-"] {
    display: inline-block;
    min-width: 1em;
    text-align: center;
    font-style: normal;
    line-height: 1;
    vertical-align: -.125em;
}
        

/* ============================================================
   ACCESSIBILITY (SKIP-LINK & SCREEN-READER-ONLY)
   ============================================================ */
.skip-link { position: absolute; top: -50px; left: 0; background: var(--primary-color); color: #fff; padding: 12px 20px; z-index: 10000; font-weight: bold; text-decoration: none; transition: top 0.3s ease; }.skip-link:focus { top: 0; }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* ============================================================
   BASE HTML / SCROLL SETTINGS
   ============================================================ */
html { scroll-behavior: auto; }
/* GPU-Optimized Aurora Background */
/* ============================================================
   DECORATIVE AURORA BACKGROUND
   ============================================================ */
.martian-aurora-bg { position: fixed; inset: 0; z-index: -10; overflow: hidden; background-color: #f0f4f8; transform: translateZ(0); will-change: transform; }.aurora-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6; animation: floatBg 20s infinite ease-in-out alternate; will-change: transform; }.orb-1 { width: 60vw; height: 60vw; background: #ffe4d6; top: -10%; left: -10%; animation-duration: 25s; }.orb-2 { width: 50vw; height: 50vw; background: #e0f2fe; bottom: -20%; right: -10%; animation-duration: 30s; animation-delay: -5s; }.orb-3 { width: 70vw; height: 70vw; background: #fce7f3; top: 30%; left: 30%; animation-duration: 35s; animation-delay: -10s; }.noise-overlay { position: absolute; inset: 0; z-index: -9; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes floatBg { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(8vw, 10vh) scale(1.15); } }
/* ============================================================
   CUSTOM SCROLLBAR & SCROLL PROGRESS BAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }::-webkit-scrollbar-track { background: #f0f4f8; }::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }::-webkit-scrollbar-thumb:hover { background: var(--primary-hover); }.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; background: var(--primary-color); width: 0%; z-index: 9999; border-radius: 0 2px 2px 0; }

/* ============================================================
   BASE BODY TYPOGRAPHY & LAYOUT PRIMITIVES
   ============================================================ */
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; background-color: transparent; -webkit-font-smoothing: antialiased; overflow-x: clip; font-size: 1rem; }.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }.text-center { text-align: center; }
/* ============================================================
   BASE HEADINGS & PARAGRAPH STYLES
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 15px; color: var(--secondary-color); }p { margin-bottom: 15px; font-size: 1rem; }.main-content p { font-size: 1.05rem; line-height: 1.65; font-weight: 500; margin-bottom: 20px; }
/* ============================================================
   WORD-MASK HELPER (FOR READ-ALONG ANIMATION)
   ============================================================ */
.word-mask { display: inline-block; overflow: hidden; padding-bottom: 8px; vertical-align: bottom; }
/* BULLETPROOF HEADING FIX (CSS Transition + Observer) */
/* ============================================================
   GSAP REVEAL HEADINGS (PROGRESSIVE ENHANCEMENT)
   ============================================================ */
.gsap-reveal-heading {    opacity: 0;    transform: translateY(30px);    transition: opacity 0.8s var(--cinematic-curve), transform 0.8s var(--cinematic-curve);}.gsap-reveal-heading.is-visible {    opacity: 1;    transform: translateY(0);}

/* ============================================================
   SECTION TITLE (GRADIENT TEXT)
   ============================================================ */
.section-title {     font-size: 2rem;     margin-bottom: 20px;     border-bottom: 3px solid var(--primary-color);     padding-bottom: 10px;     display: inline-block;     background: linear-gradient(45deg, var(--secondary-color), #14496b);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;}
/* PREMIUM CLIP-PATH IMAGE REVEAL */
/* ============================================================
   CONTENT IMAGE WRAPPER & READ-ALONG TEXT
   ============================================================ */
.content-image-wrapper { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; margin: 25px 0; box-shadow: 0 15px 35px rgba(0,0,0,0.1); display: block; position: relative; outline: 1px solid rgba(255,255,255,0.6); outline-offset: -1px; clip-path: inset(0% 0% 100% 0%); }.content-image-wrapper::after { content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(2,47,70,0.06); }.content-image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.3); will-change: transform; }.read-along-text { font-size: 1.15rem; line-height: 1.7; font-weight: 500; }.read-along-word { opacity: 0.15; transition: color 0.3s ease; }

/* ============================================================
   MODERN SOCIALS ICON ROW
   ============================================================ */
.modern-socials { display: flex; gap: 12px; }.modern-socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1rem; transition: all 0.4s var(--spring-curve); text-decoration: none; position: relative; overflow: hidden; }.modern-socials a::before { content: ''; position: absolute; inset: 0; background: var(--primary-color); transform: translateY(100%); transition: transform 0.4s ease; z-index: -1; }.modern-socials a:hover { color: #ffffff; border-color: transparent; transform: translateY(-4px); box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); }.modern-socials a:hover::before { transform: translateY(0); }.modern-socials a.social-tw:hover::before { background: #000000; }.modern-socials a.social-fb:hover::before { background: #1877f2; }.modern-socials a.social-in:hover::before { background: #0a66c2; }.modern-socials a.social-ig:hover::before { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }.modern-socials a.social-wa:hover::before { background: #25D366; }
/* ============================================================
   MOBILE NAVIGATION PANEL
   ============================================================ */
.mobile-nav-panel .modern-socials { justify-content: center; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,0.07); }.mobile-nav-panel .modern-socials a { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.1); color: var(--secondary-color); }.mobile-nav-panel .modern-socials a:hover { color: #ffffff; border-color: transparent; }        

/* ============================================================
   TOP BAR (CONTACT INFO + SOCIALS)
   ============================================================ */
.top-bar { background-color: var(--secondary-color); color: #ffffff; padding: 12px 0; font-size: 0.95rem; }.top-bar-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }.contact-info { display: flex; gap: 30px; }.contact-info span { display: flex; align-items: center; gap: 8px; font-weight: 500; }        

/* ============================================================
   SITE HEADER & PRIMARY NAVIGATION
   ============================================================ */
.site-header { background-color: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.5); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transform: translateZ(0); }.header-container { display: flex; justify-content: space-between; align-items: center; }.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; }.site-logo-img { height: 45px; width: auto; object-fit: contain; }.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; margin: 0; }.nav-links > li { position: relative; padding: 10px 0; }.nav-links a { color: var(--nav-link-color); text-decoration: none; font-size: 1.05rem; font-weight: 700; position: relative; transition: color 0.3s var(--smooth-curve); display: flex; align-items: center; gap: 5px; }.nav-links > li > a.active { color: var(--primary-color); }.nav-links > li > a::after { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: -5px; left: 0; background-color: var(--primary-color); transform-origin: bottom right; transition: transform 0.25s var(--smooth-curve); }.nav-links > li > a:hover::after { transform: scaleX(1); transform-origin: bottom left; }.nav-links a:hover { color: var(--primary-color); }.nav-chevron { font-size: 0.7em; margin-left: 3px; }.nav-chevron-sub { font-size: 0.7em; margin-top: 5px; }.nav-links .sub-menu { position: absolute; top: 100%; left: 0; min-width: 260px; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-radius: 12px; border: 1px solid rgba(255,255,255,0.5); padding: 10px 0; opacity: 0; visibility: hidden; transition: all 0.3s var(--smooth-curve); transform: translateY(15px); z-index: 1000; display: flex; flex-direction: column; gap: 0; list-style: none; }.nav-links li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }.nav-links .sub-menu li { position: relative; width: 100%; }.nav-links .sub-menu a { padding: 10px 22px; font-size: 0.95rem; font-weight: 600; color: var(--secondary-color); transition: all 0.2s ease; border-left: 3px solid transparent; justify-content: space-between; }.nav-links .sub-menu a:hover, .nav-links .sub-menu a.active { background: rgba(235, 107, 34, 0.05); color: var(--primary-color); border-left: 3px solid var(--primary-color); padding-left: 26px; }.nav-links .sub-menu a::after { display: none; }.nav-links .sub-menu .sub-menu { top: -10px; left: 100%; transform: translateX(15px); }.nav-links .sub-menu li:hover > .sub-menu { transform: translateX(0); }        

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-scene { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 40px 20px; background: radial-gradient(ellipse at 50% 30%, #142338 0%, #060d16 70%); perspective: 1200px; }.tech-grid { position: absolute; inset: -5%; z-index: 0; background-image: linear-gradient(rgba(235, 107, 34, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(235, 107, 34, 0.06) 1px, transparent 1px); background-size: 45px 45px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%); }.mars-horizon { position: absolute; bottom: -30%; right: -10%; width: 80vw; height: 80vw; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(235, 107, 34, 0.1) 0%, transparent 60%); box-shadow: inset -50px -50px 150px rgba(235, 107, 34, 0.04); z-index: 1; pointer-events: none; filter: blur(40px); }.hero-orb-1 { position: absolute; top: 10%; left: 15%; width: 500px; height: 500px; background: #eb6b22; border-radius: 50%; filter: blur(160px); opacity: 0.25; z-index: 1; will-change: transform; }.hero-orb-2 { position: absolute; bottom: 10%; right: 15%; width: 600px; height: 600px; background: #00bcd4; border-radius: 50%; filter: blur(180px); opacity: 0.12; z-index: 1; will-change: transform; }.vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 13, 22, 0.6) 100%); }.noise { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }.particles-container { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }.particle { position: absolute; width: 2px; height: 2px; background: rgba(255, 255, 255, 0.6); border-radius: 50%; box-shadow: 0 0 6px rgba(255, 255, 255, 0.4); animation: float-particle linear infinite; will-change: transform; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float-particle { 0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; } 10% { opacity: 1; transform: translateY(90vh) translateX(10px) scale(1); } 90% { opacity: 1; } 100% { transform: translateY(-10vh) translateX(-10px) scale(0.5); opacity: 0; } }.mouse-glow { position: fixed; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(235, 107, 34, 0.06) 0%, transparent 70%); pointer-events: none; z-index: 2; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s ease; }.mouse-glow.active { opacity: 1; }.hero-card-container { width: 100%; max-width: 950px; display: flex; flex-direction: column; align-items: center; z-index: 10; }
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-glass-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255, 255, 255, 0.25); border-left: 1px solid rgba(255, 255, 255, 0.15); border-radius: 40px; padding: 60px 50px; width: 100%; text-align: center; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 1px 20px rgba(255, 255, 255, 0.03); position: relative; display: flex; flex-direction: column; align-items: center; transform-style: preserve-3d; opacity: 0; animation: card-entrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards; }.hero-glass-card::before { content: ''; position: absolute; inset: -2px; border-radius: inherit; padding: 2px; background: linear-gradient(135deg, rgba(235, 107, 34, 0.4), rgba(0, 188, 212, 0.2), rgba(235, 107, 34, 0.4)); background-size: 300% 300%; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: gradient-shift 10s ease infinite; opacity: 0.6; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }@keyframes card-entrance { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }.card-glare { position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 60%); z-index: 1; pointer-events: none; }
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-glass-card > *:not(.card-glare) { position: relative; z-index: 2; }.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(235, 107, 34, 0.4); padding: 8px 24px; border-radius: 40px; font-size: 0.9rem; font-weight: 700; color: #ffffff; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(235, 107, 34, 0.15); opacity: 0; animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; position: relative; overflow: hidden; }.hero-badge::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transform: translateX(-100%); animation: shimmer 4s infinite 1.5s; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes shimmer { to { transform: translateX(100%); } }.badge-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; box-shadow: 0 0 12px #fff; animation: pulse 2s infinite; }@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.35); } }
/* ============================================================
   GSAP REVEAL HEADINGS (PROGRESSIVE ENHANCEMENT)
   ============================================================ */
.hero-glass-card h1 { font-size: 3.8rem; font-weight: 900; line-height: 1.15; margin-bottom: 15px; letter-spacing: -1px; color: #ffffff; text-shadow: 0 15px 30px rgba(0,0,0,0.6); animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }.hero-glass-card h1 span { background: linear-gradient(135deg, #ff985c, #eb6b22); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 4px 15px rgba(235, 107, 34, 0.3)); position: relative; }.hero-glass-card h1 span::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #eb6b22, transparent); border-radius: 2px; opacity: 0.5; }
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-glass-card p.hero-subtitle { font-size: 1.15rem; color: rgba(255, 255, 255, 0.95); margin-bottom: 30px; max-width: 800px; line-height: 1.6; font-weight: 400; text-shadow: 0 4px 20px rgba(0,0,0,0.8); opacity: 0; animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slide-up { from { transform: translateY(20px); } to { transform: translateY(0); } }.hero-buttons { display: flex; gap: 20px; justify-content: center; align-items: center; margin-bottom: 35px; opacity: 0; animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; }
/* PREMIUM MAGNETIC BUTTONS */.btn-hero-primary, .btn-hero-secondary, .alive-btn { transition: transform 0.3s var(--spring-curve), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; will-change: transform; }.btn-hero-primary { background: #ffffff; color: var(--secondary-color); padding: 16px 45px; border-radius: 40px; font-weight: 800; font-size: 1.1rem; text-decoration: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); position: relative; overflow: hidden; }.btn-hero-primary::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, #eb6b22, #ff985c); opacity: 0; transition: opacity 0.3s ease; }.btn-hero-primary:hover::before { opacity: 1; }.btn-hero-primary:hover { color: #ffffff; box-shadow: 0 15px 40px rgba(235, 107, 34, 0.5); }.btn-hero-primary span { position: relative; z-index: 1; }.btn-hero-secondary { background: rgba(255,255,255,0.05); color: #ffffff; padding: 16px 45px; border-radius: 40px; font-weight: 700; font-size: 1.1rem; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); position: relative; overflow: hidden; }.btn-hero-secondary::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); opacity: 0; transition: opacity 0.3s ease; }.btn-hero-secondary:hover::before { opacity: 1; }.btn-hero-secondary:hover { border-color: #ffffff; box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1); }.btn-hero-secondary span { position: relative; z-index: 1; }.hero-stats { display: flex; gap: 30px; justify-content: center; align-items: center; width: 100%; opacity: 0; animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }.stat-item { display: flex; align-items: center; gap: 10px; color: #ffffff; font-size: 0.95rem; font-weight: 600; background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255,255,255,0.08); padding: 10px 20px; border-radius: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all 0.3s ease; }.stat-item:hover { border-color: rgba(235, 107, 34, 0.4); box-shadow: 0 8px 20px rgba(235, 107, 34, 0.15); transform: translateY(-2px); }.stat-item i { color: var(--primary-color); font-size: 1.2rem; filter: drop-shadow(0 0 8px rgba(235,107,34,0.4)); }.page-layout { display: flex; gap: 40px; padding: 60px 0; align-items: flex-start; }

/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */
.main-content { flex: 2; background: #ffffff; border: 1px solid rgba(226, 232, 240, 0.8); padding: 50px; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); width: 100%; overflow: visible; }.sidebar { flex: 1; position: sticky; top: 120px; height: max-content; align-self: flex-start; z-index: 100; }.career-panels-p1 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0; }
.card-p1 { background: #fff; border-radius: 16px; overflow: hidden; min-height: 170px; box-shadow: 0 6px 24px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); display: flex; }.card-p1:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); border-color: #eb6b22; }.card-p1 .img-side { width: 35%; min-width: 110px; max-width: 150px; position: relative; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }.card-p1:hover .img-side { filter: brightness(1.08) saturate(1.15); transform: scale(1.04); }.card-p1 .img-side::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,26,46,0.0) 50%, rgba(15,26,46,0.35) 100%); opacity: 0.55; transition: opacity 0.5s ease; pointer-events: none; }.card-p1:hover .img-side::after { opacity: 0.85; }.card-p1 .img-side .icon-tag { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: 0 6px 18px rgba(0,0,0,0.2); }.tag-orange { background: #eb6b22; color: #fff; }.tag-blue { background: #3b82f6; color: #fff; }.tag-green { background: #10b981; color: #0f172a; }.tag-yellow { background: #f59e0b; color: #0f172a; }.card-p1 .info-side { flex: 1; padding: 20px 18px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }.card-p1 .info-side .label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 700; margin-bottom: 4px; white-space: nowrap; }.label-orange { color: #eb6b22; } .label-blue { color: #3b82f6; } .label-green { color: #10b981; } .label-yellow { color: #d97706; }.card-p1 .info-side h3 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 5px; line-height: 1.2; }.card-p1 .info-side p { font-size: 0.78rem; color: #64748b; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: all 0.3s ease; }
.card-p1 .info-side p.show-full-text { display: block; -webkit-line-clamp: none; line-clamp: none; overflow: visible; }
/* ============================================================
   READ-MORE BUTTON
   ============================================================ */
.read-more-btn { position: relative; z-index: 10; margin-top: 10px; font-size: 0.72rem; color: #c2410c; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0; outline: none; width: fit-content; transition: color 0.3s ease; pointer-events: auto; }.read-more-btn:hover { color: #9a3412; text-decoration: underline; }

/* ============================================================
   SALARY CARDS GRID
   ============================================================ */
.salary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }.salary-card-r3 { position: relative; height: 350px; border-radius: 20px; overflow: hidden; cursor: pointer; background: #0f1a2e; box-shadow: 0 8px 30px rgba(0,0,0,0.1); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }.salary-card-r3:hover, .salary-card-r3:focus-within { box-shadow: 0 25px 60px rgba(0,0,0,0.25); transform: translateY(-6px); }.salary-card-r3 .sc-bg-img { position: absolute; inset: 0; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0.35; }.salary-card-r3:hover .sc-bg-img, .salary-card-r3:focus-within .sc-bg-img { transform: scale(1.08); filter: brightness(0.15) blur(8px); opacity: 0.15; }.salary-card-r3 .sc-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,26,46,0.3) 0%, rgba(15,26,46,0.7) 60%, rgba(15,26,46,0.95) 100%); z-index: 1; transition: all 0.5s ease; }.salary-card-r3:hover .sc-overlay, .salary-card-r3:focus-within .sc-overlay { background: rgba(15,26,46,0.85); }.sc-default { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 30px 20px 35px; text-align: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }.salary-card-r3:hover .sc-default, .salary-card-r3:focus-within .sc-default { opacity: 0; transform: scale(0.92); }.sc-default .sc-icon-circle { width: 56px; height: 56px; border-radius: 16px; background: rgba(235, 107, 34, 0.2); border: 2px solid rgba(235, 107, 34, 0.4); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #ff985c; margin-bottom: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }.sc-default .sc-job-name { font-size: 1.25rem; font-weight: 800; color: #ffffff; letter-spacing: -0.3px; margin-bottom: 4px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }.sc-default .sc-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; text-shadow: 0 1px 5px rgba(0,0,0,0.4); }.sc-default .sc-hover-hint { margin-top: 12px; font-size: 0.65rem; color: rgba(235,107,34,0.85); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; display: flex; align-items: center; gap: 5px; }.sc-elegant-pop { position: absolute; inset: 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 18px; z-index: 5; transform: scale(0.6); opacity: 0; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }.salary-card-r3:hover .sc-elegant-pop, .salary-card-r3:focus-within .sc-elegant-pop { transform: scale(1); opacity: 1; transition-delay: 0.06s; pointer-events: auto; }.salary-card-r3.active .sc-elegant-pop { transform: scale(1); opacity: 1; pointer-events: auto; }.salary-card-r3.active .sc-default { opacity: 0; transform: scale(0.92); }.salary-card-r3.active .sc-overlay { background: rgba(15,26,46,0.85); }.salary-card-r3.active .sc-bg-img { transform: scale(1.08); filter: brightness(0.15) blur(8px); opacity: 0.15; }.sc-elegant-pop .sc-mini-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #eb6b22, #ff8c4a); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.95rem; margin-bottom: 12px; box-shadow: 0 6px 20px rgba(235,107,34,0.35); }.sc-elegant-pop .sc-role-badge { font-size: 0.65rem; color: #eb6b22; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 700; margin-bottom: 8px; background: #fff5f0; padding: 3px 12px; border-radius: 16px; }.sc-elegant-pop .sc-salary-amount { font-size: 1.9rem; font-weight: 900; color: #0f172a; letter-spacing: -1px; line-height: 1; margin-bottom: 2px; }.sc-elegant-pop .sc-period { font-size: 0.7rem; color: #94a3b8; font-weight: 600; letter-spacing: 1px; margin-bottom: 12px; display: block; }.sc-elegant-pop .sc-separator { width: 30px; height: 2px; background: #eb6b22; border-radius: 1px; margin-bottom: 10px; }.sc-elegant-pop .sc-desc { font-size: 0.8rem; color: #475569; line-height: 1.5; font-weight: 500; }        
.alive-card { background: #ffffff; border-radius: 24px; padding: 40px 30px; position: relative; overflow: visible; border: 1px solid rgba(226, 232, 240, 0.8); box-shadow: 0 15px 35px rgba(0,0,0,0.05); transform-style: preserve-3d; transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform var(--tr-time, 0.6s) var(--cinematic-curve), border-color 0.4s, box-shadow 0.4s, background-color 0.4s; }.alive-card::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,0.6); border-radius: 16px; pointer-events: none; transition: border-color 0.4s var(--cinematic-curve), inset 0.4s var(--cinematic-curve); z-index: 1; transform: translateZ(-1px); }.alive-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(255, 154, 158, 0.12) 0%, rgba(254, 207, 239, 0.12) 99%); opacity: 0; z-index: 0; transition: opacity 0.8s var(--cinematic-curve); transform: translateZ(-2px); }.alive-card:hover { border-color: var(--primary-color); background-color: rgba(255, 255, 255, 0.8); box-shadow: 0 25px 50px rgba(235, 107, 34, 0.15); z-index: 10; }.alive-card:hover::before { opacity: 1; }.alive-card:hover::after { border-color: var(--primary-color); inset: 14px; }.alive-card-header, .alive-card-timeline, .alive-card-footer { position: relative; z-index: 2; transform: translateZ(40px); transform-style: preserve-3d; }.alive-card-header h3 { font-size: 1.6rem; color: var(--secondary-color); font-weight: 800; letter-spacing: 0.5px; margin-bottom: 30px; }.alive-card-timeline { list-style: none; position: relative; margin: 0; padding: 0; }.alive-card-timeline::before { content: ''; position: absolute; left: 20px; top: 10px; bottom: 30px; width: 2px; background: rgba(0,0,0,0.1); transition: background 0.6s var(--cinematic-curve); z-index: 0; }.alive-card:hover .alive-card-timeline::before { background: rgba(235, 107, 34, 0.3); }.timeline-row { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; padding: 10px; border-radius: 12px; position: relative; z-index: 1; background: transparent; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s var(--cinematic-curve), box-shadow 0.4s var(--cinematic-curve); }.timeline-row:last-child { margin-bottom: 0; }.timeline-row:hover { transform: translateX(12px); background-color: rgba(255,255,255,0.9); box-shadow: 0 10px 25px rgba(2, 47, 70, 0.05); }.icon-node { width: 40px; height: 40px; border-radius: 10px; background: #ffffff; border: 1px solid rgba(0,0,0,0.05); color: var(--primary-color); font-size: 1.1rem; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; flex-shrink: 0; transition: all 0.4s var(--cinematic-curve); box-shadow: 0 4px 10px rgba(0,0,0,0.03); }.timeline-row:hover .icon-node { border-color: var(--primary-color); background: var(--primary-color); color: #ffffff; box-shadow: 0 5px 15px rgba(235, 107, 34, 0.2); }.icon-node::before { content: ''; position: absolute; inset: 0; border-radius: 10px; border: 2px solid var(--primary-color); opacity: 0; transform: scale(1); transition: transform 0.6s var(--cinematic-curve), opacity 0.6s var(--cinematic-curve); pointer-events: none; z-index: -1; }.timeline-row:hover .icon-node::before { opacity: 1; transform: scale(1.5); }.meta-wrap { display: flex; flex-direction: column; padding-top: 1px; }.meta-label { font-size: 0.75rem; color: #718096; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; margin-bottom: 2px; transition: color 0.3s ease; }.meta-value { font-size: 1.15rem; color: var(--secondary-color); font-weight: 800; line-height: 1.2; transition: color 0.3s ease; }.alive-card-footer { margin-top: 35px; padding: 0 10px; }.alive-btn { display: block; width: 100%; padding: 16px 25px; background: var(--primary-color); color: #ffffff; border-radius: 30px; text-align: center; font-weight: 700; font-size: 1.1rem; text-decoration: none; border: 2px solid var(--primary-color); box-shadow: 0 6px 20px rgba(235, 107, 34, 0.35); transition: all 0.5s var(--cinematic-curve); }.alive-btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-3px) translateZ(0); box-shadow: 0 12px 30px rgba(235, 107, 34, 0.55); color:#fff; }        

/* ============================================================
   CHECK-LIST (COURSE HIGHLIGHTS)
   ============================================================ */
.check-list { list-style: none; margin: 0; padding: 0; }.check-list li { margin-bottom: 15px; padding-left: 35px; position: relative; font-weight: 500; line-height: 1.6; }.check-list li::before { content: '✓'; position: absolute; left: 0; top: 2px; color: #ffffff; background-color: var(--primary-color); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; font-size: 0.9rem; }.check-list-hidden { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; opacity: 0; }.check-list-hidden.expanded { max-height: 1000px; opacity: 1; overflow: visible; }.check-list-hidden li { transform: translateY(8px); opacity: 0; transition: transform 0.4s var(--smooth-curve), opacity 0.3s ease; }.check-list-hidden.expanded li { opacity: 1; transform: translateY(0); }.check-list-hidden.expanded li:nth-child(1) { transition-delay: 0.1s; }.check-list-hidden.expanded li:nth-child(2) { transition-delay: 0.18s; }.check-list-hidden.expanded li:nth-child(3) { transition-delay: 0.26s; }.check-list-hidden.expanded li:nth-child(4) { transition-delay: 0.34s; }.check-list-hidden.expanded li:nth-child(5) { transition-delay: 0.42s; }.expand-toggle-btn .count-badge { position: absolute; top: -6px; right: -6px; background: #ef4444; color: #fff; font-size: 0.65rem; font-weight: 800; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(239,68,68,0.4); transition: transform 0.3s ease, opacity 0.3s ease; }.expand-toggle-btn.active .count-badge { transform: scale(0); opacity: 0; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes sparkle-pop { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }.expand-toggle-btn::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--primary-color); opacity: 0; pointer-events: none; }.expand-toggle-btn.pulse-once::after { animation: sparkle-pop 0.6s ease-out; }
/* ============================================================
   ACCORDION (CURRICULUM)
   ============================================================ */
.accordion-hidden-weeks { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; opacity: 0; }.accordion-hidden-weeks.expanded { max-height: 3000px; opacity: 1; overflow: visible;}
/* ============================================================
   EXPAND / COLLAPSE TOGGLE GROUP
   ============================================================ */
.expand-toggle-group { transition: opacity 0.2s ease; margin-top: 15px; width: 100%; }.expand-toggle-group.moving { opacity: 0; }.expand-toggle-wrapper { display: flex; justify-content: center; padding: 10px 0 4px; }
/* PREMIUM TOGGLE ICONS (+ to x) */.expand-toggle-btn { display: flex; align-items: center; justify-content: center; background: rgba(235, 107, 34, 0.06); color: var(--primary-color); border: 2px solid rgba(235, 107, 34, 0.25); border-radius: 50%; width: 48px; height: 48px; padding: 0; cursor: pointer; transition: all 0.35s var(--smooth-curve); user-select: none; position: relative; margin: 0 auto; outline: none; }.expand-toggle-btn:hover, .expand-toggle-btn:active { background: var(--primary-color); color: #ffffff; border-color: var(--primary-color); box-shadow: 0 6px 20px rgba(235, 107, 34, 0.3); transform: translateY(-3px) scale(1.08); }.expand-toggle-btn i { font-size: 1.1rem; transition: transform 0.4s var(--smooth-curve); }.expand-toggle-btn.active i { transform: rotate(135deg); }.expand-divider { display: flex; align-items: center; gap: 12px; padding: 0 10px; margin-bottom: 6px; }.expand-divider::before, .expand-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(235,107,34,0.2), transparent); }.expand-divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-color); opacity: 0.4; }
/* ============================================================
   ACCORDION (CURRICULUM)
   ============================================================ */
.accordion { margin-top: 30px; }.accordion-item { background: #ffffff; border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all 0.4s var(--smooth-curve); position: relative; border-left: 5px solid transparent; }.accordion-item.active { border-left: 5px solid var(--primary-color); box-shadow: 0 10px 25px rgba(0,0,0,0.06); transform: scale(1.01); background: #ffffff; z-index: 5; }.accordion-item.active .icon-wrapper { background-color: var(--primary-color); }.accordion-item.active .accordion-icon { transform: rotate(135deg); color: #fff; }.accordion-content-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--smooth-curve); }.accordion-item.active .accordion-content-wrapper { grid-template-rows: 1fr; }.accordion-content { overflow: hidden; }.accordion-inner { padding: 0 25px 20px 25px; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.5s var(--smooth-curve); color: #4a5568; font-weight: 500; }.accordion-item.active .accordion-inner { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }.accordion-inner ul { list-style: disc; padding-left: 20px; margin: 0; }.accordion-inner ul li { margin-bottom: 6px; }.accordion-header { background: none; border: none; width: 100%; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; font-size: 1.2rem; font-weight: 700; color: var(--secondary-color); font-family: inherit; transition: background-color 0.4s ease; z-index: 2; position: relative; }.accordion-header:hover { background-color: rgba(255,255,255,0.9); }.icon-wrapper { width: 36px; height: 36px; border-radius: 50%; background-color: rgba(235, 107, 34, 0.08); display: flex; justify-content: center; align-items: center; transition: all 0.4s var(--smooth-curve); pointer-events: none; }.accordion-icon { font-size: 1.1rem; color: var(--primary-color); transition: transform 0.4s var(--smooth-curve); }        
.instructor-section { margin: 40px 0 30px; padding: 40px; background: linear-gradient(135deg, #ffffff 0%, #fef9f5 100%); border-radius: 20px; border-left: 6px solid var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; overflow: hidden; transition: all 0.5s var(--cinematic-curve); border-top: 1px solid rgba(235,107,34,0.1); border-right: 1px solid rgba(235,107,34,0.1); border-bottom: 1px solid rgba(235,107,34,0.1); }.instructor-section:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(235, 107, 34, 0.15); border-left-width: 12px; }.instructor-shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); transform: skewX(-20deg); transition: left 0.7s ease; pointer-events: none; }.instructor-section:hover .instructor-shine { left: 150%; }.instructor-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }.instructor-header i { color: var(--primary-color); font-size: 1.8rem; transition: transform 0.5s var(--spring-curve); padding: 12px; background: rgba(235,107,34,0.1); border-radius: 12px; margin-bottom: 15px; }.instructor-section:hover .instructor-header i { transform: scale(1.15) rotate(5deg); background: var(--primary-color); color: #fff; }.instructor-header h2 { margin-bottom: 15px; }.instructor-section p { font-size: 1.1rem; line-height: 1.7; font-weight: 500; margin-bottom: 0; color: #4a5568; }.instructor-section strong { color: var(--primary-color); }.bottom-sections-wrapper { position: relative; overflow: hidden; z-index: 1; }
/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { position: relative; height: 100vh; min-height: 750px; display: flex; align-items: center; justify-content: center; z-index: 2; }.faq-container-new { position: absolute; inset: 0; width: 100%; height: 100%; max-width: 1400px; margin: 0 auto; padding: 0; }.faq-center-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 500px; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; text-align: center; text-shadow: 0 4px 20px rgba(255,255,255,0.8); }#faq-interactive-area { width: 100%; height: 100%; position: absolute; inset: 0; pointer-events: auto; }.faq-card-wrapper { position: absolute; cursor: pointer; z-index: 1; transition: transform 0.3s ease; will-change: transform; }.faq-card-content { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 18px 20px; border-radius: 16px; box-shadow: 0 15px 35px rgba(2, 47, 70, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1); width: 260px; display: flex; flex-direction: column; gap: 8px; transition: all 0.6s var(--cinematic-curve); border: 1px solid rgba(255,255,255,0.8); opacity: 0.85; filter: blur(1.5px); transform: scale(0.95); }.faq-card-wrapper.active .faq-card-content, .faq-card-wrapper:focus .faq-card-content { opacity: 1; filter: blur(0px); transform: scale(1.08); box-shadow: 0 30px 60px rgba(235, 107, 34, 0.15), 0 15px 25px rgba(2, 47, 70, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1); border-color: rgba(235, 107, 34, 0.4); background: rgba(255, 255, 255, 0.98); }.faq-q { font-weight: 800; color: var(--secondary-color); font-size: 0.95rem; line-height: 1.3; margin: 0; display: flex; align-items: flex-start; gap: 8px; }.faq-q i { color: var(--primary-color); margin-top: 2px; font-size: 0.9rem; }.faq-a { font-size: 0.85rem; color: #475569; line-height: 1.5; margin: 0; font-weight: 500; }#faq-cw-1 { top: 10%; left: 15%; } #faq-cw-2 { top: 6%; left: 42%; } #faq-cw-3 { top: 12%; left: 68%; } #faq-cw-4 { top: 38%; left: 5%; } #faq-cw-5 { top: 40%; left: 76%; } #faq-cw-6 { top: 70%; left: 12%; } #faq-cw-7 { top: 76%; left: 40%; } #faq-cw-8 { top: 68%; left: 68%; } #faq-cw-9 { top: 52%; left: 22%; } #faq-cw-10 { top: 25%; left: 58%; } .faq-mobile-toggle { display: none; }.faq-hidden-wrapper { display: contents; }        

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background-color: #031019; padding: 70px 0 0; font-size: 0.95rem; color: #a0aec0; overflow: hidden; }.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }.footer-widget h3 { color: #ffffff; font-size: 1.25rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 10px; display: inline-block; }.footer-widget h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary-color); border-radius: 2px; }.footer-links { list-style: none; margin: 0; padding: 0; }.footer-links li { margin-bottom: 12px; }.footer-links a { color: #a0aec0; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }.footer-links a:hover { color: var(--primary-color); transform: translateX(5px); }.footer-links a i { font-size: 0.75rem; color: var(--primary-color); opacity: 0.5; }.footer-about-text { line-height: 1.7; margin-bottom: 25px; }.highlight-contact { display: inline-block; padding: 12px 30px; font-size: 1rem; font-weight: bold; background-color: var(--primary-color); color: #fff; border-radius: 30px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: background-color 0.3s ease, transform 0.3s ease; border: none; }.highlight-contact:hover { background-color: var(--primary-hover); transform: translateY(-3px); }.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }.footer-socials a { width: 42px; height: 42px; font-size: 1.2rem; border-radius: 12px; }        
.scroll-top-btn { position: fixed; right: 23px; bottom: 90px; z-index: 998; width: 50px; height: 50px; border-radius: 50%; background: var(--secondary-color); color: #fff; border: 2px solid rgba(255,255,255,0.1); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform 0.4s var(--spring-curve), opacity 0.4s ease, visibility 0.4s ease, box-shadow 0.4s ease; opacity: 0; pointer-events: none; transform: translateY(20px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }.scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }.scroll-top-btn:hover { background: var(--primary-color); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(235, 107, 34, 0.4); border-color: var(--primary-color); }.scroll-top-btn:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }        

/* ============================================================
   MOBILE NAVIGATION PANEL
   ============================================================ */
.nav-toggle { display: none; background: rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.1); cursor: pointer; width: 48px; height: 48px; border-radius: 12px; align-items: center; justify-content: center; color: var(--secondary-color); padding: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }.nav-toggle:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 2px; }.nav-toggle .bar { display: block; width: 26px; height: 2.5px; background: var(--secondary-color); border-radius: 2px; position: relative; transition: transform 0.35s var(--smooth-curve), opacity 0.25s ease; }.nav-toggle .bar::before, .nav-toggle .bar::after { content: ''; position: absolute; left: 0; width: 26px; height: 2.5px; background: var(--secondary-color); border-radius: 2px; transition: transform 0.35s var(--smooth-curve), top 0.35s var(--smooth-curve); }.nav-toggle .bar::before { top: -8px; } .nav-toggle .bar::after { top: 8px; }.nav-toggle.open .bar { background: transparent; }.nav-toggle.open .bar::before { top: 0; transform: rotate(45deg); }.nav-toggle.open .bar::after { top: 0; transform: rotate(-45deg); }        
.mobile-nav-panel { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(0,0,0,0.06); box-shadow: 0 18px 40px rgba(0,0,0,0.10); padding: 18px 20px 22px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform 0.35s var(--smooth-curve), opacity 0.25s ease; z-index: 999; max-height: calc(100vh - 100px); overflow-y: auto; }.mobile-nav-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }.mnp-close-btn { display: block; width: 100%; text-align: right; background: none; border: none; font-size: 1.5rem; color: var(--secondary-color); cursor: pointer; padding-bottom: 10px; }.mobile-nav-panel .mnp-contact { display: flex; flex-direction: column; gap: 10px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,0.07); }.mobile-nav-panel .mnp-contact a { color: var(--secondary-color); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px; }.mobile-nav-panel .mnp-links { list-style: none; display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 0; }.mobile-nav-panel .mnp-links li a { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px; color: var(--nav-link-color); text-decoration: none; font-weight: 700; font-size: 1.02rem; border-bottom: 1px solid rgba(0,0,0,0.05); transition: color 0.25s ease, padding-left 0.25s ease; }.mobile-nav-panel .mnp-links > li > a:hover, .mobile-nav-panel .mnp-links li a.active { color: var(--primary-color); padding-left: 12px; }.mobile-nav-panel .mnp-links li:last-child > a { border-bottom: 0; }.mobile-nav-panel .mnp-links li.has-sub > a .mobile-toggle { padding: 5px 10px; border-left: 1px solid rgba(0,0,0,0.1); font-size: 0.85rem; transition: transform 0.3s; }.mobile-nav-panel .mnp-links li.has-sub.open > a .mobile-toggle { transform: rotate(180deg); color: var(--primary-color); }.mobile-nav-panel .mnp-links .sub-menu { display: none; list-style: none; padding-left: 15px; border-left: 2px solid rgba(235,107,34,0.2); margin-left: 10px; margin-top: 5px; }.mobile-nav-panel .mnp-links li.has-sub.open > .sub-menu { display: block; }.mobile-nav-panel .mnp-links .sub-menu a { font-size: 0.95rem; font-weight: 600; padding: 8px 6px; }        

/* ============================================================
   FLOATING SNAPSHOT / SIDEBAR WIDGET
   ============================================================ */
.snapshot-fab, .whatsapp-fab { position: fixed; z-index: 998; width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer; align-items: center; justify-content: center; transition: transform 0.3s var(--spring-curve), box-shadow 0.3s ease; color: #fff; }.snapshot-fab { display: none; right: 14px; bottom: 84px; background: var(--primary-color); box-shadow: 0 10px 28px rgba(235,107,34,0.45); font-size: 1.35rem; }
/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-fab { display: inline-flex; right: 20px; bottom: 20px; background: #25D366; box-shadow: 0 10px 28px rgba(37,211,102,0.45); font-size: 1.8rem; text-decoration: none; color: #fff; }
/* ============================================================
   FLOATING SNAPSHOT / SIDEBAR WIDGET
   ============================================================ */
.snapshot-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(235,107,34,0.6); }
/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(37,211,102,0.6); }
/* ============================================================
   FLOATING SNAPSHOT / SIDEBAR WIDGET
   ============================================================ */
.snapshot-fab:focus-visible, .whatsapp-fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }.fab-pulse, .fab-pulse-wa { position: absolute; inset: 0; border-radius: 50%; opacity: 0.7; animation: fabPulse 2.2s infinite ease-out; pointer-events: none; }.fab-pulse { border: 2px solid var(--primary-color); } .fab-pulse-wa { border: 2px solid #25D366; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fabFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
/* ============================================================
   FLOATING SNAPSHOT / SIDEBAR WIDGET
   ============================================================ */
.snapshot-fab:not(:hover), .whatsapp-fab:not(:hover) { animation: fabFloat 3.2s infinite ease-in-out; }
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }        

/* ============================================================
   SNAPSHOT SHEET (BOTTOM DRAWER)
   ============================================================ */
.snapshot-sheet, .whatsapp-sheet { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001; background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }.snapshot-sheet.open, .whatsapp-sheet.open { opacity: 1; pointer-events: auto; }.snapshot-sheet-inner, .whatsapp-sheet-inner { background: #fff; border-radius: 22px 22px 0 0; padding: 14px 18px 28px; margin: 0 auto; max-width: 480px; transform: translateY(100%); transition: transform 0.4s var(--cinematic-curve); max-height: 88vh; overflow-y: auto; box-shadow: 0 -12px 40px rgba(0,0,0,0.2); position: relative; }.snapshot-sheet.open .snapshot-sheet-inner, .whatsapp-sheet.open .whatsapp-sheet-inner { transform: translateY(0); }.snapshot-sheet-handle, .whatsapp-sheet-handle { width: 44px; height: 4px; background: linear-gradient(90deg, #cbd5e1, #94a3b8, #cbd5e1); border-radius: 2px; margin: 0 auto 18px; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }.snapshot-sheet-close, .whatsapp-sheet-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; border: 0; cursor: pointer; color: #475569; font-size: 1rem; display: flex; align-items: center; justify-content: center; z-index: 10; }.snapshot-sheet-close:hover, .whatsapp-sheet-close:hover { background: #e2e8f0; color: #0f172a; }.snapshot-sheet .alive-card, .whatsapp-sheet .alive-card { padding: 22px 18px; border-radius: 14px; background: #fff; border: 1px solid #e2e8f0; box-shadow: none; transform: none; }.snapshot-sheet .alive-card::before, .snapshot-sheet .alive-card::after, .whatsapp-sheet .alive-card::before, .whatsapp-sheet .alive-card::after { display: none; }.snapshot-sheet .alive-card-header h3, .whatsapp-sheet .alive-card-header h3 { font-size: 1.3rem; margin-bottom: 18px; }.snapshot-sheet .timeline-row { margin-bottom: 14px; padding: 6px; }.snapshot-sheet .icon-node { width: 34px; height: 34px; font-size: 0.95rem; }.snapshot-sheet .meta-value { font-size: 0.98rem; }.snapshot-sheet .alive-btn, .whatsapp-sheet .alive-btn { margin-top: 14px; }body.snapshot-sheet-open, body.whatsapp-sheet-open { overflow: hidden; }        
.student-locations-section { margin-top: 30px; padding: 30px 25px; background: linear-gradient(135deg, rgba(235, 107, 34, 0.04) 0%, rgba(255, 255, 255, 0.7) 100%); border: 1px solid rgba(235, 107, 34, 0.15); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px; flex-wrap: wrap; justify-content: center; }.student-locations-section i { font-size: 2rem; color: var(--primary-color); background: rgba(235, 107, 34, 0.1); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 15px; flex-shrink: 0; cursor: pointer; }.student-locations-section p { margin: 0; font-size: 1.05rem; color: var(--secondary-color); font-weight: 500; line-height: 1.7; text-align: center; }.student-locations-section p strong { color: var(--primary-color); font-weight: 700; }        

/* ============================================================
   MAP / LOCATION SECTION
   ============================================================ */
.map-section { padding: 80px 0 60px; position: relative; z-index: 10; }.map-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }.map-heading { text-align: center; margin-bottom: 40px; }.map-subheading { font-size: 1.1rem; color: #4a5568; max-width: 650px; margin: 0 auto; line-height: 1.6; }.map-card { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05); background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }.map-card:hover { transform: translateY(-5px); box-shadow: 0 25px 60px rgba(235,107,34,0.15); }/* MAP JITTER FIX */.map-card iframe { display: block; width: 100%; height: 450px; border: 0; contain: layout paint; }        

/* ============================================================
   REVIEWS SECTION (ELFSIGHT)
   ============================================================ */
.reviews-section { padding: 80px 0; position: relative; z-index: 10; }.reviews-section .reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }.reviews-section .reviews-header { text-align: center; margin-bottom: 50px; }.reviews-section .reviews-header p { margin-top: 12px; font-size: 1.05rem; color: #64748b; max-width: 600px; margin-left: auto; margin-right: auto; }.reviews-widget-wrap { background: #ffffff; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); overflow: hidden; position: relative; padding: 20px; min-height: 400px; }.reviews-section .reviews-google-link { text-align: center; margin-top: 30px; }.reviews-section .reviews-google-link a { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 700; text-decoration: none; font-size: 1rem; transition: all 0.3s var(--smooth-curve); padding: 10px 24px; border-radius: 30px; border: 2px solid var(--primary-color); }.reviews-section .reviews-google-link a:hover { background-color: var(--primary-color); color: #ffffff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(235, 107, 34, 0.3); }
/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {    .aurora-orb, .hero-glass-card::before, .hero-badge::after, .badge-dot, .particle { animation: none; }    .reveal-word { transform: translateY(0%); opacity: 1; }    .content-image { transform: scale(1); }    .top-bar { display: none; }    .site-header { position: relative; z-index: 1000; padding: 12px 0; }    .header-container { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 12px; width: 100%; }    .header-container > .logo-area { flex: 0 1 auto; min-width: 0; }    .header-container > nav { justify-content: flex-end; flex: 0 0 auto; }    .nav-links { display: none; }    .nav-toggle { display: inline-flex; }    .mobile-nav-panel { display: block; z-index: 1001; }    .sidebar { display: none; }    .scroll-top-btn { bottom: 150px; right: 19px; width: 45px; height: 45px; font-size: 1rem; }    .snapshot-fab { display: inline-flex; right: 14px; bottom: 84px; }    .whatsapp-fab { display: inline-flex; right: 14px; bottom: 18px; }    .snapshot-sheet, .whatsapp-sheet { display: block; }    .page-layout { flex-direction: column; }    .career-panels-p1 { grid-template-columns: repeat(2, 1fr); gap: 14px; }    .card-p1 { min-height: 155px; }    .card-p1 .img-side { width: 32%; min-width: 100px; }    .card-p1 .info-side { padding: 16px 14px; }    .card-p1 .info-side h3 { font-size: 1rem; }    .card-p1 .info-side p { font-size: 0.72rem; }    .salary-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }    .salary-card-r3 { height: 320px; }    .faq-section { height: auto; min-height: auto; padding: 70px 20px; display: block; overflow: visible; }    .faq-container-new { position: relative; inset: auto; display: flex; flex-direction: column; padding: 0; max-width: 600px; }    .faq-center-text { position: relative; top: auto; left: auto; transform: none; margin: 0 auto 40px auto; padding: 0; text-shadow: none; text-align: center; }    #faq-interactive-area { position: relative; height: auto; display: flex; flex-direction: column; gap: 16px; }    .faq-card-wrapper { position: relative !important; top: auto !important; left: auto !important; transform: none !important; width: 100%; }    .faq-card-content { width: 100%; opacity: 1; filter: blur(0); transform: scale(1); padding: 24px; border-radius: 20px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%); box-shadow: 0 8px 30px rgba(2, 47, 70, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 1); transition: transform 0.2s ease, background 0.2s ease; }    .faq-q { font-size: 1.05rem; } .faq-q i { font-size: 1.1rem; }    .faq-a { margin-top: 8px; padding-left: 24px; border-left: 2px solid rgba(235, 107, 34, 0.2); }    .faq-card-wrapper:active .faq-card-content { transform: scale(0.97) !important; background: #ffffff; box-shadow: 0 4px 15px rgba(2, 47, 70, 0.04), inset 0 0 0 1px var(--primary-color); }    .faq-mobile-toggle { display: block; }    .faq-hidden-wrapper { display: flex; flex-direction: column; gap: 16px; max-height: 0; overflow: hidden; opacity: 0; grid-column: 1 / -1; transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease; }    .faq-hidden-wrapper.expanded { max-height: 2500px; opacity: 1; overflow: visible; }    .faq-hidden-wrapper .faq-card-wrapper { transform: translateY(20px) !important; opacity: 0; transition: transform 0.5s var(--smooth-curve), opacity 0.4s ease; }    .faq-hidden-wrapper.expanded .faq-card-wrapper { transform: translateY(0) !important; opacity: 1; }    .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(1) { transition-delay: 0.05s; } .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(2) { transition-delay: 0.10s; } .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(3) { transition-delay: 0.15s; } .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(4) { transition-delay: 0.20s; } .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(5) { transition-delay: 0.25s; } .faq-hidden-wrapper.expanded .faq-card-wrapper:nth-child(6) { transition-delay: 0.30s; }    .map-section { padding: 60px 0 40px; }    .map-card iframe { height: 400px; }}@media (max-width: 900px) {    .hero-scene { min-height: auto; padding: 80px 0; perspective: none; }    .hero-glass-card { padding: 40px 30px; border-radius: 24px; }    .hero-glass-card h1 { font-size: 3rem; }    .hero-stats { flex-direction: column; gap: 15px; }    .salary-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }    .salary-card-r3 { height: 340px; }    .hero-buttons { flex-direction: column; width: 100%; }    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }    .reviews-section { padding: 60px 0; }}@media (max-width: 768px) { .footer-bottom { flex-direction: column; text-align: center; } }@media (max-width: 700px) {    .career-panels-p1 { grid-template-columns: 1fr; gap: 12px; }    .card-p1 { min-height: 140px; }    .card-p1 .img-side { width: 35%; min-width: 100px; max-width: 130px; }    .card-p1 .info-side { padding: 16px; }}@media (max-width: 600px) {    .hero-glass-card h1 { font-size: 2.2rem; }    .hero-glass-card { padding: 30px 20px; }    .section-title { font-size: 1.6rem; }    .main-content { padding: 30px 20px; }    .salary-card-r3 { height: 300px; }    .card-p1 { flex-direction: column; min-height: auto; }    .card-p1 .img-side { width: 100%; height: 120px; max-width: none; }    .nav-toggle { width: 44px; height: 44px; }    .student-locations-section { flex-direction: column; text-align: center; }    .map-section { padding: 40px 0 20px; }    .map-card iframe { height: 300px; }    .instructor-section { padding: 25px; }    .instructor-header { flex-direction: column; align-items: flex-start; gap: 10px; }}
/* ============================================================
   ACCESSIBILITY: PREFERS-REDUCED-MOTION
   Disables decorative animations for users who request reduced motion.
   Functional transitions (hover, accordion, sheet open) remain.
   ============================================================ */
@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .martian-aurora-bg, .aurora-orb, .noise-overlay,
    .hero-orb-1, .hero-orb-2, .tech-grid, .mars-horizon,
    .particles-container, .particle, .mouse-glow,
    .hero-glass-card::before, .hero-badge::after,
    .badge-dot, .fab-pulse, .fab-pulse-wa,
    .snapshot-fab:not(:hover), .whatsapp-fab:not(:hover),
    .instructor-shine, .scroll-progress {
        animation: none !important;
    }
    .gsap-reveal-heading,
    .hero-glass-card,
    .hero-badge,
    .hero-glass-card h1,
    .hero-glass-card p.hero-subtitle,
    .hero-buttons,
    .hero-stats,
    .content-image-wrapper,
    .content-image,
    .read-along-word {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        filter: none !important;
    }
}

/* ============================================================
   MOBILE-ONLY FIX: Scroll progress bar visibility
   On desktop the original width:0% behaviour is preserved
   (invisible). On mobile (<=1024px) we use width:100% + scaleX
   so the JS-driven transform actually produces a visible bar.
   ============================================================ */
@media (max-width: 1024px) {
    .scroll-progress {
        width: 100% !important;
        transform: scaleX(0);
        transform-origin: left center;
        will-change: transform;
    }
}
/* ============================================================
   FONT AWESOME 6.5.2 - FONT-DISPLAY OVERRIDE (Lighthouse fix)
   ------------------------------------------------------------
   FA's CSS uses font-display: block, which hides icon text for
   up to 3s before falling back. We override to 'swap' so icons
   render with a fallback font immediately, then snap in once
   the .woff2 files arrive.

   These @font-face rules come AFTER FA's <link> in DOM order
   (web-styles.css <link> is loaded after the FA preload <link>),
   so per CSS Fonts Level 4 spec the last matching @font-face
   wins. Same src URLs as FA's resolved URLs -> browser font
   cache is shared, no duplicate download.
   ============================================================ */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-regular-400.woff2) format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2) format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2) format("woff2");
}
