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


    :root {
        --primary-dark: #0f1f4f;
        --primary-blue: #1a3a70;
        --accent-gold: #d4a574;
        --accent-light: #f0f4ff;
        --text-dark: #1a1a1a;
        --text-light: #666666;
        --border-light: #e0e0e0;
        --white: #ffffff;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s ease;
    }

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

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

   
   /* ══════════════════════════════════════════
       CSS VARIABLES
    ══════════════════════════════════════════ */
    :root {
        --primary-dark:   #0f1e3f;
        --primary-blue:   #1a2d5c;
        --accent-gold:    #FFC107;
        --accent-dark:    #d4a000;
        --accent-light:   #fff8e1;
        --white:          #ffffff;
        --text-dark:      #1a1a2e;
        --text-light:     #555566;
        --border-light:   #e8e8f0;
        --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
        --shadow-md:      0 8px 32px rgba(0,0,0,.12);
        --transition:     all .25s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    body { font-family:'Poppins',sans-serif; color:var(--text-dark); background:#f0f0f0; }

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

    /* ══════════════════════════════════════════
       HEADER WRAPPER
    ══════════════════════════════════════════ */
    .header {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        background: var(--white);
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

    /* ══════════════════════════════════════════
       TOP BAR
    ══════════════════════════════════════════ */
    .top-bar {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
        color: var(--white);
        padding: 8px 0;
        font-size: 12.5px;
    }

    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .contact-info {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
    }

    .contact-info span {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        opacity: .9;
        transition: var(--transition);
        font-size: 12px;
    }
    .contact-info span:hover { opacity: 1; }

    .social-links {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
    }

    .social-links a {
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.13);
        border-radius: 50%;
        color: var(--white);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        transition: var(--transition);
        flex-shrink: 0;
    }
    .social-links a:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* ══════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════ */
    .navbar {
        background: var(--white);
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }

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

    /* ── LOGO ── */
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        cursor: pointer;
        text-decoration: none;
    }

    .logo img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        border: 2px solid var(--primary-dark);
        object-fit: cover;
        flex-shrink: 0;
    }

    .logo-text h1 {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 800;
        color: var(--primary-dark);
        line-height: 1.2;
        margin: 0;
        white-space: nowrap;
    }

    .logo-text p {
        font-size: 9.5px;
        color: var(--accent-dark);
        font-weight: 700;
        letter-spacing: 1.5px;
        margin: 0;
        white-space: nowrap;
        text-transform: uppercase;
    }

    /* ── NAV MENU ── */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2px;
        flex: 1;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        position: relative;
    }

    .nav-menu > .nav-item > a {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 9px 12px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 12.5px;
        letter-spacing: .4px;
        border-radius: 5px;
        transition: var(--transition);
        white-space: nowrap;
        position: relative;
    }

    /* Gold underline slide */
    .nav-menu > .nav-item > a::after {
        content: '';
        position: absolute;
        bottom: 4px; left: 50%;
        width: 0; height: 2px;
        background: var(--accent-gold);
        transform: translateX(-50%);
        transition: width .25s ease;
        border-radius: 2px;
    }
    .nav-menu > .nav-item > a:hover::after,
    .nav-menu > .nav-item.active > a::after { width: 70%; }

    .nav-menu > .nav-item > a:hover,
    .nav-menu > .nav-item.active > a {
        color: var(--primary-blue);
        background: var(--accent-light);
    }

    /* Dropdown chevron */
    .nav-item.has-dropdown > a::before {
        content: '▾';
        font-size: 10px;
        color: var(--accent-dark);
        margin-left: 2px;
        transition: transform .22s;
        display: inline-block;
    }
    .nav-item.has-dropdown:hover > a::before { transform: rotate(180deg); }

    /* ── MEGA DROPDOWN ── */
    .mega-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        min-width: 320px;
        background: var(--white);
        border: 1px solid var(--border-light);
        border-top: 3px solid var(--accent-gold);
        border-radius: 10px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        pointer-events: none;
        z-index: 1100;
    }

    .nav-item:hover > .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .mega-dropdown-content {
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .mega-dropdown-col h4 {
        font-size: 11px;
        font-weight: 700;
        color: var(--primary-dark);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        padding-bottom: 7px;
        border-bottom: 2px solid var(--accent-gold);
    }

    .mega-dropdown-col ul { list-style: none; }
    .mega-dropdown-col li { margin-bottom: 4px; }

    .mega-dropdown-col a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 12.5px;
        display: block;
        padding: 6px 0 6px 14px;
        position: relative;
        border-radius: 4px;
        transition: var(--transition);
    }
    .mega-dropdown-col a::before {
        content: '';
        position: absolute;
        left: 4px; top: 50%;
        transform: translateY(-50%);
        width: 4px; height: 4px;
        background: var(--accent-gold);
        border-radius: 50%;
        opacity: 0;
        transition: var(--transition);
    }
    .mega-dropdown-col a:hover {
        color: var(--primary-blue);
        padding-left: 20px;
        background: var(--accent-light);
    }
    .mega-dropdown-col a:hover::before { opacity: 1; }

    /* ── ACADEMICS NESTED DROPDOWN ── */
    .academics-dropdown {
        min-width: 210px;
        left: 0;
        transform: translateY(-8px);
    }
    .nav-item:hover > .academics-dropdown {
        transform: translateY(0);
    }

    .academics-menu {
        display: flex;
        flex-direction: column;
        padding: 8px 0;
    }

    .academic-category {
        position: relative;
        cursor: pointer;
    }

    .academic-category h4 {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        padding: 12px 18px;
        margin: 0;
        border: none;
        text-transform: none;
        letter-spacing: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: var(--transition);
    }

    .academic-category h4::after {
        content: '›';
        font-size: 18px;
        color: var(--accent-dark);
        transition: transform .22s;
        line-height: 1;
    }

    .academic-category:hover h4 {
        background: var(--accent-light);
        color: var(--primary-blue);
    }
    .academic-category:hover h4::after { transform: translateX(3px); }

    /* Submenu */
    .submenu-dropdown {
        position: absolute;
        top: 0;
        left: calc(100% + 8px);
        min-width: 260px;
        background: var(--white);
        border: 1px solid var(--border-light);
        border-top: 3px solid var(--accent-gold);
        border-radius: 10px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-8px);
        transition: var(--transition);
        pointer-events: none;
        z-index: 1200;
    }

    .academic-category:hover .submenu-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .submenu-dropdown ul {
        list-style: none;
        padding: 10px 8px;
    }

    .submenu-dropdown a {
        display: block;
        padding: 9px 14px;
        font-size: 12.5px;
        color: var(--text-light);
        text-decoration: none;
        border-radius: 6px;
        transition: var(--transition);
        position: relative;
        padding-left: 22px;
    }
    .submenu-dropdown a::before {
        content: '';
        position: absolute;
        left: 8px; top: 50%;
        transform: translateY(-50%);
        width: 4px; height: 4px;
        background: var(--accent-gold);
        border-radius: 50%;
        opacity: 0;
        transition: var(--transition);
    }
    .submenu-dropdown a:hover {
        background: var(--accent-light);
        color: var(--primary-blue);
        padding-left: 26px;
    }
    .submenu-dropdown a:hover::before { opacity: 1; }

    /* ── APPLY BUTTON ── */
    .apply-btn {
        background: linear-gradient(135deg, var(--accent-gold) 0%, #e6a800 100%);
        color: var(--primary-dark);
        padding: 10px 22px;
        border: none;
        border-radius: 7px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 12.5px;
        letter-spacing: .5px;
        cursor: pointer;
        transition: var(--transition);
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 3px 12px rgba(255,193,7,.3);
    }
    .apply-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,193,7,.4);
    }
    .apply-btn:active { transform: translateY(0); }

    /* ── HAMBURGER ── */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        padding: 4px;
        flex-shrink: 0;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--primary-dark);
        border-radius: 3px;
        transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


