
        :root {
            --primary: #2563eb;
            --primary-glow: rgba(37, 99, 235, 0.2);
            --secondary: #f59e0b;
            --dark: #0f172a;
            --slate: #1e293b;
            --light: #f8fafc;
            --white: #ffffff;
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
            font-family: 'Inter', sans-serif; 
        }

        body { 
            background-color: var(--light); 
            color: var(--slate); 
            overflow-x: hidden; 
            line-height: 1.6; 
        }

        body::-webkit-scrollbar{
            display: none;
        }

        /* --- NAVIGATION --- */
        .header-wrapper { 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            width: 100%; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
        }
        .top-bar {
            background: var(--dark); 
            color: white; 
            padding: 8px 5%;
            display: flex; 
            justify-content: space-between; 
            font-size: 0.75rem;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.98); 
            backdrop-filter: blur(10px);
            padding: 15px 5%; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
        }

        .logo { 
            font-size: 1.5rem; 
            font-weight: 900; 
            color: var(--dark); 
            text-decoration: none;
         }
        .logo span { 
            color: var(--primary); 
        }

        .menu-toggle { 
            display: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
            color: var(--dark);
         }

        .nav-links { 
            display: flex; 
            list-style: none; 
            gap: 2rem; 
            align-items: center; 
        }
        .nav-link { 
            text-decoration: none; 
            color: var(--dark); 
            font-weight: 700; 
            font-size: 0.9rem; 
            transition: 0.3s; 
        }
        .nav-link:hover, .nav-link.active { 
            color: var(--dark); 
        }

        /* --- DROPDOWN ENHANCEMENTS --- */
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; 
            top: 100%; 
            left: 0; 
            background: white;
            min-width: 240px; 
            box-shadow: var(--shadow-lg); 
            border-radius: 12px;
            opacity: 0; 
            visibility: hidden; 
            transform: translateY(10px);
            transition: 0.3s; 
            list-style: none; 
            padding: 15px 0; 
            border: 1px solid #eee;
        }
        .dropdown:hover .dropdown-menu { 
            opacity: 1; 
            visibility: visible; 
            transform: translateY(0); 
        }
        
        .dropdown-menu li { 
            position: relative; 
        }
        .dropdown-menu li a {
            padding: 10px 25px; 
            display: block; 
            text-decoration: none;
            color: var(--slate); 
            font-size: 0.85rem; 
            font-weight: 600; 
            transition: 0.2s;
        }
        .dropdown-menu li a:hover { 
            background: #f1f5f9; 
            color: var(--primary); 
        }

        /* Nested Sub-menus */
        .submenu {
            position: absolute; 
            left: 100%; 
            top: 0; 
            background: white;
            min-width: 200px;
            box-shadow: var(--shadow-lg); 
            border-radius: 12px;
            opacity: 0; 
            visibility: hidden; 
            list-style: none; 
            padding: 10px 0; 
            border: 1px solid #eee;
        }
        .dropdown-menu li:hover .submenu { 
            opacity: 1; 
            visibility: visible; 
        }

        /* --- HERO & CONTROLS --- */
        .hero { 
            background: linear-gradient(rgba(15, 23, 42, 0), rgba(15, 23, 42, 0)), url('https://ik.imagekit.io/motionmax25/background/bg2.jpg');
            background-size: cover;
            background-position: center;
            padding: 90px 5%;
            text-align: center;
            color: white;
            
        }
        .hero h1 { 
            font-size: clamp(2.2rem, 5vw, 3.8rem); 
            font-weight: 800; 
            margin-bottom: 1.5rem; 
        }
        .hero p { 
            font-size: clamp(1rem, 2vw, 1.2rem); 
            opacity: 0.8; 
            max-width: 700px; 
            margin: 0 auto;
         }

        .controls-container { 
            margin: -60px auto 0; 
            max-width: 1000px; 
            padding: 0 20px; 
            position: relative; 
            z-index: 10; 
        }
        .glass-panel { 
            background: white; 
            padding: 25px; 
            border-radius: 20px; 
            box-shadow: var(--shadow-lg); 
            display: flex; 
            flex-direction: column; 
            gap: 20px; 
        }

        .search-box { 
            position: relative; 
        }
        .search-box input { 
            width: 100%; 
            padding: 15px 50px; 
            border-radius: 12px; 
            border: 1px solid #e2e8f0; 
            font-size: 1rem; 
            outline: none; 
        }
        .search-box i { 
            position: absolute; 
            left: 20px; 
            top: 50%; 
            transform: translateY(-50%); 
            color: #94a3b8; 
        }

        .filter-group { 
            display: flex; 
            justify-content: center; 
            gap: 10px; 
            flex-wrap: wrap; 
        }
        .f-btn { 
            border: 1px solid #e2e8f0; 
            padding: 10px 20px;
             border-radius: 10px; 
             background: white; 
             font-weight: 700; 
             cursor: pointer; 
             transition: 0.2s; 
            }
        .f-btn.active { 
            background: var(--primary); 
            color: white; 
        }

        /* --- GRID --- */
        .course-section { 
            padding: 80px 5%; 
            max-width: 1300px; 
            margin: 0 auto; 
        }
        .course-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px; 
        }
        .c-card { 
            background: white; 
            border-radius: 20px; 
            overflow: hidden; 
            border: 1px solid #f1f5f9; 
            transition: 0.3s; 
            display: flex; 
            flex-direction: column; 
            cursor: pointer; 
        }
        .c-card:hover { 
            transform: translateY(-10px); 
            box-shadow: var(--shadow-lg); 
        }
        .c-img { 
            height: 200px; 
            background-size: cover; 
            background-position: center; 
            position: relative; 
        }
        .c-badge { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            background: rgba(255,255,255,0.9); 
            padding: 5px 15px; 
            border-radius: 50px; 
            font-size: 0.7rem; 
            font-weight: 800; 
            color: var(--primary); 
            text-transform: uppercase; 
        }
        .c-content { 
            padding: 25px; 
            flex-grow: 1; 
        }

        /* --- MODAL STYLES --- */
        .modal-overlay {
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            background: rgba(15, 23, 42, 0.85); 
            backdrop-filter: blur(8px);
            z-index: 2000; 
            display: none; 
            align-items: center; 
            justify-content: center;
            opacity: 0; 
            transition: 0.3s ease; 
            padding: 20px;
        }
        .modal-overlay.active { 
            display: flex; 
            opacity: 1; 
        }
        .modal-card {
            background: white; 
            width: 100%; 
            max-width: 850px; 
            border-radius: 24px;
            display: flex; 
            overflow: hidden; 
            position: relative;
            transform: translateY(20px); 
            transition: 0.4s;
        }
        .modal-overlay.active .modal-card { 
            transform: translateY(0);
         }
        .modal-close {
            position: absolute; 
            top: 15px; 
            right: 15px; 
            background: white;
            width: 35px; 
            height: 35px; 
            border-radius: 50%; 
            display: flex;
            align-items: center; 
            justify-content: center; 
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
            z-index: 10;
        }
        .modal-img-left { 
            flex: 1.2; 
            background-size: cover; 
            background-position: center;
             min-height: 400px; 
            }
        .modal-info-right { 
            flex: 1; 
            padding: 40px; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            overflow-y: auto; 
            max-height: 90vh; 
        }
        .modal-info-right h2 { 
            font-size: 2rem; 
            margin-bottom: 5px;
             color: var(--dark); 
            }
        
        .modal-meta { 
            display: flex; 
            gap: 10px; 
            margin-bottom: 20px; 
            flex-wrap: wrap; 
        }
        .cat-tag { 
            display: inline-block;
             padding: 4px 12px; 
             background: var(--primary-glow); 
            color: var(--primary); 
            border-radius: 50px; 
            font-size: 0.75rem; 
            font-weight: 800; 
            text-transform: uppercase;
        }
        .duration-tag {
            display: inline-block; 
            padding: 4px 12px; 
            background: #fef3c7; 
            color: #d97706; 
            border-radius: 50px; 
            font-size: 0.75rem; 
            font-weight: 800;
        }

        .modal-info-right h4 { 
            color: var(--dark); 
            margin: 15px 0 5px; 
            font-size: 0.9rem; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            border-bottom: 2px solid #f1f5f9; 
            display: inline-block;
        }
        .modal-info-right p { 
            color: #64748b; 
            margin-bottom: 10px; 
            font-size: 0.95rem; 
        }
        
        .detail-list { 
            list-style: none; 
            margin-bottom: 15px; 
        }
        .detail-list li { 
            font-size: 0.9rem; 
            color: var(--slate); 
            margin-bottom: 5px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .detail-list li i { 
            color: var(--primary); 
            font-size: 0.8rem; 
        }

        .modal-btn {
            background: var(--primary); 
            color: white; 
            border: none; 
            padding: 15px;
            border-radius: 10px; 
            font-weight: 800; 
            cursor: pointer; 
            transition: 0.3s; 
            margin-top: 10px;
        }
        .modal-btn:hover { 
            background: var(--dark); 
        }

        /* --- MOBILE --- */
        @media (max-width: 768px) {
            .menu-toggle { 
                display: block; 
            }
            .nav-links { 
                position: absolute; 
                top: 100%; 
                left: 0; 
                width: 100%; 
                background: white; 
                flex-direction: column;
                 max-height: 0; 
                 overflow: hidden; 
                 transition: 0.4s;
                 }
            .nav-links.active {
                 max-height: 100vh; 
                 overflow-y: auto;
                  padding: 20px 0;
                 }
            .course-grid { 
                grid-template-columns: 1fr;
             }
            .modal-card { 
                flex-direction: column; 
                max-height: 90vh; 
                overflow-y: auto; 
            }
            .modal-img-left { 
                height: 200px;
                 min-height: 200px;
                 }
            .modal-info-right { 
                padding: 25px;
             }
        }

         .logo img {
            height: 45px; /* Adjust this value to make your logo bigger or smaller */
            width: auto;  /* Maintains aspect ratio */
            display: block;
            transition: transform 0.3s ease;
       }

        .logo:hover img {
        transform: scale(1.05); /* Subtle pop effect on hover */
       }

/* Ensure the logo container doesn't have extra padding */
.logo {
    display: flex;
    align-items: center;
    padding: 0;
}

             /* --- FOOTER --- */
        footer { 
            background: var(--dark); 
            color: #94a3b8; 
            padding: 100px 10% 40px; 
        }
        .footer-grid { 
            display: grid; 
            grid-template-columns: 2fr 1fr 1fr 1.5fr; 
            gap: 60px; 
        }
        .footer-col h4 { 
            color: var(--white); 
            font-size: 1.2rem; 
            margin-bottom: 30px; 
        }
        .footer-col ul { 
            list-style: none; 
        }
        .footer-col ul li { 
            margin-bottom: 15px; 
        }
        .footer-col a { 
            color: #94a3b8; 
            text-decoration: none; 
            transition: 0.3s; 
        }
        .footer-col a:hover { 
            color: var(--primary); 
            padding-left: 5px; 
        }

        .newsletter { 
            display: flex; 
            margin-top: 20px; 
        }
        .newsletter input { 
            padding: 15px; 
            border-radius: 12px 0 0 12px; 
            border: none; 
            background: #1e293b; 
            color: white; 
            width: 100%; 
        }
        .newsletter button { 
            padding: 15px 25px;
            border-radius: 0 12px 12px 0; 
            border: none; 
            background: var(--primary); 
            color: white; 
            font-weight: bold; 
            cursor: pointer; 
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        @media (max-width: 1024px) {
            .footer-grid { 
                grid-template-columns: 1fr 1fr; 
            }
            .name-row { 
                grid-template-columns: 1fr 1fr;
             }
        }

        @media (max-width: 768px) {
            /* RE-ENABLED TOP BAR WITH MOBILE OPTIMIZATION */
            .top-bar { 
                justify-content: center; 
                text-align: center;
                flex-direction: column; /* Stack Email and Phone */
                padding: 10px 5%;
            }
            
            .menu-toggle { 
                display: block;
             }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: 0.4s ease-in-out;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                max-height: 100vh;
                padding: 20px 0;
                overflow-y: auto;
            }

            .nav-links li { 
                width: 100%; 
            }
            .nav-link { 
                display: block; 
                padding: 15px 5%; 
                border-bottom: 1px solid #f1f5f9; 
            }

            .dropdown-menu, .submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8fafc;
                padding-left: 20px;
            }

            .dropdown.active-mobile > .dropdown-menu,
            .dropdown-menu li.active-mobile > .submenu {
                display: block;
            }

            .contact-hero h1 { 
                font-size: 2.2rem !important; 
            }
            .contact-container { 
                padding: 25px; 
                margin-top: -30px; 
            }
            
            .name-row { 
                grid-template-columns: 1fr; 
            } 
            
            .footer-grid { 
                grid-template-columns: 1fr; 
                gap: 30px; 
                text-align: center; 
            }
            .footer-col div { 
                justify-content: center;
             }
        }
    