
 :root {
            --primary: #0e4064;
            --gold: #01f5fe;
            --dark: #1e2a44;
			--white: #ffffff;
			--blue: #004e98;
			
        }

        nav {
            position: fixed;
            top: 55px;
            left: 0; right: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            background: rgba(0,78,152, 1);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            margin: 0 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            position: relative;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .menu-item {
            position: relative;
        }

        .menu-item a {
            color: white;
            text-decoration: none;
            font-size: 1.0rem;
			font-weight:400;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .menu-item a:hover,
        .menu-item a:focus {
            background: rgba(1,59,115, 0.7);
            color: var(--gold);
        }

        /* Desktop Dropdown */
        .has-dropdown .dropdown {
            position: absolute;
            top: 100%;
            background: white;
            color: #333;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 12px 0;
            margin-top: 10px;
            left: 0;
            z-index: 10;
        }

        .nav-right .has-dropdown .dropdown {
            left: auto;
            right: 0;
        }

        .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 8px;
        }

        .dropdown a {
            display: block;
            padding: 12px 24px;
            color: #333;
        }

        .dropdown a:hover {
            background: var(--gold);
            color: var(--dark);
        }

        /* Logo */
        .logo-container {
            position: absolute;
            left: 50%;
            top: -49px;
            transform: translateX(-50%);
            z-index: 20;
        }

        .logo {
            height: 140px;
            width: 140px;
            border-radius: 20%;

            background: rgba(255,255,255,0);
            padding: 2px;
            animation: logoPulse 4.5s infinite ease-in-out;
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        /* Hamburger */
        .hamburger {
            display: none;
            font-size: 1.9rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 135px;
            left: 20px;
            right: 20px;
            background: var(--dark);
            border-radius: 16px;
            padding: 25px 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            flex-direction: column;
            gap: 8px;
            z-index: 999;
        }

        .mobile-open .mobile-menu {
            display: flex;
        }

        .mobile-menu .menu-item a {
            display: block;
            padding: 16px 20px;
            color: white;
            font-size: 1.25rem;
            font-weight: 600;
            border-radius: 12px;
        }

        .mobile-menu .has-dropdown .dropdown {
            display: none;
            position: static;
            background: rgba(255,255,255,0.1);
            margin: 8px 15px;
            border-radius: 8px;
            padding: 8px 0;
        }

        .mobile-menu .has-dropdown.open .dropdown {
            display: block;
        }

        /* Scroll Effect */
        .nav-scrolled .nav-wrapper {
            background: rgba(10, 61, 98, 0.98);
            border-radius: 0;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .nav-left, .nav-right { display: none; }
        }
		



		
/* ==================== PROFESSIONAL TOP BAR ==================== */
/* ==================== COMPACT TOP BAR ==================== */
/* ==================== COMPACT TOP BAR ==================== */
.top-bar {
    background:rgba(0,0,0,0);
    color: #ddd;
    font-family: 'Montserrat' sans-serif;
    font-size: 0.80rem;
    padding: 4px 0;
	font-weight:500;
	position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

}

.top-bar-container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
	
}

.top-bar-left, 
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-left a,
.top-bar-middle a {
    color: #004e98;
    text-decoration: none;
	font-size:1.1rem;
    transition: color 0.3s;
}

.top-bar-left a:hover,
.top-bar-middle a:hover {
    color: #003567;
}

/* Middle Tagline */
.top-bar-middle a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Social Icons */
.social-icon {
    color: #004e98;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #003567;
}

/* Quote Button */
.quote-btn {
    background: #004e98;
    color: #fff;
    padding: 8px 14px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.quote-btn:hover {
    background: #003567;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1192px) {
    .top-bar-middle {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 4px 0;
    }
    
    .top-bar-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-wrap: nowrap;
        gap: 2px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}
/* TOP MENU BAR STYLE ENDS */

