/* ============================================
   SLMT Technology – AI VIBE CODING Program
   Premium EdTech Startup Design System
   Inspired by Stripe + Framer + AI SaaS
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Core Palette */
    --bg-primary: #050816;
    --bg-secondary: #080c20;
    --bg-tertiary: #0b1130;
    --bg-card: rgba(12, 17, 40, 0.65);

    /* Text */
    --text-primary: #f0f2f8;
    --text-secondary: #a0a8c4;
    --text-muted: #5c6484;
    --text-bright: #ffffff;

    /* Accent Colors */
    --neon-cyan: #00e5ff;
    --neon-purple: #b14aed;
    --neon-pink: #f637ec;
    --neon-blue: #4361ee;
    --accent-green: #00e676;
    --accent-amber: #ffab00;

    /* Gradients */
    --gradient-hero: linear-gradient(160deg, #050816 0%, #0d0a2e 30%, #15083a 50%, #0a0d24 70%, #050816 100%);
    --gradient-accent: linear-gradient(135deg, #00e5ff, #b14aed);
    --gradient-button: linear-gradient(135deg, #b14aed 0%, #f637ec 100%);
    --gradient-button-hover: linear-gradient(135deg, #c55ff5 0%, #ff5ef5 100%);
    --gradient-card-border: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(177, 74, 237, 0.25));
    --gradient-section: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    --gradient-text-glow: linear-gradient(135deg, #00e5ff 0%, #b14aed 40%, #f637ec 70%, #00e5ff 100%);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(177, 74, 237, 0.35);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.35);
    --shadow-glow-cyan: 0 0 30px rgba(0, 229, 255, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(177, 74, 237, 0.2);
    --shadow-glow-pink: 0 0 30px rgba(246, 55, 236, 0.15);
    --shadow-button: 0 4px 25px rgba(177, 74, 237, 0.35);
    --shadow-button-hover: 0 8px 40px rgba(177, 74, 237, 0.55);

    /* Spacing & Sizing */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 50px;
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Typography */
    --font-primary: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(177, 74, 237, 0.3);
    color: #fff;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Base --- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(177, 74, 237, 0.08);
    border: 1px solid rgba(177, 74, 237, 0.2);
    border-radius: var(--radius-xl);
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-bright);
    letter-spacing: -0.5px;
}

.section-header h2 .gradient-text {
    background: var(--gradient-text-glow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section divider glow line */
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    margin: 0 auto 24px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

/* ╔═══════════════════════════════════════╗
   ║          NAVBAR                       ║
   ╚═══════════════════════════════════════╝ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 8, 22, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.nav-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--bg-primary);
    letter-spacing: -0.5px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.nav-logo .logo-text {
    color: var(--text-bright);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--text-bright);
    background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
    padding: 10px 28px !important;
    background: var(--gradient-button) !important;
    border-radius: var(--radius-xl) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-button);
    animation: cta-pulse 3s ease-in-out infinite;
}

.nav-cta:hover {
    box-shadow: var(--shadow-button-hover) !important;
    transform: translateY(-2px);
}

@keyframes cta-pulse {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(177, 74, 237, 0.35);
    }

    50% {
        box-shadow: 0 4px 35px rgba(177, 74, 237, 0.55), 0 0 60px rgba(177, 74, 237, 0.15);
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ╔═══════════════════════════════════════╗
   ║          HERO SECTION                 ║
   ╚═══════════════════════════════════════╝ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Ambient light blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(177, 74, 237, 0.15);
    top: -150px;
    right: -100px;
    animation: blob-float 12s ease-in-out infinite;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 229, 255, 0.1);
    bottom: -100px;
    left: -150px;
    animation: blob-float 15s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 350px;
    height: 350px;
    background: rgba(246, 55, 236, 0.08);
    top: 40%;
    left: 50%;
    animation: blob-float 10s ease-in-out infinite 3s;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 25px) scale(0.95);
    }
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 880px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(177, 74, 237, 0.08);
    border: 1px solid rgba(177, 74, 237, 0.25);
    border-radius: var(--radius-xl);
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
    animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 .gradient-text {
    background: var(--gradient-text-glow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    text-shadow: none;
    display: inline-block;
    position: relative;
}

/* Soft glow behind gradient text */
.hero h1 .gradient-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-text-glow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.4;
    z-index: -1;
    animation: shimmer 4s linear infinite;
}

.hero h1 .line-2 {
    display: block;
    font-size: 0.65em;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: var(--text-secondary);
}

.hero-price .price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffab00, #f637ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-price .price-amount::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ffab00, #f637ec);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(246, 55, 236, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-button);
    color: #fff;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-button-hover);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

/* Shimmer sweep on primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-cyan);
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.8s ease 0.7s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ╔═══════════════════════════════════════╗
   ║          GLASS CARD SYSTEM            ║
   ╚═══════════════════════════════════════╝ */

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow on hover */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0), rgba(177, 74, 237, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(177, 74, 237, 0.3));
}

/* Shimmer sweep */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.glass-card:hover::after {
    left: 150%;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), var(--shadow-glow-purple);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
    position: relative;
}

.card-icon.cyan {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--neon-cyan);
}

