 
        /* --- CSS STYLES --- */
        :root {
            --primary-color: #2563eb;
            --primary: #2563eb; 
            --dark-color: #1e293b;
            --light-bg: #f8fafc;
            --dark: #0f172a;
            --slate: #1e293b;
            --accent-color: #f59e0b;
            --white: #ffffff;
            --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        /* --- NAVIGATION --- */
        .header-wrapper { 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            width: 100%; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
        }
        
        /* UPDATED TOP BAR FOR RESPONSIVENESS */
        .top-bar {
            background: var(--dark); 
            color: white; 
            padding: 8px 5%;
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            font-size: 0.75rem;
            flex-wrap: wrap; /* Allows items to move to next line if space is tight */
            gap: 10px;
        }

        .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);
         }

        .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; }

        /* --- CONTACT PAGE SPECIFIC STYLES --- */
        .contact-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%;
            color: white;
            text-align: center;
        }


        .contact-container {
            max-width: 900px;
            margin: -50px auto 80px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            position: relative;
            z-index: 10;
            width: 90%;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .name-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }

        .form-group label {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.9rem;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
            transition: 0.3s;
            font-size: 1rem;
            width: 100%;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .btn-submit {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }
         .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: 80px 5% 40px;
             margin-top: 50px;
            }
        .footer-grid { 
            display: grid; 
            grid-template-columns: 2fr 1fr 1fr 1.5fr; 
            gap: 40px; 
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-col h4 { 
            color: white; 
            font-size: 1.2rem; 
            margin-bottom: 25px; 
        }
        .footer-col ul { 
            list-style: none; 
        }
        .footer-col ul li { 
            margin-bottom: 12px; 
        }
        .footer-col a { 
            color: #94a3b8;
             text-decoration: none; 
             transition: 0.3s; 
            }
        .footer-col a:hover { 
            color: var(--primary-color);
         }

        /* --- 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;
             }
        }