/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*background-color: #0095ef; */
    background: #f4f7fb;
            color: #1e2b37;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

#wlvcf_logo{
    width: 100px;
    height: 100px;

}

/* Header Styles */
.modern-header {
    background-color: #0095ef;
    background-color:#174b6c;
    /*position: sticky; */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.logo a {
    color: white;
    text-decoration: none;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    background: #7f186b;
    padding: 0 20px;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.notice_box{
    display:flex;
    justify-content: center;
    
}
/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #7f186b;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 15px;
}

.dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-btn, .user-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.3s;
}

.search-btn:hover, .user-btn:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

/* Footer Styles */
.modern-footer {
    background-color: #7f186b;
    color: white;
    margin-top: auto;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: white;
}

.footer-col p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: white;
    border-radius: 4px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 12px;
    background-color: white;
    color: #7f186b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #7f186b;
        padding: 80px 20px 20px;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-actions {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .header-actions {
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Add these new styles to your existing CSS file */

/* Header Brand Row - Two Logos and Title */
.header-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

/* Left Logo */
.logo-left a,
.logo-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Company Title in Middle */
.company-title {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.company-title a {
    color: white;
    text-decoration: none;
}

.company-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.company-title .tagline {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

/* Navigation Row */
.header-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Menu */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
   text-decoration: none;
    font-size: .8em;
    margin: 5px;
    padding: 5px 10px;
    
    border-radius: 2px;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a:hover {
    opacity: 2;
    background: #3367d6;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #7f186b;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 15px;
}

.dropdown-menu a {
    padding: 8px 0;
    font-size: 14px;
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 20px;
}

.search-btn, .user-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.3s;
    padding: 5px;
}

.search-btn:hover, .user-btn:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .company-title h1 {
        font-size: 24px;
    }
    
    .nav-menu {
        gap: 5px;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile Header Layout */
    .header-brand-row {
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    /* Hide logos on mobile to save space */
    .logo-left .logo-text,
    .logo-right .logo-text {
        display: none;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    /* Company title in mobile */
    .company-title {
        position: static;
        transform: none;
        flex: 1;
        text-align: left;
        margin-left: 15px;
    }
    
    .company-title h1 {
        font-size: 20px;
    }
    
    .company-title .tagline {
        font-size: 12px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: flex-end;
    }
    
    /* Hide main nav by default on mobile */
    .header-nav-row {
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background-color: #7f186b;
        padding: 100px 20px 30px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin: 100px auto 100px auto;
       
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
    }
    
    /* Dropdown in mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        padding: 10px 0 10px 20px;
        margin-top: 5px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    /* Header actions in mobile */
    .header-actions {
        margin-left: 0;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 480px) {
    .header-brand-row {
        padding: 10px 0;
    }
    
    .logo-img {
        max-height: 35px;
    }
    
    .company-title h1 {
        font-size: 18px;
    }
    
    .company-title .tagline {
        font-size: 11px;
    }
    
    .header-actions {
        right: 60px;
        gap: 10px;
    }
    
    .search-btn, .user-btn {
        font-size: 16px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 360px) {
    .logo-img {
        max-height: 30px;
    }
    
    .company-title h1 {
        font-size: 16px;
    }
    
    .company-title .tagline {
        font-size: 10px;
    }
}

/* Header Brand Row - Two Logos and Title */
.header-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

/* Left Logo */
.logo-left a,
.logo-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Company Title in Middle */
.company-title {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.company-title a {
    color: white;
    text-decoration: none;
}

.company-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.company-title .tagline {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

/* Navigation Row */
.header-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

h1{
    color: #fffefe;
}