.html  {
    scroll-behavior: smooth;
}
:root {
    --accent: #ff8c00;
    --white: #ffffff;
    --text-dark: #1d1d1f; 
    --glass: rgba(0, 0, 0, 0.03);
    --border: rgba(0, 0, 0, 0.1);
    /* CSS 2 Colors */
    --primary-gradient: linear-gradient(135deg, #1a1a1a, #434343);
    --accent-color-css2: #27ae60;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body {
    background: var(--white);
    color: var(--text-dark);
}

/* --- NAVBAR (Updated to CSS 2 Style) --- */
.navbar {
    display: flex; 
    flex-direction: column; /* CSS 2 style vertical stack */
    padding: 0; 
    position:static; 
    top: 0; 
    z-index: 1000;
    background: var(--primary-gradient); /* CSS 2 Header Gradient */
    border-bottom: none;
    backdrop-filter: none;
}

.logo { 
    padding: 20px 0;
    color: white; 
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 1px;
}
.logo span { color: var(--accent); font-weight: 800; }

.nav-links { 
    display: flex; 
    list-style: none; 
    background: rgba(0,0,0,0.2); /* CSS 2 navbar bar style */
    width: 100%;
    justify-content: center;
    padding: 24.5px 0;
    margin: 0;
}
.nav-links li { margin: 0 15px; }
.nav-links a { 
    text-decoration: none; 
    color: white; 
    font-weight: 500; 
    padding: 8px 15px;
    transition: 0.3s; 
}
.nav-links a:hover, .active { 
    background: var(--accent-color-css2); /* CSS 2 Green Hover */
    color: white !important; 
    border-radius: 5px;
}

.cta-btn { 
    border: 1px solid white; 
    color: white !important; 
    padding: 8px 15px; 
    border-radius: 5px; 
    font-weight: bold; 
    transition: 0.4s;
    margin-left: 15px;
}
.cta-btn:hover { background: white; color: black !important; }

/* --- HERO SECTION --- */
.hero-section { 
    padding: 20px 5%; 
    text-align: center; 
    background-color: #f8f9fa;
}

.hero-overlay {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.7)), /* Bottom dark overlay for text clarity */
                url('s2.jpg');
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 40px;
    color: white;
    min-height: 550px; 
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Image box shadow */
}

/* --- ATTRACTIVE STATS ROW --- */
.quick-stats { 
    display: flex; 
    flex-direction: row; 
    gap: 15px; 
    justify-content: center; 
    width: 100%;
    margin-top: auto;
    padding-bottom: 20px;
}

.q-card { 
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); /* For Safari */
    
    padding: 18px 10px; 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); /* Soft shadow */
    
    flex: 1;
    max-width: 160px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth pop animation */
    cursor: default;
}

/* Hover Effect - Jo boxes ko move karega */
.q-card:hover { 
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff8c00; /* Orange border on hover */
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.q-card h3 {
    font-size: 1.6rem; 
    font-weight: 800;
    margin: 0;
    color: #ff8c00; /* Main Highlight Color */
    text-shadow: 0 2px 10px rgba(255, 140, 0, 0.2);
}

.q-card p {
    font-size: 0.75rem; 
    font-weight: 500;
    text-transform: uppercase; /* Professional look */
    letter-spacing: 0.5px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}

/* --- MOBILE SPECIFIC --- */
@media (max-width: 768px) {
    .hero-overlay {
        background-size: contain; 
        min-height: auto; 
        aspect-ratio: 4 / 5; 
        padding: 40px 10px 20px;
        border-radius: 20px;
    }

    .quick-stats {
        gap: 8px;
    }

    .q-card {
        margin-top: 150px;
        padding: 12px 10px;
        border-radius: 15px;
        max-width: 40%; 
    }

    .q-card h3 {
        font-size: 1rem;
    }

    .q-card p {
        font-size: 0.6rem;
    }
}
.status { border: 1px solid var(--accent); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; color: var(--accent); }
.hero-section h1 { font-size: 4rem; margin: 30px 0; font-weight: 800; }
.highlight { color: var(--accent); text-shadow: 0 0 20px rgba(18, 10, 0, 0.3); }

.q-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); width: 200px; transition: 0.3s; }
.q-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.q-card h3 { font-size: 2.5rem; color: var(--accent); }

