.odth-custom-header {
    background: linear-gradient(135deg, #2d4a7c 0%, #1e3a6f 50%, #2d4a7c 100%);
    color: white;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.odth-custom-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.5s ease;
}
 
.odth-custom-header:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid;
    border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)) 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-top {
    line-height: 1;
    margin-bottom: -2px;
}

.logo-bottom {
    line-height: 1;
}

.company-info h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #b8c5d6;
}

.company-tagline {
    font-size: 14px;
    color: #a0b1c8;
    font-weight: 400;
}

.contact-info {
    text-align: right;
    font-size: 14px;
    color: #a0b1c8;
}

.contact-info a {
    color: #a0b1c8;
    text-decoration: underline;
}

.contact-info a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.phone-number {
    margin-bottom: 5px;
}

.phone-number a {
    color: #a0b1c8;
    text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.main-navigation {
    width: 100%;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #a0b1c8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: white;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}


	@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .odth-custom-header .main-navigation {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        background: rgba(0, 0, 0, 0.2) !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }
    .odth-custom-header .main-navigation.active {
        max-height: 400px !important;
        overflow: visible !important;
        padding: 20px 0 !important;
    }
    .odth-custom-header .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        text-align: center !important;
        /* ADD THESE LINES: */
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: flex !important;
    }
    
    /* ADD THIS ENTIRE BLOCK: */
    .odth-custom-header .nav-menu li {
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
    }
    
    .odth-custom-header .nav-menu a {
        padding: 15px 20px !important;
        display: block !important;
        font-size: 18px !important;
        /* ADD THESE LINES: */
        color: #a0b1c8 !important;
        text-decoration: none !important;
        border-radius: 4px !important;
        margin: 2px 10px !important;
    }
    
    /* ADD THIS ENTIRE BLOCK: */
    .odth-custom-header .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }
