/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
   
    color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;

    border-bottom: 2px solid rgb(49, 49, 49);



}

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 20px; /* Adjust based on your logo size */
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #11CC5C;
}

.nav-link.active {
    color: #11CC5C;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #11CC5C;
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #303030;
    width: 220px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.05);
}

.nav-item:last-child .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    margin: 0;
}

.dropdown-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: #333333;
    color: #11CC5C;
}

.dropdown-link.active {
    color: #11CC5C;
    background-color: #333333;
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid #333333;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: #e0e0e0;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background-color: #262626;
    }

    .nav-link i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown.active .nav-link {
        color: #11CC5C;
    }

    .dropdown-menu {
        position: static;
        max-height: 0;
        opacity: 1;
        visibility: hidden;
        width: 100%;
        background-color: #262626;
        transition: all 0.3s ease;
        transform: translateY(0);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        overflow: hidden;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        visibility: visible;
        max-height: 1000px;
        padding: 0;
    }

    .dropdown-item {
        margin: 0;
        border-bottom: 1px solid #333333;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-link {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
        color: #cccccc;
        background-color: #222222;
    }
    
    .dropdown-link.active {
        color: #11CC5C;
        background-color: #2a2a2a;
    }


    .logo img {
        height: 20px; 
    }
}

/* Scrolled Navbar Style */
.navbar.scrolled {
    padding: 0.7rem 2rem;
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    border-bottom: none;




    background: rgba(255, 255, 255, 0.034);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur( 15px );
    -webkit-backdrop-filter: blur( 15px );
}











/* Group 1 */