.drawer-close{
    display: none ;
}
#hamburger.active span {
    visibility: hidden;
}


    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    .nav-overlay.active { display: block; }

    /* ══════════════════════════════════════════
       RESPONSIVE — 1200px (large laptop)
    ══════════════════════════════════════════ */
    @media (max-width: 1200px) {
        .nav-menu > .nav-item > a {
            padding: 8px 9px;
            font-size: 11.5px;
        }
        .apply-btn { padding: 9px 16px; font-size: 12px; }
        .logo-text h1 { font-size: 18px; }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — 1024px (tablet landscape)
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
        .nav-menu > .nav-item > a { padding: 8px 8px; font-size: 11px; }
        .mega-dropdown { min-width: 280px; }
        .submenu-dropdown { min-width: 230px; }
        .contact-info { gap: 14px; }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — 900px (small tablet)
    ══════════════════════════════════════════ */
    @media (max-width: 900px) {
        /* Hide some nav items to save space */
        .nav-menu > .nav-item > a { font-size: 10.5px; padding: 7px 6px; }
        .logo img { width: 44px; height: 44px; }
        .logo-text h1 { font-size: 16px; }
        .logo-text p { font-size: 9px; }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — 768px (tablet portrait → mobile)
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {

        /* TOP BAR — compact */
        .top-bar { padding: 7px 0; }

        .top-bar-content {
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .contact-info {
            gap: 12px;
            justify-content: center;
        }

        .contact-info span { font-size: 11px; }

        .social-links { gap: 7px; }
        .social-links a { width: 24px; height: 24px; font-size: 10px; }

        /* NAVBAR */
        .navbar { padding: 8px 0; }

        /* Hamburger visible */
        .hamburger { display: flex; }

        /* Logo stays left */
        .nav-content {
            justify-content: space-between;
            gap: 12px;
        }

        /* Apply button hides on mobile (inside drawer) */
        .apply-btn.desktop-only { display: none; }

        /* ── MOBILE DRAWER ── */
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(300px, 85vw);
            height: 100dvh;
            background: var(--white);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            gap: 0;
            padding: 80px 0 30px;
            box-shadow: -4px 0 24px rgba(0,0,0,.15);
            transition: right .3s cubic-bezier(.4,0,.2,1);
            overflow-y: auto;
            z-index: 1000;
        }

        .nav-menu.active { right: 0; }

        /* Each menu item */
        .nav-item {
            width: 100%;
            border-bottom: 1px solid var(--border-light);
        }

        .nav-menu > .nav-item > a {
            font-size: 14px;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 0;
            letter-spacing: .3px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu > .nav-item > a::after { display: none; }

        /* Mobile dropdowns — static accordion style */
        .mega-dropdown,
        .academics-dropdown {
            position: static;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            pointer-events: auto;
            box-shadow: none;
            border: none;
            border-top: none;
            border-radius: 0;
            background: #f9f8f5;
            margin: 0;
            display: none;
            width: 100%;
        }

        /* JS toggles .open class on mobile */
        .nav-item.open > .mega-dropdown,
        .nav-item.open > .academics-dropdown { display: block; }

        .mega-dropdown-content {
            grid-template-columns: 1fr;
            gap: 0;
            padding: 0;
        }

        .mega-dropdown-col {
            border-bottom: 1px solid var(--border-light);
            padding: 14px 20px;
        }
        .mega-dropdown-col:last-child { border-bottom: none; }

        .mega-dropdown-col h4 {
            font-size: 11px;
            margin-bottom: 8px;
        }

        .mega-dropdown-col a {
            padding: 8px 0 8px 14px;
            font-size: 13px;
        }

        /* Academics nested — flatten on mobile */
        .academics-menu { padding: 0; }

        .academic-category { border-bottom: 1px solid var(--border-light); }
        .academic-category:last-child { border-bottom: none; }
        .academic-category h4 { padding: 12px 20px; font-size: 13.5px; }
        .academic-category h4::after { content: '+'; }

        .submenu-dropdown {
            position: static;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            pointer-events: auto;
            box-shadow: none;
            border: none;
            border-top: none;
            border-radius: 0;
            background: rgba(255,248,225,.6);
            display: none;
            margin: 0;
            width: 100%;
        }

        .academic-category.open .submenu-dropdown { display: block; }
        .academic-category.open h4::after { content: '−'; }

        .submenu-dropdown ul { padding: 4px 12px; }
        .submenu-dropdown a {
            padding: 10px 14px 10px 20px;
            font-size: 13px;
            border-radius: 4px;
        }

        /* Apply btn at bottom of drawer */
        .nav-menu .mobile-apply {
            display: block;
            margin: 20px 16px 0;
            background: var(--accent-gold);
            color: var(--primary-dark);
            padding: 13px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
            text-align: center;
            text-decoration: none;
            letter-spacing: .5px;
        }

        /* Close button inside drawer */
        .drawer-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--border-light);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: var(--text-dark);
            font-weight: 300;
            z-index: 10;
        }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — 480px (phone)
    ══════════════════════════════════════════ */
    @media (max-width: 480px) {
        .top-bar { padding: 6px 0; }
        .contact-info { flex-direction: column; gap: 4px; align-items: center; }
        .contact-info span { font-size: 11px; }
        .logo img { width: 40px; height: 40px; }
        .logo-text h1 { font-size: 15px; }
        .logo-text p { font-size: 8.5px; letter-spacing: 1px; }
        .nav-menu { width: min(280px, 88vw); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE — 360px (small phone)
    ══════════════════════════════════════════ */
    @media (max-width: 360px) {
        .logo img { width: 36px; height: 36px; }
        .logo-text h1 { font-size: 14px; }
        .logo-text p { display: none; }
        .contact-info span { font-size: 10.5px; }
    }  

    /* ===== FOOTER STYLES ===== */
    footer {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
        color: var(--white);
        padding: 50px 0 30px;
        margin-top: 80px;
        border-top: 3px solid var(--accent-gold);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-gold);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 10px;
    }

    .footer-section a,
    .footer-section li {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 13px;
        transition: var(--transition);
        display: block;
    }

    .footer-section a:hover {
        color: var(--accent-gold);
        padding-left: 4px;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 25px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
    }

   
   
   
   
 /* Photo Banner Section */
.photo-banner {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding-top: 110px;
    position: relative;
}

.banner-track {
    display: flex;
 
}

.banner-slide {
    flex-shrink: 0;
    width: 100vw;
    height: 600px;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slide { height: 250px; }
}
@media (max-width: 480px) {
    .banner-slide { height: 200px; }
}



        /* Quick Stats */
        .stats-section {
            background-color: #f5f5f5;
            padding: 40px 50px;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .stat-box {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #001f5c;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Welcome Section */
        .welcome-section {
            padding: 60px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .welcome-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .welcome-header h2 {
            font-size: 32px;
            color: #001f5c;
            margin-bottom: 10px;
        }

        .welcome-header p {
            color: #ffc107;
            font-weight: bold;
        }

        .welcome-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .welcome-text {
            line-height: 1.8;
            color: #555;
        }

        .welcome-text h3 {
            color: #001f5c;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .welcome-image {
            width: 100%;
            height: 350px;
            background-color: #e0e0e0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
        
        .welcome-image img {
            width: 630px;
            height: 350px;
            border-radius: 20px;
        }

        /* Why Choose Section */
        .why-choose {
            background-color: #f9f9f9;
            padding: 60px 50px;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 32px;
            color: #001f5c;
            margin-bottom: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #ffc107;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .feature-card h3 {
            color: #001f5c;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .feature-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Courses Section */
      
      
      
      

        /* Campus Section */
        .campus-section {
            background-color: #f5f5f5;
            padding: 60px 50px;
        }

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

        .campus-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .campus-header h2 {
            font-size: 32px;
            color: #001f5c;
            margin-bottom: 10px;
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .facility-item {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .facility-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .facility-item h3 {
            color: #001f5c;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .facility-item p {
            color: #666;
            font-size: 13px;
        }

        /* Recruiters Section */
        .recruiters-section {
            padding: 60px 50px;
        }

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

        .recruiters-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .recruiters-header h2 {
            font-size: 32px;
            color: #001f5c;
            margin-bottom: 20px;
        }

        .recruiters-header .count {
            font-size: 48px;
            color: #001f5c;
            font-weight: bold;
        }

        .recruiters-header p {
            color: #ffc107;
            font-weight: bold;
            margin: 10px 0;
        }

        .recruiters-logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .recruiter-logo {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            font-weight: bold;
            color: #001f5c;
            font-size: 14px;
        }

        /* About Section */
        .about-section {
            background-color: #001f5c;
            color: white;
            padding: 60px 50px;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 350px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-image img {
            width: inherit;
            object-fit: fill;
        }

        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .about-text p {
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .about-btn {
            background-color: #ffc107;
            color: #001f5c;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
        }

        .about-btn:hover {
            background-color: #ffb300;
        }

      /* Tablet: 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-menu > li > a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr;
        gap: 20px;
        min-width: 280px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero {
        padding: 150px 30px 50px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .welcome-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }
}

/* Small Tablet: 768px */
@media (max-width: 768px) {
    


    footer {
        padding: 40px 0 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-section a,
    .footer-section li {
        font-size: 12px;
    }

    .hero {
        padding: 120px 25px 40px 25px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .welcome-section {
        padding: 40px 25px;
    }

    .welcome-header h2 {
        font-size: 26px;
    }

    .courses-section {
        padding: 35px 25px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .campus-section {
        padding: 40px 25px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recruiters-section {
        padding: 40px 25px;
    }

    .about-section {
        padding: 40px 25px;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    

    footer {
        padding: 30px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-section a,
    .footer-section li {
        font-size: 11px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
    }

    .hero {
        padding: 150px 15px 30px 15px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-image {
        height: 200px;
    }
    
    .hero-image img {
        width: 300px;
        height: 200px;
    }

    .stats-section {
        padding: 30px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .welcome-section {
        padding: 30px 15px;
    }

    .welcome-header h2 {
        font-size: 22px;
    }

    .welcome-text h3 {
        font-size: 18px;
    }

    .welcome-image {
        height: 250px;
    }
    
    .welcome-image img {
        width: 350px;
        height: 250px;
    }

    .why-choose {
        padding: 30px 15px;
    }

    .why-choose h2 {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .courses-section {
        padding: 30px 15px;
    }

    .courses-header h2 {
        font-size: 20px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .course-header {
        padding: 15px;
    }

    .course-name {
        font-size: 14px;
    }

    .campus-section {
        padding: 30px 15px;
    }

    .campus-header h2 {
        font-size: 22px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .recruiters-section {
        padding: 30px 15px;
    }

    .recruiters-header h2 {
        font-size: 22px;
    }

    .recruiters-header .count {
        font-size: 36px;
    }

    .recruiters-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .recruiter-logo {
        height: 80px;
        font-size: 12px;
    }

    .about-section {
        padding: 30px 15px;
    }

    .about-container {
        gap: 25px;
    }

    .about-image {
        height: 250px;
    }

    .about-text h2 {
        font-size: 22px;
    }
}

/* Extra Small: 360px */
@media (max-width: 360px) {
   

    .hero-text h1 {
        font-size: 20px;
    }

    .stats-container {
        gap: 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .courses-grid {
        gap: 10px;
    }

    .facilities-grid {
        gap: 12px;
    }

    .recruiters-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra Extra Small: 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    

    .footer-content {
        gap: 15px;
    }

    .footer-section h3 {
        font-size: 12px;
    }

    .footer-section a,
    .footer-section li {
        font-size: 10px;
    }

    .hero {
        padding: 80px 12px 25px 12px;
    }

    .hero-text h1 {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-image {
        height: 180px;
        font-size: 12px;
    }

    .stats-section {
        padding: 25px 12px;
    }

    .stat-box {
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .welcome-section {
        padding: 25px 12px;
    }

    .welcome-header h2 {
        font-size: 20px;
    }

    .welcome-text h3 {
        font-size: 16px;
    }

    .welcome-text {
        font-size: 13px;
    }

    .welcome-image {
        height: 200px;
    }

    .why-choose {
        padding: 25px 12px;
    }

    .why-choose h2 {
        font-size: 20px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .courses-section {
        padding: 25px 12px;
    }

    .courses-header h2 {
        font-size: 18px;
    }

    .course-card {
        border-radius: 3px;
    }

    .course-header {
        padding: 12px;
    }

    .course-name {
        font-size: 13px;
    }

    .course-body {
        padding: 10px;
        font-size: 11px;
    }

    .campus-section {
        padding: 25px 12px;
    }

    .campus-header h2 {
        font-size: 20px;
    }

    .facility-item {
        padding: 15px;
    }

    .facility-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .facility-item h3 {
        font-size: 14px;
    }

    .facility-item p {
        font-size: 12px;
    }

    .recruiters-section {
        padding: 25px 12px;
    }

    .recruiters-header h2 {
        font-size: 20px;
    }

    .recruiters-header .count {
        font-size: 32px;
    }

    .recruiter-logo {
        height: 70px;
        padding: 15px;
        font-size: 11px;
    }

    .about-section {
        padding: 25px 12px;
    }

    .about-container {
        gap: 20px;
    }

    .about-image {
        height: 200px;
    }

    .about-text h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .about-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}