

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            width: 100%;
            background-color: #fff;
        }

        a {
            text-decoration: none;
            color: #0073e6;
        }

        a:hover {
            color: #005bb7;
        }

        /* Header Styles */
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,.05);
            position: sticky;
            top: 0;
            z-index: 999;
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            overflow: visible;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
            overflow: visible;
        }

        .site-logo {
            max-width: 180px;
            display: block;
        }

        .site-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* Social Contact Bar */
        .social-contact-bar {
            background-color: #08f;
            color: white;
            padding: 8px 0;
            height: 40px;
            display: flex;
            align-items: center;
        }

        .social-contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 14px;
            transition: opacity .3s;
        }

        .contact-numbers a {
            color: white;
            margin-left: 15px;
            font-size: 14px;
            text-decoration: none;
            transition: opacity .3s;
        }

        /* Mobile Navigation Toggle */
        .mobile-nav-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: #0a3b5c;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1002;
        }

        .mobile-nav-toggle:hover {
            background-color: rgba(0,115,230,0.1);
            color: #0073e6;
        }

        .mobile-nav-toggle:active {
            transform: scale(0.95);
        }

        /* Button Styles - Fixed for mobile overflow */
        .apply-now-button {
            background-color: #0073e6 !important;
            color: white !important;
            padding: 12px 20px !important;
            text-decoration: none !important;
            font-weight: 600 !important;
            font-size: 16px !important;
            transition: all .3s ease !important;
            display: none !important;
            text-align: center !important;
            white-space: nowrap !important;
            border: none !important;
            border-radius: 8px !important;
            cursor: pointer !important;
            text-transform: uppercase !important;
            max-width: 100% !important;
            overflow: hidden !important;
        }

        .apply-now-button:hover {
            background-color: #e64a19 !important;
            transform: translateY(-2px) !important;
            color: white !important;
        }

        .contact-button {
            background-color: #0073e6 !important;
            color: white !important;
            padding: 8px 16px !important;
            border-radius: 5px !important;
            text-decoration: none !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            transition: all .3s ease !important;
            text-transform: uppercase !important;
            display: none !important;
            border: none !important;
            cursor: pointer !important;
            max-width: 100% !important;
            overflow: hidden !important;
        }

        .contact-button:hover {
            background-color: #e64a19 !important;
            transform: translateY(-2px) !important;
            color: white !important;
        }

        /* Navigation Styles */
        .site-nav {
            display: none;
        }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            margin: 0 15px;
            position: relative;
            padding: 20px 0;
        }

        .nav-item a {
            color: #333;
            font-size: 15px;
            font-weight: 600;
            transition: all .3s ease;
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0073e6;
            transition: width .3s ease;
        }

        .nav-item a:hover,
        .nav-item.active a {
            color: #0073e6;
        }

        .nav-item a:hover::after,
        .nav-item.active a::after {
            width: 100%;
        }

        /* Dropdown Menu Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0,0,0,.15);
            border-radius: 8px;
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all .25s ease;
            z-index: 1001;
            border-top: 3px solid #0073e6;
        }

        .dropdown-menu li {
            display: block;
            margin: 0;
            padding: 0;
        }

        .dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: all .2s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu li a:hover {
            background-color: rgba(0,115,230,.05);
            color: #0073e6;
            border-left: 3px solid #0073e6;
            padding-left: 25px;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            display: block !important;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: #fff;
            z-index: 1002;
            transition: right .3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,.1);
            padding: 20px;
            overflow-y: auto;
            border-left: 3px solid #0073e6;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #0a3b5c;
            cursor: pointer;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 60px 0 0;
        }

        .mobile-nav-item {
            margin-bottom: 15px;
        }

        .mobile-nav-item a {
            color: #0a3b5c;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-item a:hover {
            color: #0073e6;
        }

        /* Mobile Contact Button */
        .mobile-contact-button {
            display: inline-block;
            background-color: #ff5722;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-top: 20px;
            text-align: center;
            transition: all .3s ease;
            text-transform: uppercase;
            border: none;
            max-width: 100%;
            overflow: hidden;
        }

        .mobile-contact-button:hover {
            background-color: #e64a19;
            transform: translateY(-2px);
            color: white;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Media Queries */
        @media (min-width: 992px) {
            .site-nav {
                display: flex;
            }

            .mobile-nav-toggle {
                display: none;
            }

            .contact-button {
                display: inline-block !important;
            }

            .apply-now-button {
                display: none !important;
            }
        }

        @media (max-width: 991px) {
            .header-container {
                justify-content: space-between;
                position: relative;
                align-items: center;
                padding: 0 15px;
            }

            .apply-now-button {
                display: inline-block !important;
                margin: 0 8px !important;
                padding: 10px 16px !important;
                font-size: 14px !important;
                border-radius: 8px !important;
                white-space: nowrap !important;
                text-transform: uppercase !important;
                background-color: #0073e6 !important;
                color: white !important;
                border: none !important;
                cursor: pointer !important;
                max-width: calc(100vw - 200px) !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

            .site-logo {
                max-width: 140px;
                position: relative;
                z-index: 1;
            }

            .mobile-nav-toggle {
                margin-left: 8px;
            }

            .contact-button {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 10px;
            }

            .apply-now-button {
                margin: 0 5px !important;
                padding: 8px 12px !important;
                font-size: 13px !important;
                max-width: calc(100vw - 180px) !important;
            }

            .site-logo {
                max-width: 120px;
            }

            .mobile-nav-toggle {
                margin-left: 5px;
                width: 35px;
                height: 35px;
            }

            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button i {
                font-size: 24px;
            }
        }

        /* Additional Utility Styles */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,.3);
            transition: all .3s;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 14px rgba(0,0,0,.4);
        }

        .whatsapp-button i {
            font-size: 30px;
            color: white;
        }

        /* Mobile Dropdown Menu Styles - Missing Styles Added */
        .mobile-dropdown-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: #f8f9fa;
            border-radius: 8px;
            margin-top: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .mobile-dropdown-menu li {
            margin: 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .mobile-dropdown-menu li:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            color: #0a3b5c;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .mobile-dropdown-menu li a:hover {
            background-color: rgba(0,115,230,0.1);
            color: #0073e6;
            border-left: 3px solid #0073e6;
            padding-left: 25px;
        }

        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block !important;
        }

        /* Font Weight Classes */
        .font-light { font-weight: 300; }
        .font-regular { font-weight: 400; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