.card-icon.purple {
    background: rgba(177, 74, 237, 0.08);
    border: 1px solid rgba(177, 74, 237, 0.2);
    color: var(--neon-purple);
}

.card-icon.pink {
    background: rgba(246, 55, 236, 0.08);
    border: 1px solid rgba(246, 55, 236, 0.2);
    color: var(--neon-pink);
}

.card-icon.green {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent-green);
}

.card-icon.amber {
    background: rgba(255, 171, 0, 0.08);
    border: 1px solid rgba(255, 171, 0, 0.2);
    color: var(--accent-amber);
}

/* Soft glow behind icon */
.card-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: inherit;
    filter: blur(16px);
    opacity: 0.4;
    z-index: -1;
}

.glass-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-bright);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ╔═══════════════════════════════════════╗
   ║          ABOUT SECTION                ║
   ╚═══════════════════════════════════════╝ */

#about {
    background: var(--gradient-section);
    position: relative;
}

/* Ambient blob for about */
#about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(0, 229, 255, 0.04);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

/* ╔═══════════════════════════════════════╗
   ║          COURSE STRUCTURE             ║
   ╚═══════════════════════════════════════╝ */

.day-card {
    padding-left: 20px;
    border-left: 3px solid transparent;
    border-image: var(--gradient-accent) 1;
    transition: all 0.5s ease;
}

.day-card:hover {
    border-image: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink)) 1;
}

.day-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Course Divider */
.course-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.course-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.course-divider span {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    padding: 12px 32px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-cyan);
    letter-spacing: 0.5px;
}

.recorded-courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.recorded-card {
    text-align: center;
}

.recorded-card .card-icon {
    margin: 0 auto 22px auto;
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
}

/* ╔═══════════════════════════════════════╗
   ║          INTERNSHIP                   ║
   ╚═══════════════════════════════════════╝ */

#internship {
    background: var(--gradient-section);
    position: relative;
}

#internship::after {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 450px;
    height: 450px;
    background: rgba(177, 74, 237, 0.04);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.intern-card {
    text-align: center;
}

.intern-card .card-icon {
    margin: 0 auto 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ╔═══════════════════════════════════════╗
   ║          SKILLS                       ║
   ╚═══════════════════════════════════════╝ */

.skill-card {
    text-align: center;
    padding: 40px 20px;
}

.skill-card .card-icon {
    margin: 0 auto 22px;
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    border-radius: 50%;
}

.skill-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.skill-card p {
    font-size: 0.85rem;
}

/* ╔═══════════════════════════════════════╗
   ║          CERTIFICATION                ║
   ╚═══════════════════════════════════════╝ */

#certification {
    background: var(--gradient-section);
}

.cert-card {
    text-align: center;
    padding: 44px 32px;
}

.cert-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.08), rgba(246, 55, 236, 0.08));
    border: 1.5px solid rgba(255, 171, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-amber);
    position: relative;
    transition: all 0.4s ease;
}

