#header-marquee-row {
    color: #81ca00;
    /* padding-bottom: 0.5rem; */
}

#marquee-header {
    font-size: 18px;
    font-weight: 700;
    padding-top: 0.5rem;
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0 5px #dfdfdf;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    max-width: 100px;
    flex-shrink: 0;
}

nav {
    display: inherit !important ;
}

#hamburger-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
    margin-left: auto;
}

/* Nav styles */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 8px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #81CA00;
}

/* Enquire Now Button */
.enquire-btn {
    background-color: #81CA00;
    color: #11396a;
    border: none;
    font-family: 'Quicksand', sans-serif;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: .5s;
}

.enquire-btn:hover {
    background-color: #11396a;
    color: #fff;
}

/* Ensure that the dropdown is hidden by default */
#main-nav .dropdown {
    display: none;
    background-color: #f1f1f1;
}

/* MOBILE & TABLET STYLES */
@media (max-width: 1200px) {
    nav {
        padding-top: 40px;
        justify-content: flex-start;
    }

    #hamburger-icon {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 300px;
        background-color: #111;
        transform: translateX(-100%);
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        z-index: 999;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #444;
    }

    nav ul li a {
        color: #fff;
        padding: 15px 30px;
        display: block;
    }

    #close-icon {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    /* Hide Enquire Now button in mobile/tablet */
    .enquire-btn-desktop {
        display: none;
    }

    /* Enquire Now Button inside mobile nav */
    .enquire-btn-mobile {
        display: block;
        width: 85%;
        margin-top: 20px;
        background-color: #81CA00;
        align-self: center;
    }

    #main-nav .dropdown {
        background-color: #81CA00;
        margin-top: 5px;
    }

    .dropdown ul li a:hover {
        color: #fff;
    }

    #main-nav ul li a {
        padding-bottom: 10px;
    }

    .dropdown ul {
        text-align: center;
    }

    /* Display dropdown when hovering over the anchor */
    #main-nav li:hover .dropdown {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        color: #ffffff;
    }

    .unclicked{
        display: none;
    }

    .clicked{
        display: flex !important;
    }

    .text-sm-white{
        color: #ffffff;
    }
}

/* DESKTOP STYLES */
@media (min-width: 1201px) {

    .text-lg-black {
        color: #000000;
    }

    /* Hide hamburger and close icons on desktop */
    #hamburger-icon {
        display: none;
    }

    #close-icon {
        display: none;
    }

    /* Enquire Now Button only on desktop */
    .enquire-btn-desktop {
        display: inline-block;
        margin-left: auto;
    }

    /* Hide Enquire Now button on mobile/tablet */
    .enquire-btn-mobile {
        display: none;
    }

    #designed-company {
        width: 100%;
    }

    #main-nav .dropdown {
        position: absolute;
        top: 85%;
        z-index: 1;
    }


    #main-nav ul li {
        position: relative;
    }

    /* Display dropdown when hovering over the anchor */
    #main-nav li:hover .dropdown {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
    }

    .dropdown ul li a:hover {
        color: #81ca00;
    }

    /* Optional: Add styling for the dropdown */
    #main-nav .dropdown ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        width: max-content;
    }

    #main-nav .dropdown ul li {
        background-color: #f1f1f1;
        padding: 10px 15px 0px 15px;
        /* padding-bottom: 0; */
    }

    #main-nav .dropdown ul li a {
        text-decoration: none;
        color: #333;
        display: block;
    }
    #main-nav .dropdown ul li a:hover {
        color: #81CA00;
    }
}