/* Home Page Header Section Style */
.banner-section-outer {
    background-color: var(--e-global-color-black);
    overflow: hidden;
}
main {
    margin-top: 110px; /* Adjust this value to match your header height */
}


header {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(65, 246, 129, 0.1);
    transition: all 0.3s ease;
    padding: 18px 0;
    height: 95px;
}

.navbar {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    gap: 15px;
    height: 100%;
    align-items: center;
    display: flex;
    gap: 20px;
}

.navbar-nav .nav-item a {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}

.navbar-nav .nav-item .talk_btn {
    background: linear-gradient(90deg, #4461F2 0%, #41F68A 100%);
    padding: 7px 20px !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    font-weight: 600  ;
    display: flex ;
    align-items: center ;
    /* gap: 10px; */
    font-size: 16px ;
    margin-left: auto ;
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(65, 246, 129, 0.1);
    padding: 10px 0;
    min-width: 200px;
    border-radius: 8px;
    margin-top: 10px;
}

.drop-down-pages {
    display: flex;
    flex-direction: column;
}

.dropdown-menu .nav-item {
    width: 100%;
}

.dropdown-menu .nav-link {
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    color: #ffffff !important;
    background: none;
}

dropdown-menu .nav-link:hover {
    background: none !important;
    color: #41F68A !important;
}


/* .dropdown-menu .nav-link:hover {
    background: linear-gradient(90deg, #4461F2 0%, #41F68A 100%);
    color: #ffffff !important;
} */

.dropdown-item {
    color: #ffffff;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: rgba(65, 246, 129, 0.1);
}

@media (max-width: 991px) {
    .navbar {
        position: static;
    }

    .navbar-collapse {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        height: calc(100vh - 95px);
        background-color: rgba(0, 0, 0, 0.98);
        padding: 20px 0;
        z-index: 999;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(65, 246, 129, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-item a,
    .dropdown-menu .nav-link,
    .navbar-nav .nav-item .nav-link {
        padding: 15px !important;
        width: 100%;
        display: block;
        color: #ffffff !important;
    }

    .dropdown-menu {
        width: 100%;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu .nav-item {
        padding-left: 20px;
    }

    .navbar-nav .nav-item .talk_btn {
        margin: 15px;
        width: fit-content;
        border: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Dropdown styling */
.drop-down-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.drop-down-content .dropdown-item {
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.drop-down-content .dropdown-item:hover {
    background-color: #f4f4f4;
    color: #007bff;
}   

