body {
    color: #ffffff;
}

img {
    max-width: 100%;
}

.main_bg {
    background-image: url(../image/main_bg.png);
    height: auto;
    max-width: 100%;
    background-size: cover;
}

.connect_dropdown {
    background-image: url(../image/main_bg.png);
}

.connect_dropdown li a {
    color: #fff;
    border-bottom: 2px solid #dc9400;
}

.nav-link {
    border-bottom: 2px solid #dc9400;
}

.link_section {
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #ffffff !important;
    background-color: #dc9400 !important;
}


@media(max-width: 768px) {


    .link_section {
        padding-top: 10px !important;
    }

    .navbar-collapse {
        /* display: contents !important; */
    }

    .nav_images img {
        height: 100px !important;
        padding-top: 0px !important;
        margin-top: 0px !important;
    }

}

.navbar-toggler {
    /* left: 100px !important; */
    /* position: absolute !important; */
}


/* General styles */
.navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 15px;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .link_section {
        display: block;
    }

    /* Mobile-specific styles */

    /* Align the hamburger menu icon on the left */
    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler-icon {
        background-color: #fff;
        /* Adjust color if needed */
        border-radius: 4px;
        width: 30px;
        height: 30px;
    }


    /* Center the menu items for mobile view */
    .navbar-collapse {
        text-align: center;
    }

    /* Dropdown menu for 'CONNECT' should be full width */
    .dropdown-menu {
        width: 100%;
        background-color: #333;
        /* Same as the navbar background */
        color: #fff;
        border: none;
    }

    /* Dropdown item styling */
    .dropdown-item {
        padding: 10px;
        color: #fff;
        text-align: center;
    }

    .dropdown-item:hover {
        background-color: #555;
    }
}

/* Large screens styles */
@media (min-width: 768px) {

    /* Keep the nav images centered */
    .nav_images {
        display: flex;
        justify-content: center;
        align-items: center;
    }



    /* Align the navbar links horizontally */
    .navbar-nav {
        flex-direction: row;
        justify-content: center;
    }

    /* Add more spacing between navbar items */
    .navbar-nav .nav-item {
        margin-right: 20px;
    }

    /* Dropdown styles for larger screens */
    .dropdown-menu {
        width: auto;
        text-align: left;
    }


}