/* Header Styles */
.top-banner {
    background: #009739;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    color: #ffffff;
}

.floating-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 41, 56, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 25px;
    margin: 15px auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 151, 57, 0.2);
}

.floating-navbar.scrolled {
    background: rgba(13, 31, 46, 0.95);
    border-color: rgba(0, 151, 57, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    color: #ffffff;
}

.nav-item:hover {
    color: #00b344;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #009739;
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: translateY(9.5px) rotate(45deg);
    background-color: #00b344;
}

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

.mobile-menu-toggle.active span:last-child {
    transform: translateY(-9.5px) rotate(-45deg);
    background-color: #00b344;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 31, 46, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    height: 40px;
}

.close-menu {
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-menu:hover {
    background: rgba(0, 151, 57, 0.2);
    color: #00b344;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-nav-item {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    width: 100%;
    transition: all 0.3s;
    border-radius: 10px;
    color: #ffffff;
}

.mobile-nav-item:hover {
    background: rgba(0, 151, 57, 0.1);
    color: #00b344;
}

.mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.mobile-social .social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 57, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    color: #ffffff;
}

.mobile-social .social-icon:hover {
    background: #009739;
    transform: translateY(-3px);
}
