/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 74px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 5px;

}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f7be27;
}

.main-nav a:after,
.main-nav a.active:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f7be27;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
}

/* Sticky Header */
.main-header.sticky {
    padding: 10px 0;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-header.sticky .logo img {
    height: 40px;
}

/* Add space for fixed header */
body {
    padding-top: 80px;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .header-container {
        padding: 0 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.5s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo img {
        height: 75px
    }
    
    body {
        padding-top: 70px;
    }
}