/* Top Banner */
        
.topBa{
            background-color: #5cb85c;

}
.top-banner {
    max-width: 1200px;
    margin: 0 auto;
    width: 97%;
            color: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .phone-number {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .admission-notice {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* Main Header */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            gap: 5px;
            width: 140px;
        }
        .logo img{
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .logo-text {
            font-size: 42px;
            font-weight: bold;
            color: #ffc107;
            line-height: 1;
        }

        .logo-tagline {
            font-size: 14px;
            color: #ffc107;
            margin-top: 2px;
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            font-weight: 600;
            transition: color 0.3s;
            white-space: nowrap;
        }

        nav a:first-child {
            color: #5cb85c;
        }

        nav a:hover {
            color: #5cb85c;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
            color: #5cb85c;
        }

        .contact-btn {
            background-color: #2196F3;
            color: white !important;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 18px;
            transition: background-color 0.3s;
        }

        .contact-btn:hover {
            background-color: #1976D2;
            color: white !important;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-btn span {
            width: 28px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 11px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(0, -7px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            nav {
                gap: 20px;
            }

            nav a {
                font-size: 16px;
            }

            .contact-btn {
                padding: 10px 20px;
                font-size: 16px;
            }

            .logo-text {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .top-banner {
                justify-content: center;
                text-align: center;
                padding: 10px 15px;
            }

            .phone-number,
            .admission-notice {
                font-size: 14px;
            }

            .social-icons a {
                width: 28px;
                height: 28px;
            }

            .mobile-menu-btn {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                gap: 0;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav > a,
            nav .dropdown {
                width: 100%;
                margin-bottom: 5px;
            }

            nav > a {
                font-size: 18px;
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
            }

            /* Mobile Dropdown Styles */
            .dropdown {
                width: 100%;
            }

            .dropdown-toggle {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
                justify-content: space-between;
                pointer-events: auto;
                cursor: pointer;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background-color: #f8f8f8;
            }

            .dropdown.active .dropdown-menu {
                max-height: 200px;
            }

            .dropdown-menu a {
                padding: 10px 15px;
                font-size: 15px;
                border-bottom: 1px solid #e0e0e0;
            }

            .dropdown-menu a:last-child {
                border-bottom: none;
            }

            .contact-btn {
                width: 100%;
                text-align: center;
                margin-top: 10px;
            }

            .logo-text {
                font-size: 32px;
            }

            .logo-tagline {
                font-size: 12px;
            }

            /* Close button positioning in mobile */
            .header-container {
                position: relative;
            }

            .mobile-menu-btn.active {
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1002;
            }
        }

        @media (max-width: 480px) {
            .top-banner {
                font-size: 12px;
            }

            .admission-notice {
                width: 100%;
                justify-content: center;
            }

            .logo-text {
                font-size: 28px;
            }

            .main-header {
                padding: 15px;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }
