@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #00B89F;
    --secondary-color: #111A1F;
    --text-color: #2A2A2A;
    --background-color: #F9FAFB;
    --black-color: #000000;
    --white-color: #FFFFFF;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--background-color);
}

/* Navbar styles */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--white-color) !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    left: 5px;
    bottom: -2px !important;
    transition: width 0.3s ease;

}

.dropdown-toggle::after {
    content: '';
    display: none;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 90%;
}


/* Navbar elevation */


.offcanvas-header {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.offcanvas-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
}

.offcanvas-title span {
    font-weight: 700;
    color: var(--background-color);
}

.navbar #navbarLogoLite {
    display: none;
}

.navbar.sticky {
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar-toggler-icon {
    background-image: url(../images/icon/navbar-toggler-icon.svg);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.75);
}

.navbar-toggler:focus {
    box-shadow: none;
}


@media (min-width: 992px) {
    .hover-dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    h1 span {
        font-size: 2rem !important;
    }

    .offcanvas {
        background: rgba(255, 255, 255, 0.226);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }
}

.dropdown-toggle:hover .bi-chevron-down::before {
    transform: rotate(180deg);
    transition: all 0.3s ease-in;
}

.dropdown-menu {
    transition: all 3s ease-in-out;
}