/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,700;1,700&family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');

/* RESET & VARIABLES */
:root {
    /* Brand Colors */
    --primary: #f7b53e;
    --primary-hover: #e5a32d;
    --text-main: #111111;
    --text-muted: #666666;
    --surface: #ffffff;
    --bg-subtle: #f4f4f5;
    --border-light: #e5e7eb;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 70px;
    --radius-sm: 6px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--surface);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-subtle { background-color: var(--bg-subtle); }
.text-center { text-align: center; }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* COMPONENT: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 181, 62, 0.3);
    background-color: var(--primary-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-main);
    background: rgba(0,0,0,0.03);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
}

/* COMPONENT: Cards (Neo-Brutalism Lite) */
.card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--text-main);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

/* HERO SECTION */
.hero {
    padding: 120px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #FFF8E6;
    color: #B57B0E;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* NAVBAR STYLES (Injected via JS) */
.navbar-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-actions { display: flex; gap: 16px; align-items: center; }

/* FOOTER STYLES */
#footer {
    background: var(--text-main);
    color: white;
    padding: 80px 0 40px 0;
}
#footer h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
#footer a { color: #888; display: block; margin-bottom: 12px; }
#footer a:hover { color: var(--primary); }
#footer .socials { display: flex; gap: 16px; margin-top: 20px; }

/* MOBILE MENU TOGGLES */
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    gap: 20px;
}
.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
}

/* --- NEW ADDITIONS FOR VERSION 2 --- */

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.badge-yellow { background: #FFF8E6; color: #B45309; border: 1px solid #FCD34D; }
.badge-blue { background: #E0F2FE; color: #0369A1; border: 1px solid #7DD3FC; }
.badge-green { background: #DCFCE7; color: #15803D; border: 1px solid #86EFAC; }

/* Feature Box (Academics) */
.feature-box {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: 0.2s;
}
.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: 40px 0;
    background: white;
}
.stat-item h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; }
.stat-item p { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

/* Course Cards (The Money Maker) */
.course-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s ease;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.course-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #eee;
    object-fit: cover;
    border-bottom: 1px solid var(--border-light);
}
.course-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.course-meta { display: flex; gap: 10px; margin-bottom: 12px; }
.meta-tag { 
    font-size: 0.75rem; 
    padding: 2px 8px; 
    background: var(--bg-subtle); 
    border-radius: 4px; 
    color: var(--text-muted);
}
.course-price {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-tag { font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
.price-strike { font-size: 0.9rem; text-decoration: line-through; color: var(--text-muted); margin-right: 8px; }

/* Company Ticker Grid */
.company-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}
.company-grid:hover { opacity: 1; filter: none; transition: 0.3s; }
.company-logo { font-weight: 800; font-size: 1.5rem; color: #444; }

/* YouTube Section */
.yt-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.yt-stat-box {
    border-left: 4px solid #FF0000;
    padding-left: 16px;
}

/* 5-Column Stats Grid */
.grid-5-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 992px) {
    .grid-5-stats { grid-template-columns: repeat(5, 1fr); }
}

/* Infinite Marquee (Companies) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}
.marquee-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Carousel */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.testimonial-card {
    min-width: 300px; /* Mobile width */
    max-width: 300px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .testimonial-card { min-width: 350px; max-width: 350px; }
}

/* YouTube Responsive Embed */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 1. PREMIUM MARQUEE STYLES --- */
.marquee-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.marquee-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-main);
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    /* Gradient Mask for Fade In/Out Effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px; /* Increased gap for cleaner look */
    width: max-content;
    animation: scroll 35s linear infinite;
    padding: 20px 0;
}

.marquee-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #9CA3AF; /* Uniform Grayscale */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.marquee-logo:hover {
    color: #111; /* Darken on hover */
}

/* --- 2. YOUTUBE DARK MODE STYLES --- */
.section-dark {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 0;
}

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

@media (min-width: 992px) {
    .yt-grid {
        grid-template-columns: 1.2fr 0.8fr; /* Video gets slightly more space */
    }
}

.yt-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.yt-stat-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.yt-stat-item {
    border-left: 4px solid #FF0000;
    padding-left: 20px;
}

.yt-stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: #FF0000; /* Brand Red */
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.yt-stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-red {
    background-color: #FF0000;
    color: white;
    font-weight: 700;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-red:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}