.cert-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.05), rgba(246, 55, 236, 0.05));
    filter: blur(20px);
    z-index: -1;
}

.cert-card:hover .cert-icon {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 171, 0, 0.15);
}

/* ╔═══════════════════════════════════════╗
   ║          REGISTER CTA                 ║
   ╚═══════════════════════════════════════╝ */

#register {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Large ambient blobs */
#register .reg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

#register .reg-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(177, 74, 237, 0.1);
    top: -100px;
    right: -100px;
}

#register .reg-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 229, 255, 0.06);
    bottom: -80px;
    left: -80px;
}

.register-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.register-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.register-content h2 .gradient-text {
    background: var(--gradient-text-glow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.register-content>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Price display */
.register-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 36px;
    color: var(--text-secondary);
}

.register-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffab00, #f637ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: price-glow 3s ease-in-out infinite;
}

@keyframes price-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(246, 55, 236, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(246, 55, 236, 0.5));
    }
}

/* Limited offer badge */
.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: rgba(255, 171, 0, 0.1);
    border: 1px solid rgba(255, 171, 0, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-amber);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 171, 0, 0);
    }
}

/* Feature checklist */
.register-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.register-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.register-features li .check {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Big Register button */
.btn-register {
    padding: 20px 56px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-button);
    color: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-button);
    animation: register-glow 3s ease-in-out infinite;
    letter-spacing: 0.3px;
}

.btn-register:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 50px rgba(177, 74, 237, 0.6);
    background: var(--gradient-button-hover);
}

@keyframes register-glow {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(177, 74, 237, 0.35);
    }

    50% {
        box-shadow: 0 6px 45px rgba(177, 74, 237, 0.6), 0 0 80px rgba(177, 74, 237, 0.15);
    }
}

.register-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ╔═══════════════════════════════════════╗
   ║          CONTACT                      ║
   ╚═══════════════════════════════════════╝ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
}

.contact-card .card-icon {
    margin: 0 auto 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.4rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--neon-cyan);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--neon-purple);
}

/* ╔═══════════════════════════════════════╗
   ║          FOOTER                       ║
   ╚═══════════════════════════════════════╝ */

.footer {
    background: rgba(3, 5, 12, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 56px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover {
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ╔═══════════════════════════════════════╗
   ║        SCROLL REVEAL ANIMATIONS       ║
   ╚═══════════════════════════════════════╝ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.stagger>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.12s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.19s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.26s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.33s;
}

.stagger>*:nth-child(6) {
    transition-delay: 0.40s;
}

.stagger>*:nth-child(7) {
    transition-delay: 0.47s;
}

.stagger>*:nth-child(8) {
    transition-delay: 0.54s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ╔═══════════════════════════════════════╗
   ║          FLOATING ELEMENTS            ║
   ╚═══════════════════════════════════════╝ */

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-button);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: var(--shadow-button);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-button-hover);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    padding: 0;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.nav-overlay.open {
    display: block;
}

/* ╔═══════════════════════════════════════╗
   ║       GOOGLE FORM POPUP MODAL         ║
   ╚═══════════════════════════════════════╝ */

.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: modalFadeIn 0.35s ease;
}

.form-modal-overlay.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 90vh;
    max-height: 850px;
    background: var(--bg-secondary);
    border: 1px solid rgba(177, 74, 237, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(177, 74, 237, 0.1);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 8, 22, 0.7);
    flex-shrink: 0;
}

.form-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-modal-header h3 .modal-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--bg-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-modal-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-modal-close:hover {
    background: rgba(246, 55, 236, 0.1);
    border-color: rgba(246, 55, 236, 0.3);
    color: var(--neon-pink);
}

.form-modal-body {
    flex: 1;
    overflow: hidden;
}

.form-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

/* Open in new tab link */
.form-modal-footer {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 8, 22, 0.7);
    text-align: center;
    flex-shrink: 0;
}

