@font-face {
    font-family: 'Jameel Noori Nastaleeq';
    src: url('https://cdn.jsdelivr.net/gh/font-library/jameel-noori-nastaleeq@master/JameelNooriNastaleeq.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Weborank Brand Palette — Sky Blue & Navy (matches logo) */
    --primary: #0ea5e9;        /* Sky Blue — main brand color */
    --secondary: #38bdf8;      /* Light Cyan Blue */
    --accent-pink: #0284c7;    /* Deep Ocean Blue */
    --accent-red: #06b6d4;     /* Cyan Teal */
    --bg-dark: #f0f9ff;        /* Light sky tint background */
    --bg-card: #ffffff;
    --text-main: #0f172a;      /* Dark Navy text */
    --text-muted: #475569;
    --glass: rgba(14, 165, 233, 0.06);
    --glass-border: rgba(14, 165, 233, 0.15);
    --gradient-tech: linear-gradient(135deg, #0ea5e9, #3b82f6);
    --gradient-success: linear-gradient(135deg, #38bdf8, #06b6d4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
    --bg-dark: #05070a;
    --bg-card: #0d1117;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(168, 85, 247, 0.1);
    --glass-border: rgba(168, 85, 247, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; transition: background 0.5s ease; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.4s; border: none; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.btn-primary { background: var(--gradient-tech); color: white; box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3); }
.btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 30px rgba(236, 72, 153, 0.4); }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.gradient-text { background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-alt { background: var(--gradient-success); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Topbar Mastery */
.topbar { background: #e0f2fe; padding: 10px 0; font-size: 12px; border-bottom: 2px solid #bae6fd; color: #0c4a6e; font-weight: 700; letter-spacing: 0.3px; }
.topbar-content { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 8px; }
.topbar-left i { font-size: 14px; }
.topbar-nav { display: flex; gap: 15px; align-items: center; }
.topbar-right a { font-weight: 800; transition: 0.3s; }

/* Navigation */
header { position: sticky; top: 0; z-index: 1000; background: var(--bg-card); border-bottom: 1px solid var(--glass-border); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; min-height: 80px; }
.logo { font-size: 30px; font-weight: 900; letter-spacing: -2px; display: flex; align-items: center; }
.logo img { height: 70px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 20px; align-items: center; flex-grow: 1; justify-content: center; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }
.whatsapp-btn-nav:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); opacity: 1 !important; }

/* Dropdowns */
.nav-links li { position: relative; }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 16px; padding: 15px 0; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(15px); transition: 0.3s; box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 1100; }
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 12px 25px; display: block; font-size: 14px; }
.dropdown a:hover { background: var(--glass); color: var(--primary); padding-left: 30px; }

/* News Ticker */
.news-ticker { background: var(--bg-dark); padding: 14px 0; overflow: hidden; white-space: nowrap; border-bottom: 2px solid var(--primary); }
.ticker-content { display: inline-block; animation: ticker 45s linear infinite; }
.ticker-item { display: inline-block; padding: 0 50px; font-weight: 700; color: var(--text-main); text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }
.ticker-item i { color: var(--primary); margin-right: 10px; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(-45deg, #e0f2fe, #f3e8ff, #a5f3fc, #fae8ff, #e0f2fe);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
}
body.dark-mode .hero {
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #0c4a6e, #311042, #0f172a);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}
.hero h1 { font-size: clamp(50px, 10vw, 95px); line-height: 0.9; margin-bottom: 25px; font-weight: 900; letter-spacing: -4px; color: var(--text-main); }
.hero p { font-size: 22px; color: var(--text-muted); max-width: 750px; margin: 0 auto 35px; font-weight: 500; }

/* Responsive Hero 2-Column Grid */
.hero-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    margin-top: 60px; 
    text-align: left;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
}

/* Responsive Working Process Grid */
.process-grid {
    margin-top: 80px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px; 
    align-items: center;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Grid Cards */
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; margin-top: 70px; }
.card { background: var(--bg-card); padding: 55px; border-radius: 32px; border: 1px solid var(--glass-border); transition: var(--transition); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-15px) scale(1.02); border-color: var(--primary); box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15); }
body.dark-mode .card:hover { box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3); }
.card i { background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 30px; display: inline-block; }
.card h3 { font-size: 26px; margin-bottom: 15px; }

/* Stats */
.stats-section { background: #fff; color: var(--text-main); padding: 80px 0; border-top: 4px solid var(--secondary); border-bottom: 4px solid var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; text-align: center; }
.stat-item h3 { font-size: 56px; margin-bottom: 10px; font-weight: 900; }
.stat-item p { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--text-muted); font-size: 14px; }

/* Colorful Highlights */
.pink-glow { color: var(--accent-pink); text-shadow: 0 0 10px rgba(236, 72, 153, 0.3); }
.green-glow { color: var(--secondary); text-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }
.purple-glow { color: var(--primary); text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }
.red-glow { color: var(--accent-red); text-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }

/* Contact Section */
.contact-info-card { background: var(--gradient-tech); }
.contact-info-card h3 { font-size: 32px; font-weight: 800; }

/* FAQ */
.faq-item.active { border-color: var(--primary); box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1); }

/* Footer (Strong & Dark) */
footer { background: #0c1a2e; color: #fff; padding: 120px 0 60px; border-top: 4px solid var(--primary); position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--gradient-tech); }
footer .logo { font-size: 32px; color: #fff; margin-bottom: 25px; display: block; }
footer p { color: #94a3b8; font-size: 15px; line-height: 1.8; margin-bottom: 25px; }
footer h4 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 30px; border-left: 3px solid var(--primary); padding-left: 15px; }
footer ul li a { color: #94a3b8; font-size: 14px; transition: 0.3s; display: flex; align-items: center; gap: 10px; padding: 8px 0; }
footer ul li a i { font-size: 12px; color: var(--primary); opacity: 0.5; transition: 0.3s; }
footer ul li a:hover { color: #fff; transform: translateX(5px); }
footer ul li a:hover i { opacity: 1; transform: scale(1.2); }
.footer-bottom { text-align: center; padding-top: 60px; margin-top: 80px; border-top: 1px solid rgba(255,255,255,0.05); color: #64748b; font-size: 13px; letter-spacing: 1px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; transition: 0.4s; }
.social-links a:hover { background: var(--gradient-tech); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3); }
.footer-contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #94a3b8; font-size: 14px; }
.footer-contact-item i { width: 35px; height: 35px; background: rgba(168, 85, 247, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); }

.partners-section { 
    background: #fff; 
    padding: 60px 0; 
    border-top: 1px solid var(--glass-border); 
    border-bottom: 1px solid var(--glass-border); 
}
.tech-badges-grid {
    display: flex; 
    justify-content: center; 
    gap: 16px; 
    flex-wrap: wrap; 
    align-items: center;
}
.tech-badge {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 12px 24px; 
    border-radius: 50px; 
    transition: 0.3s ease; 
    cursor: pointer;
}
.tech-badge:hover {
    transform: scale(1.08);
}
.tech-badge span {
    font-weight: 700; 
    font-size: 14px; 
    font-family: var(--font-heading);
}

@media (max-width: 576px) {
    .partners-section {
        padding: 40px 0;
    }
    .tech-badges-grid {
        gap: 10px;
    }
    .tech-badge {
        padding: 8px 16px;
        gap: 8px;
    }
    .tech-badge i {
        font-size: 18px !important;
    }
    .tech-badge span {
        font-size: 12px !important;
    }
}

/* Industry Light Theme Mastery */
.light-industries-page { background: #f8fafc; color: #0f172a; }
.light-industries-page .hero { background: linear-gradient(135deg, #ffffff, #f1f5f9); color: #0f172a; border-bottom: 1px solid rgba(168, 85, 247, 0.1); }
.light-industries-page .card { background: #ffffff; border: 1px solid rgba(168, 85, 247, 0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.5s; position: relative; overflow: hidden; }
.light-industries-page .card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1); border-color: var(--primary); }
.light-industries-page .card h3 { color: #1e293b; }
.light-industries-page .stack-list li { color: #64748b; border-bottom: 1px solid #f1f5f9; }
.light-industries-page .stack-list li:last-child { border-bottom: none; }
.light-industries-page .stack-list li i { color: var(--primary); }
.industry-badge { display: inline-block; padding: 6px 15px; border-radius: 50px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; background: rgba(168, 85, 247, 0.1); color: var(--primary); }

@media (max-width: 991px) {
    .light-industries-page .grid-container { grid-template-columns: 1fr !important; }
}

.reveal { opacity: 0; transform: translateY(50px); transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Marketing Ecosystem Section Styling */
.marketing-ecosystem { padding: 100px 0; background: #fff; }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }
.platform-card { background: var(--bg-card); padding: 40px; border-radius: 30px; border: 1px solid var(--glass-border); transition: 0.4s; text-align: center; }
.platform-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.platform-icon { font-size: 40px; margin-bottom: 20px; }

/* Page Hero Shared */
.page-hero { padding: 120px 0 80px; background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('hero.png'); background-size: cover; text-align: center; border-bottom: 1px solid var(--glass-border); }
.page-hero h1 { font-size: clamp(40px, 8vw, 70px); font-weight: 900; margin-bottom: 20px; letter-spacing: -2px; }
.page-hero p { font-size: 20px; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

/* Service Detail Cards */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 80px; }
.service-image { border-radius: 40px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.service-image img { width: 100%; display: block; }
.service-content h2 { font-size: 36px; margin-bottom: 25px; }
.service-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
.feature-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 600; }
.feature-list i { color: var(--secondary); font-size: 20px; }

/* Products Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 60px; }
.product-card { background: #fff; padding: 40px; border-radius: 30px; border: 1px solid var(--glass-border); transition: 0.3s; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1); }
.product-card i { font-size: 48px; margin-bottom: 25px; display: inline-block; background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.product-card h3 { font-size: 24px; margin-bottom: 15px; }
.product-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.tag { display: inline-block; padding: 5px 15px; background: rgba(168, 85, 247, 0.1); color: var(--primary); border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }

/* Academy Specifics */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.course-card { background: #fff; border-radius: 30px; overflow: hidden; border: 1px solid var(--glass-border); transition: 0.4s; }
.course-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(168, 85, 247, 0.1); }
.course-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.course-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: white; padding: 5px 15px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.course-info { padding: 30px; }
.course-info h3 { font-size: 22px; margin-bottom: 15px; }
.course-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; padding-top: 20px; border-top: 1px solid #f1f5f9; }

/* Portfolio Specifics */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; }
.portfolio-item { position: relative; border-radius: 30px; overflow: hidden; background: #fff; border: 1px solid var(--glass-border); transition: 0.5s; }
.portfolio-item:hover { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(0,0,0,0.1); }
.portfolio-img { height: 300px; background-size: cover; background-position: center; transition: 0.5s; }
.portfolio-item:hover .portfolio-img { scale: 1.1; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; color: white; opacity: 0; transition: 0.4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.filter-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.filter-btn { padding: 10px 25px; border-radius: 50px; border: 1px solid var(--glass-border); background: #fff; font-weight: 700; cursor: pointer; transition: 0.3s; }
.filter-btn.active { background: var(--gradient-tech); color: white; border: none; }

/* Tech Stack Grid */
.tech-stack-section { padding: 100px 0; background: linear-gradient(rgba(168, 85, 247, 0.02), rgba(34, 197, 94, 0.02)); border-top: 1px solid var(--glass-border); }
.stack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 40px; justify-items: center; align-items: center; margin-top: 50px; }
.stack-item { text-align: center; transition: 0.3s; filter: grayscale(1); opacity: 0.6; }
.stack-item:hover { filter: grayscale(0); opacity: 1; transform: scale(1.2); }
.stack-item i { font-size: 50px; margin-bottom: 15px; display: block; }
.stack-item span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
/* Contact Page Mastery */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info .info-item { display: flex; gap: 20px; margin-bottom: 30px; padding: 30px; background: #fff; border: 1px solid rgba(168, 85, 247, 0.1); border-radius: 25px; transition: 0.4s; }
.contact-info .info-item:hover { transform: translateX(10px); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.05); border-color: var(--primary); }
.contact-info .info-item i { width: 60px; height: 60px; background: var(--gradient-tech); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2); }
.contact-info h4 { font-size: 20px; color: #0f172a; margin-bottom: 5px; }
.contact-info p { color: #64748b; font-size: 15px; line-height: 1.6; }

.contact-form { padding: 50px; border-radius: 40px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 20px 25px; border-radius: 15px; border: 1px solid #f1f5f9; background: #f8fafc; font-family: inherit; font-size: 16px; transition: 0.3s; color: #0f172a; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.1); }
.submit-btn { background: var(--gradient-tech); color: white; padding: 22px; border-radius: 15px; border: none; font-weight: 900; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; }
.submit-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3); }

@media (max-width: 991px) {
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-form { padding: 30px; }
}

/* --- RESPONSIVE DESIGN --- */

/* Hamburger Menu Icon */
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 14px; }
}

@media (max-width: 991px) {
    .topbar { display: none; }
    .section-padding { padding: 80px 0; }
    
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 30px;
        transition: 0.5s;
        z-index: 1001;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-links.active { left: 0; }
    
    .nav-links li { width: 100%; }
    .nav-links a { font-size: 20px; display: block; width: 100%; }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none; /* Toggle with JS if needed, or just show for simplicity on mobile */
    }
    
    .nav-links li:hover .dropdown { display: block; }
    
    .hero h1 { font-size: 60px; letter-spacing: -2px; }
    .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-grid[style*="direction: rtl"] { direction: ltr !important; }
    
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 48px; }
    .hero p { font-size: 18px; }
    .grid-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .footer-col { grid-column: span 2; }
    footer > .container > div:first-child { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 40px; }
    .btn { width: 100%; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-col { grid-column: span 4; }
    footer > .container > div:first-child { grid-template-columns: 1fr !important; }
}

/* Trending Courses Carousel */
.courses-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.courses-carousel {
    display: flex;
    gap: 20px;
    animation: scroll-courses 30s linear infinite;
    width: max-content;
}

.courses-carousel:hover {
    animation-play-state: paused;
}

.mini-course-card {
    flex: 0 0 200px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.mini-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.1);
}

@keyframes scroll-courses {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 20)); } /* Width + Gap * 20 unique items */
}

/* News Ticker (Tech-Pulse) */
.news-ticker { background: var(--gradient-tech); color: #fff; padding: 12px 0; overflow: hidden; position: relative; z-index: 900; box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2); }
.ticker-content { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; gap: 60px; align-items: center; }
.ticker-item { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.ticker-item i { font-size: 16px; opacity: 0.8; }

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