﻿





@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%); /* Default hidden */
    }
    .sidebar.active {
        transform: translateX(0); /* Menu Open */
    }
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
}











        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            display: flex;
            background-color: #ffffff;
            color: #333333;
            overflow-x: hidden;
        }

        /* --- MOBILE TOP NAV (HIDDEN ON DESKTOP) --- */
        .mobile-top-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: #950d0d;
            color: white;
            z-index: 999;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

            .mobile-top-nav h2 {
                font-size: 1.2rem;
                font-weight: 700;
            }

        .toggle-btn {
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

        /* --- SIDEBAR --- */
        .sidebar {
            width: 260px;
            height: 100vh;
            background-color: #8f0000;
            position: fixed;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: #ffffff;
            z-index: 1000;
            overflow-y: auto;
            transition: transform 0.3s ease-in-out;
        }

            .sidebar::-webkit-scrollbar {
                width: 5px;
            }

            .sidebar::-webkit-scrollbar-thumb {
                background: rgba(255,255,255,0.2);
            }

        .logo-container {
            /*padding: 20px 15px;*/
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #632a5e;
            font-size: 1.2rem;
        }

        .logo-text h1 {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .logo-text p {
            font-size: 0.65rem;
            color: #e0d0e0;
            margin-top: 2px;
            font-style: italic;
        }

        .close-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        .nav-menu {
            list-style: none;
            margin-top: 10px;
            flex-grow: 1;
        }

        .menu-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            cursor: pointer;
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

            .menu-btn:hover, .menu-btn.active {
                background-color: rgba(255, 255, 255, 0.1);
                border-left: 4px solid #f5a623;
            }

        .submenu {
            max-height: 0;
            overflow: hidden;
            background-color: #620606;
            transition: max-height 0.3s ease-out;
            list-style: none;
        }

            .submenu li a {
                display: block;
                padding: 10px 20px 10px 45px;
                color: #d8c5d6;
                text-decoration: none;
                font-size: 0.85rem;
            }

        .sidebar-footer {
            padding: 20px 15px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }

            .social-icons a {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 0.85rem;
                text-decoration: none;
            }

        .twitter {
            background-color: #1da1f2;
        }

        .linkedin {
            background-color: #0077b5;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        }

        /* --- BACKGROUND OVERLAY FOR MOBILE MENU --- */
      /* --- BACKGROUND OVERLAY FOR MOBILE MENU --- */
.menu-overlay {
    display: none; /* Default hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998; /* Sidebar (1000) se thoda neeche */
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none; /* Jab tak active na ho, click pass ho jayein */
}

/* Jab active ho */
.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto; /* Ab click pakdega */
}

        /* --- MAIN CONTENT AREA --- */
        .main-content {
            margin-left: 260px;
            width: calc(100% - 260px);
            background-color: #fcfcfc; /* Universal subtle base */
        }

        /* Slider Section */
        .banner-section {
            position: relative;
            width: 100%;
            height:65vh;
            min-height: 450px;
            overflow: hidden;
            background-color: #000;
        }

        .slider-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.8s;
        }

            .slider-img.active {
                opacity: 1;
            }

        .banner-thumbnails {
            position: absolute;
            left: 15px;
            top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 10;
        }

        .thumb {
            width: 70px;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.6);
            border-radius: 3px;
            cursor: pointer;
        }

            .thumb.active {
                border-color: #f5a623;
                transform: scale(1.1);
            }

            .thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }


        /* ========================================================================= */
        /* --- STYLISH PREMIUM STRUCTURAL BACKGROUNDS FOR SECTIONS BELOW SLIDER --- */
        /* ========================================================================= */

        /* 1. Content Section (Why VNA) - Subtle Dotted Geometric Grid */
        .content-section {
            display: flex;
            padding: 60px 40px;
            gap: 40px;
            align-items: center;
            background-color: #ffffff;
            background-image: radial-gradient(#632a5e 0.75px, transparent 0.75px), radial-gradient(#632a5e 0.75px, #ffffff 0.75px);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px;
            position: relative;
        }
            /* Adding a clean white gradient wash to keep dots only as a faint watermark */
            .content-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92));
                pointer-events: none;
                z-index: 0;
            }

        .content-image, .content-text {
            z-index: 1;
            position: relative;
        }

        .content-image {
            flex: 0 0 45%;
            max-width: 100%;
        }

            .content-image img {
                width: 100%;
                height: auto;
                border-radius: 4px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
                display: block;
            }

        .content-text {
            flex: 1;
        }

            .content-text h2 {
                font-size: 2.2rem;
                color: #333;
                margin-bottom: 20px;
            }

                .content-text h2 span {
                    color: #632a5e;
                }

            .content-text p {
                font-size: 0.95rem;
                line-height: 1.8;
                text-align: justify;
                margin-bottom: 20px;
            }

        /* 2. Apply Section - Elegant Diagonal Tech Stripes Overlay */
        .apply-section {
            display: flex;
            padding: 60px 80px;
            background: linear-gradient(135deg, #fbfbfb 25%, transparent 25%) -50px 0, linear-gradient(225deg, #fbfbfb 25%, transparent 25%) -50px 0, linear-gradient(315deg, #fbfbfb 25%, transparent 25%), linear-gradient(45deg, #fbfbfb 25%, transparent 25%);
            background-size: 30px 30px;
            background-color: #f2f3f5;
            align-items: center;
            gap: 50px;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
        }

        .apply-img {
            flex: 1;
            text-align: center;
            max-width: 100%;
        }

            .apply-img img {
                max-width: 90%;
                height: auto;
                display: block;
                margin: 0 auto;
                filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
            }

        .apply-content {
            flex: 1.2;
        }

            .apply-content h2 {
                font-size: 2.5rem;
                margin-bottom: 20px;
                color: #111;
            }

            .apply-content p {
                font-size: 1rem;
                color: #555;
                margin-bottom: 30px;
                line-height: 1.6;
            }

        .enquiry-btn {
            background-color: #632a5e;
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(99,42,94,0.3);
        }

            .enquiry-btn:hover {
                background-color: #f5a623;
                transform: translateY(-2px);
                box-shadow: 0 6px 15px rgba(245,166,35,0.4);
            }

        /* 3. Our Strength Bar - Premium Carbon/Hexagonal Texture */
        .strength-bar {
            background-color: #52504b;
            background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Premium dark pattern */
            color: #fff;
            padding: 50px 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

            .strength-bar h2 {
                font-size: 2rem;
                margin-bottom: 10px;
                text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            }

            .strength-bar p.sub {
                font-size: 0.9rem;
                opacity: 0.9;
                margin-bottom: 40px;
            }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            min-width: 120px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
        }

            .stat-item h3 {
                font-size: 2.2rem;
                color: #f5a623;
                margin-bottom: 5px;
                font-weight: 700;
            }

            .stat-item p {
                font-size: 0.85rem;
                font-weight: 500;
                letter-spacing: 0.5px;
            }

        /* 4. Notice Board & Tiles - Light Abstract Structure */
        .notice-section {
            display: flex;
            padding: 60px 40px;
            gap: 50px;
            background-color: #ffffff;
            background-image: url('https://www.transparenttextures.com/patterns/subtle-grey.png');
        }

        .notice-board {
            flex: 1;
            width: 100%;
            background: rgba(255,255,255,0.8);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #632a5e;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

            .section-header h2 {
                font-size: 1.5rem;
                color: #632a5e;
                font-weight: 700;
            }

        .view-all {
            background: #632a5e;
            color: #fff;
            padding: 4px 12px;
            font-size: 0.8rem;
            text-decoration: none;
            border-radius: 3px;
            transition: 0.2s;
        }

            .view-all:hover {
                background: #f5a623;
            }

        .notice-item {
            margin-bottom: 20px;
            border-left: 3px solid #f5a623;
            padding-left: 15px;
        }

            .notice-item p {
                font-size: 0.9rem;
                margin-bottom: 5px;
                font-weight: 500;
            }

            .notice-item span {
                font-size: 0.75rem;
                color: #632a5e;
                display: block;
                margin-bottom: 5px;
                font-weight: 600;
            }

        .read-more {
            font-size: 0.75rem;
            background: #632a5e;
            color: #fff;
            padding: 2px 8px;
            text-decoration: none;
            border-radius: 2px;
            transition: 0.2s;
        }

            .read-more:hover {
                background: #f5a623;
            }

        .icon-grid {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            width: 100%;
        }

        .icon-tile {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 25px 20px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, border-color 0.3s;
        }

            .icon-tile:hover {
                transform: translateY(-5px);
                border-color: #f5a623;
            }

            .icon-tile i {
                font-size: 2.5rem;
                color: #f5a623;
                margin-bottom: 15px;
                display: block;
                transition: transform 0.3s;
            }

            .icon-tile:hover i {
                transform: scale(1.1);
            }

            .icon-tile span {
                font-size: 0.9rem;
                color: #632a5e;
                font-weight: 600;
            }

        /* 5. Management Section - 3D Hexagonal Faint Honeycomb */
        .management-section {
            background-color: #f7f5f7;
            background-image: url('https://www.transparenttextures.com/patterns/hexellence.png'); /* Premium Hexagon Structure */
            padding: 80px 40px;
            text-align: center;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

            .management-section h2 {
                font-size: 2.2rem;
                color: #632a5e;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .management-section p.quote {
                font-style: italic;
                color: #555;
                margin-bottom: 50px;
                font-size: 1.05rem;
            }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .profile-card {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }

            .profile-card:hover {
                transform: translateY(-8px);
                border-bottom-color: #f5a623;
                box-shadow: 0 15px 30px rgba(0,0,0,0.12);
            }

        .profile-img {
            width: 100%;
            height: 250px;
            background-color: #eee;
            border-radius: 4px;
            margin-bottom: 15px;
            overflow: hidden;
        }

            .profile-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /*filter: grayscale(100%);*/
                transition: 0.5s;
            }

        .profile-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.03);
        }

        .profile-card h4 {
            font-size: 0.95rem;
            color: #632a5e;
            border-top: 1px solid #eee;
            padding-top: 12px;
            font-weight: 700;
        }

        .profile-card p {
            font-size: 0.75rem;
            color: #777;
            margin-top: 3px;
        }

        /* 6. YouTube Section - Clean Technical Blueprint Grid */
        .youtube-section {
            padding: 80px 40px;
            text-align: center;
            background-color: #ffffff;
            background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 20px 20px;
        }

            .youtube-section h2 {
                font-size: 2rem;
                color: #632a5e;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .youtube-section p {
                font-size: 0.95rem;
                margin-bottom: 40px;
                color: #555;
            }

        .video-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .video-box {
            flex: 1;
            min-width: 280px;
            max-width: 500px;
            text-align: left;
            width: 100%;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

            .video-box h3 {
                background: #632a5e;
                color: #fff;
                padding: 12px 20px;
                font-size: 1rem;
                margin: 0;
                font-weight: 600;
            }

        .video-thumb {
            position: relative;
            height: 250px;
            background: #000;
            overflow: hidden;
        }

            .video-thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.75;
                transition: opacity 0.3s;
            }

        .video-box:hover .video-thumb img {
            opacity: 0.9;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3.5rem;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
            filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
        }

            .play-icon:hover {
                color: #f5a623;
                transform: translate(-50%, -50%) scale(1.15);
            }

        /* 7. Footer Section - Rich Woven Texture */
        .main-footer {
            background-color: #ebebeb;
            /*background-image: url('https://www.transparenttextures.com/patterns/woven.png');*/
            padding: 60px 40px 20px;
            border-top: 1px solid #ccc;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .f-logo h3 {
            color: #632a5e;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .f-logo p {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
            color: #555;
        }

        .app-links img {
            height: 35px;
            margin-right: 10px;
            margin-bottom: 10px;
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
        }

        .f-col h4 {
            font-size: 1rem;
            color: #632a5e;
            border-bottom: 2px solid #632a5e;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .f-col ul {
            list-style: none;
        }

            .f-col ul li {
                font-size: 0.85rem;
                margin-bottom: 10px;
                color: #444;
                cursor: pointer;
                transition: color 0.2s;
            }

                .f-col ul li:hover {
                    color: #632a5e;
                    text-decoration: underline;
                    font-weight: 600;
                }

        .f-col address {
            font-style: normal;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #444;
        }

            .f-col address i {
                color: #632a5e;
                margin-right: 8px;
                width: 15px;
            }

        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 55px;
            height: 55px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-decoration: none;
            z-index: 1000;
            transition: transform 0.3s;
        }

            .whatsapp-btn:hover {
                transform: scale(1.1);
            }

        /* ========================================= */
        /* --- DYNAMIC MOBILE / TABLET RESPONSIVE --- */
        /* ========================================= */

        @media (max-width: 1024px) {
            .content-section {
                flex-direction: column;
                padding: 40px 20px;
            }

            .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .apply-section {
                flex-direction: column;
                padding: 40px 20px;
                text-align: center;
                gap: 30px;
            }

            .apply-img img {
                max-width: 70%;
            }

            .notice-section {
                flex-direction: column;
                padding: 40px 20px;
                gap: 30px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .mobile-top-nav {
                display: flex;
            }

            .sidebar {
                transform: translateX(-100%);
                box-shadow: none;
            }

                .sidebar.active {
                    transform: translateX(0);
                    box-shadow: 5px 0 25px rgba(0,0,0,0.6);
                }

            .close-btn {
                display: block;
            }

            .menu-overlay.active {
                display: block;
                opacity: 1;
            }

            .main-content {
                margin-left: 0;
                width: 100%;
                margin-top: 60px;
            }

            .banner-section {
                height: 40vh;
                min-height: 250px;
            }

            .banner-thumbnails {
                left: 10px;
                top: 10px;
                gap: 5px;
            }

            .thumb {
                width: 50px;
                height: 35px;
            }

            .content-section {
                padding: 30px 15px;
                gap: 20px;
            }

            .content-text h2 {
                font-size: 1.8rem;
            }

            .apply-section {
                padding: 30px 15px;
            }

            .apply-content h2 {
                font-size: 2rem;
            }

            .apply-img img {
                max-width: 100%;
            }

            .strength-bar {
                padding: 30px 15px;
            }

                .strength-bar h2 {
                    font-size: 1.6rem;
                }

            .stats-container {
                gap: 20px;
            }

            .stat-item h3 {
                font-size: 1.8rem;
            }

            .notice-section {
                padding: 30px 15px;
                gap: 30px;
            }

            .icon-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .management-section {
                padding: 40px 15px;
            }

                .management-section h2 {
                    font-size: 1.8rem;
                }

            .profiles-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .youtube-section {
                padding: 40px 15px;
            }

                .youtube-section h2 {
                    font-size: 1.8rem;
                }

            .main-footer {
                padding: 40px 15px 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 25px;
            }















        }
 