.form-modal-footer a {
    color: var(--neon-cyan);
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-modal-footer a:hover {
    color: var(--neon-purple);
}

/* ╔═══════════════════════════════════════╗
   ║     MOBILE STICKY BOTTOM CTA          ║
   ╚═══════════════════════════════════════╝ */

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    padding: 12px 16px;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(177, 74, 237, 0.15);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.mobile-cta-bar .mobile-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-cta-bar .cta-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-bright);
    line-height: 1.2;
}

.mobile-cta-bar .cta-price .old-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-cta-bar .cta-price .price-val {
    background: linear-gradient(135deg, #ffab00, #f637ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-cta-bar .btn-mobile-cta {
    flex-shrink: 0;
    padding: 14px 28px;
    background: var(--gradient-button);
    color: #fff;
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-cta-bar .btn-mobile-cta:active {
    transform: scale(0.97);
}

/* ╔═══════════════════════════════════════╗
   ║          RESPONSIVE — MOBILE FIRST    ║
   ╚═══════════════════════════════════════╝ */

@media (max-width: 1024px) {

    .grid-4,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .register-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Navbar mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        padding: 48px 28px;
        gap: 4px;
        transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 20px;
        border-radius: var(--radius-md);
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo .logo-text {
        font-size: 1.1rem;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .hero h1 .line-2 {
        font-size: 0.68em;
        margin-top: 6px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 24px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .hero-price {
        font-size: 1.15rem;
        margin-bottom: 28px;
    }

    .hero-price .price-amount {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 16px;
    }

    /* Stats mobile */
    .stats-row {
        gap: 16px;
        margin-top: 40px;
        padding-top: 28px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-eyebrow {
        font-size: 0.7rem;
        padding: 5px 16px;
    }

    /* Grids single column */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .recorded-courses,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Cards mobile */
    .glass-card {
        padding: 28px 22px;
        border-radius: var(--radius-md);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .glass-card h3 {
        font-size: 1.05rem;
    }

    .glass-card p {
        font-size: 0.88rem;
    }

    /* Day cards */
    .day-badge {
        font-size: 0.68rem;
        padding: 3px 14px;
    }

    /* Course divider */
    .course-divider {
        margin: 40px 0 28px;
    }

    .course-divider span {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    /* Internship */
    .intern-card .card-icon {
        width: 54px;
        height: 54px;
    }

    /* Skills */
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-card {
        padding: 28px 16px;
    }

    .skill-card .card-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }

    /* Certification */
    .cert-card {
        padding: 32px 24px;
    }

    .cert-icon {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }

    /* Register */
    #register {
        padding: 80px 0;
    }

    .register-content h2 {
        font-size: 1.9rem;
    }

    .register-price {
        font-size: 1.1rem;
    }

    .register-price .amount {
        font-size: 2.6rem;
    }

    .limited-badge {
        font-size: 0.7rem;
    }

    .register-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .register-features li {
        font-size: 0.88rem;
    }

    .btn-register {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1.05rem;
    }

    /* Contact */
    .contact-card {
        padding: 28px 20px;
    }

    .contact-card .card-icon {
        width: 52px;
        height: 52px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .social-links a {
        width: 42px;
        height: 42px;
    }

    /* Floating buttons — move up for bottom CTA bar */
    .whatsapp-float,
    .scroll-top {
        bottom: 80px;
    }

    /* Show mobile CTA bar */
    .mobile-cta-bar {
        display: block;
    }

    /* Hide hero blobs on mobile for performance */
    .hero-blob-3 {
        display: none;
    }

    /* Form modal fullscreen on mobile */
    .form-modal-overlay {
        padding: 0;
    }

    .form-modal {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
    }

    .form-modal-header {
        padding: 14px 16px;
    }

    .form-modal-header h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h1 .line-2 {
        font-size: 0.62em;
    }

    .hero-price .price-amount {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.55rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .register-content h2 {
        font-size: 1.6rem;
    }

    .register-price .amount {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 24px 18px;
    }

    .btn {
        padding: 15px 22px;
        font-size: 0.92rem;
    }

    .grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Safe area padding for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-cta-bar {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}