:root {
    --primary: #2563eb;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #0f172a;
    --text-gray: #64748b;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: #334155;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--dark);
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* ================= TOP TICKER ================= */
.top-ticker {
    background: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
}
.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}
.ticker-content span { margin-right: 50px; }
.ticker-content i { color: var(--accent); margin-right: 8px; }

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* ================= HEADER ================= */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.logo i { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.cta-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}
.cta-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
    color: white;
}
.cta-btn::after { display: none !important; }

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    padding: 80px 0 120px;
    overflow: hidden;
}

/* Abstract shapes */
.blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Flex ratios adjusted for broader image (40% Text / 60% Visual) */
.hero-text { flex: 0.8; position: relative; z-index: 2; }
.hero-visual { flex: 1.2; position: relative; z-index: 2; }

@media (max-width: 968px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text, .hero-visual { flex: auto; width: 100%; }
    .hero-stats-row { justify-content: center; }
}

.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--dark); }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }

.cta-btn {
    background: var(--primary); color: white; border-radius: 50px;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    display: inline-block; font-weight: 600; padding: 15px 40px; font-size: 16px;
    text-decoration: none; transition: 0.3s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5); }

.hero-stats-row { display: flex; gap: 40px; margin-top: 50px; border-top: 1px solid #e2e8f0; padding-top: 30px; }
.hero-stat h3 { font-size: 2rem; color: var(--dark); margin: 0; font-weight: 800; }
.hero-stat p { font-size: 0.9rem; color: var(--text-gray); margin: 0; }
.hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 25px 20px;
    color: white;
    transform: translateY(20px);
    transition: 0.5s 0.3s; /* Delay text slightly */
    opacity: 0;
}

.slide.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.slide-caption h3 { 
    color: var(--accent); 
    margin-bottom: 5px; 
    font-size: 22px; 
    font-weight: 700;
    font-family: 'Merriweather', serif;
}
.slide-caption p { 
    font-size: 14px; 
    opacity: 0.9; 
    font-family: 'Poppins', sans-serif;
}

/* WAVE DIVIDER */
.custom-shape-divider-bottom-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.custom-shape-divider-bottom-1 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
}
.custom-shape-divider-bottom-1 .shape-fill {
    fill: var(--light);
}

/* ================= UPDATES & NOTICE SECTION ================= */
.updates-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Floating overlap effect */
    padding-bottom: 60px;
}

.updates-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Notice Board Card */
.notice-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary);
    overflow: hidden;
}

.notice-header {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notice-header h3 { font-size: 20px; color: var(--primary); margin: 0; }
.notice-header i { color: var(--accent); }

.notice-list {
    height: 250px;
    overflow-y: auto;
    padding: 0;
}
/* Custom Scrollbar */
.notice-list::-webkit-scrollbar { width: 5px; }
.notice-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }

.notice-item {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f8fafc;
    transition: 0.2s;
}
.notice-item:hover { background: #f8fafc; }

.notice-date {
    background: #eff6ff;
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 65px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.notice-date span { font-size: 16px; font-weight: 800; }

.notice-content h4 { font-size: 15px; margin-bottom: 4px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.notice-content p { font-size: 13px; color: #64748b; margin: 0; }
.new-badge { 
    background: #ef4444; color: white; padding: 2px 6px; border-radius: 4px; 
    font-size: 10px; margin-left: 8px; vertical-align: middle; 
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }

/* Batch Alert Card */
.batch-card {
    background: linear-gradient(145deg, var(--primary), #1e293b);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 30px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.batch-icon {
    width: 60px; height: 60px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--accent); margin-bottom: 20px;
}

.batch-card h3 { color: white; font-size: 22px; margin-bottom: 10px; }
.batch-card p { color: #cbd5e1; font-size: 14px; margin-bottom: 25px; }
.batch-btn {
    background: var(--accent); color: var(--dark); padding: 10px 25px;
    border-radius: 50px; font-weight: 700; font-size: 14px; width: 100%;
}
.batch-btn:hover { background: white; }


/* ================= ABOUT SECTION ================= */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
}

.badge-icon {
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.about-content h3 { font-size: 28px; margin-bottom: 20px; }
.about-content p { line-height: 1.8; color: #64748b; margin-bottom: 20px; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}
.check-list i { color: var(--accent); }

/* ================= COURSES ================= */
.bg-white { background: white; }

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary);
    transition: 0.3s;
    z-index: 2;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.course-card:hover::before { height: 100%; opacity: 0.03; }

.icon-box {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.course-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.course-card h3 { font-size: 22px; margin-bottom: 10px; }
.course-card p { color: #64748b; margin-bottom: 25px; line-height: 1.6; }

.course-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.course-link:hover { color: var(--accent); gap: 12px; }

/* ================= REVIEWS / STATS ================= */
.dark-section {
    background: var(--dark);
    color: white;
    position: relative;
}

.dark-section h2, .dark-section h3 { color: white; }
.dark-section span { color: var(--accent); }
.dark-section p { color: #94a3b8; }

.stats-review-wrapper {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 60px;
}

.progress-bars {
    margin-top: 30px;
}
.bar-item { margin-bottom: 20px; }
.bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.bar-bg { background: rgba(255,255,255,0.1); height: 8px; border-radius: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 10px; }

.review-slider-container {
    overflow: hidden;
    position: relative;
}

.review-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.stars { color: var(--accent); margin-bottom: 15px; font-size: 12px; }
.review-text { font-style: italic; opacity: 0.9; margin-bottom: 20px; font-size: 15px; line-height: 1.6; }

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.reviewer-info h4 { font-size: 16px; margin: 0; color: white; }
.reviewer-info small { color: #94a3b8; font-family: 'Poppins'; }

/* ================= FOOTER ================= */
footer {
    background: #0b1120;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 22px;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}
.footer-desc { font-size: 14px; line-height: 1.6; opacity: 0.7; margin-bottom: 20px; }

.footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cbd5e1; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}
.social-icons a:hover { background: var(--accent); }

.copyright {
    background: #000;
    color: #ccc;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.copyright a {
    color: #00bfff;        /* Light blue */
    text-decoration: none;
    font-weight: 500;
}

.copyright a:hover {
    color: #ffffff;        /* White on hover */
    text-decoration: underline;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 40px; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-stats-row { justify-content: center; }
    .image-stack { display: none; }
    
    .updates-grid, .about-grid, .stats-review-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    .updates-section { margin-top: 0; padding-top: 40px; }
    
    .nav-links { display: none; }
    .logo-box span { font-size: 20px; }
    
    .about-img-box { order: -1; margin-bottom: 30px; }
}
       :root {
            --primary: #1a237e;
            --secondary: #303f9f;
            --accent: #ffd600;
            --text-light: #f5f5f5;
            --text-dark: #212121;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* TOP TICKER */
        .top-ticker {
            background: var(--accent);
            color: var(--primary);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 700;
            font-size: 0.85rem;
            border-bottom: 2px solid rgba(0,0,0,0.05);
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 35s linear infinite;
            padding-left: 100%;
        }

        .ticker-content span {
            margin-right: 60px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* NAVBAR */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Merriweather', serif;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        /* Nav Menu */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 0;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        /* DROPDOWN LOGIC */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: var(--shadow);
            list-style: none;
            min-width: 180px;
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1001;
            border-top: 3px solid var(--primary);
        }

        /* Show Dropdown on Hover */
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            display: flex;
            font-weight: 500;
            color: #444;
            border: none;
            font-size: 0.85rem;
        }

        .dropdown-menu a i {
            width: 20px;
            color: var(--secondary);
        }

        .dropdown-menu a:hover {
            background: var(--bg-alt);
            color: var(--primary);
            padding-left: 25px;
        }

        .cta-btn {
            background: var(--primary);
            color: white !important;
            padding: 10px 22px !important;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700 !important;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2);
        }

        .cta-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(26, 35, 126, 0.3);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* HERO SLIDER */
        .slider {
            height: 450px;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0; transition: opacity 1.5s ease-in-out;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            color: white; text-align: center; padding: 20px;
        }

        .slide.active { opacity: 1; }
        
        .slide h1 {
            font-family: 'Merriweather', serif;
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .slide p {
            font-size: 1.2rem;
            max-width: 700px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }

        .slide:nth-child(1) { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1509228468518-180dd48a5793?auto=format&fit=crop&w=1350&q=80') center/cover; }
        .slide:nth-child(2) { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?auto=format&fit=crop&w=1350&q=80') center/cover; }

        /* FOOTER */
        footer {
            background: var(--primary);
            color: var(--text-light);
            padding: 60px 0 20px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-family: 'Merriweather', serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .footer-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            color: var(--text-light);
            background: rgba(255,255,255,0.1);
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            opacity: 0.8;
            transition: 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-links i {
            color: var(--accent);
            margin-top: 3px;
        }

        .footer-map {
            border-radius: 12px;
            overflow: hidden;
            height: 220px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 40px;
                transition: 0.4s;
                box-shadow: 10px 0 20px rgba(0,0,0,0.1);
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li { width: 100%; }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none; /* Toggle via JS if needed, or just show always in mobile */
            }

            .nav-links li:hover .dropdown-menu {
                display: block;
            }

            .menu-toggle {
                display: block;
            }

            .slide h1 { font-size: 2rem; }
        }