/* --- MISSION GRID (Original CSS 1) --- */
.container { padding: 80px 8%; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.tag { color: var(--accent); font-weight: bold; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.mission-text h2 { font-size: 3rem; margin: 15px 0; color: var(--text-dark); }
.mission-text p { color: #555; }
.point { display: flex; gap: 20px; margin-top: 30px; }
.point-icon { font-size: 1.5rem; color: var(--accent); }
.mission-img-box img { width: 100%; border-radius: 30px; border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* --- LEARNING PATH (Original CSS 1) --- */
.section-title { text-align: center; font-size: 3rem; margin-bottom: 50px; color: var(--text-dark); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-step { background: #fdfdfd; padding: 50px 30px; border-radius: 25px; position: relative; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.path-step h4 { color: var(--text-dark); }
.path-step p { color: #666; }
.step-num { position: absolute; top: 20px; right: 20px; font-size: 3rem; font-weight: 900; color: var(--text-dark); opacity: 0.05; }

/* --- PREMIUM GRID (Original CSS 1) --- */
.premium-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.p-card { background: #fff; padding: 40px; border-radius: 25px; border: 1px solid #eee; transition: 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.p-card:hover { transform: scale(1.02); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.p-card h3 { color: var(--text-dark); }
.p-card p { color: #666; }
.p-icon { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }

/* --- CERTIFICATIONS (Original CSS 1) --- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.cert-card { text-align: center; background: #fff; padding: 40px; border-radius: 20px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.cert-card h4 { color: var(--text-dark); }
.cert-card p { color: #666; }
.cert-icon { font-size: 3rem; margin-bottom: 20px; }

/* --- FOOTER (Updated to CSS 2 Style) --- */
.main-footer { 
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px 0 10px;
    margin-top: 50px;
}
.social-icons { margin-bottom: 5px; }
.social-icons a { 
    color: white; 
    font-size: 2rem; /* Matches CSS 2 size */
    margin: 0 15px; 
    transition: 0.3s; 
    display: inline-block;
}
.social-icons a:hover { 
    color: #00a94c; /* CSS 2 Black Hover */
    transition: 0.7s;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .mission-grid, .path-grid, .premium-grid, .cert-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-overlay { padding: 40px 20px; }
    .nav-links { flex-direction: column; align-items: center; gap: 10px; }
}
/* --- NAVBAR UPDATED --- */
.navbar {
    background: var(--primary-gradient);
    position: static;
    top: 0;
    z-index: 1100;
    width: 100%;
}

.nav-top {
    display: flex;
    justify-content: center; /* Desktop par logo center rahega */
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.logo {
    color: white;
    font-size: 2.2rem;
    letter-spacing: 1px;
    text-align: center;
}

/* --- Hamburger Menu (Mobile Only) --- */
.hamburger-menu {
    display: none; /* Desktop par hide */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    left: 5%;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s;
}

/* --- Desktop Nav Links --- */
.nav-links {
    display: flex;
    list-style: none;
    background: rgba(0,0,0,0.10);
    width: 100%;
    justify-content: center;
    padding: 15px 0;
    margin: 10;
    transition: 0.4s ease;
}

.nav-links li { margin: 0 1px; }

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 18px;
    margin: 0 10px;
    transition: 0.3s;
    display: block;
}

.nav-links a:hover, .nav-links a.active {
    background: var(--accent-color-css2);
    color: white !important;
    border-radius: 5px;
}

.sidebar-header { display: none; } /* Mobile Only */

/* --- Mobile Styling (Responsive) --- */
@media (max-width: 900px) {
    .hamburger-menu { display: flex; } /* Show Hamburger */

    .logo { font-size: 1.4rem; padding-left: 40px; } /* Adjust logo size */

    .nav-links {
        position: fixed;
        left: -100%; /* Hide Sidebar */
        top: 0;
        width: 200px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0;
        z-index: 1200;
        box-shadow: 10px 0 30px rgba(0,0,0,0);
    }

    .nav-links.active { left: 0; } /* Show Sidebar */

    .nav-links li { width: 100%; margin: 10px 0; }

    .sidebar-header {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    #closeMenu {
        color: white;
        font-size: 3rem;
        cursor: pointer;
        line-height: 1;
    }

    /* Background Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1150;
    }
    .menu-overlay.active { display: block; }
}