@font-face {
    font-family: 'Figtree';
    src: url('../font/Figtree/Figtree-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    /* Enables all weights from 100 to 900 */
    font-style: normal;
}

body {

    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    /* Regular */
}


.navbar {
    background-color: #AECAD6 !important;
    min-height: 80px;
}

.container-fluid {
    max-width: 85%;
    margin: auto;
    justify-content: space-between !important;
    background-color: #AECAD6 !important;
    background-color: black;

}

.dropdown-menu {
    min-width: 200px;
}

.nav-link {
    color: white !important;

    margin-left: 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #2AB7DF !important;
}

/* dropdown*/



.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;

}

.nav-item.dropdown .dropdown-menu {
    position: absolute;
    border-radius: 5px;


    max-width: 70px;
    z-index: 999;

}

.nav-item .dropdown-menu {
    opacity: 100%;
    background-color: rgb(255, 255, 255);
    white-space: normal;
    /* Allow the text to wrap to a new line if it's too long */
    max-width: 100%;
    /* Prevent the menu from exceeding the parent width */
    word-wrap: break-word;
    /* Break long words if needed */
}

/* Optional: Adjust the max width of the dropdown */
.nav-item .dropdown-menu .dropdown-item {

    white-space: normal;
    /* Allow text wrapping within each item */
    word-wrap: break-word;
    /* Make sure the words break if they are too long */
    max-width: 300px;
    /* You can adjust the max width as per your design */
}

.banner {

    width: 100%;
    height: 850px;
    background-position: center;
    background-size: cover;
    /* hiq offset-in anash */
}



.about {
    background-color: #BBF3FF !important;
    padding: 10px !important;
    border-radius: 30px;
    color: black !important;
    border: solid 1px #BBF3FF !important;

}

.about:hover {
    color: white !important;
}

.contact {
    padding: 10px !important;
    border-radius: 30px;
    border: solid 1px white !important;
}

@media screen and (min-width: 992px) {
    .desktop {
        max-width: 300px;
        display: flex;

    }


    .mobile {
        display: none;
    }

}

@media screen and (max-width: 992px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: flex;
    }

}

@media screen and (max-width: 768px) {

    .banner {
        height: 600px;
    }

    .bannerSection {
        width: 85%;
    }

    .banner h1 {
        font-size: 40px;
    }

    .navbar {
        height: 60px;
        opacity: 100%;
        color: white;
    }

    .nav-item .dropdown-menu {
        background-color: white;
    }

}