:root {
    --active-color: #269797;
    --normal-color: #9E9E9E;
    --bg-color: #ffffff;
    --gradient-start: #269797;
    --gradient-end: #0C3131;
    --cta-text: #ffffff;
}
body{
    font-family: "DM Sans", sans-serif;
}
/* Navbar */
.custom-navbar {
    background: var(--bg-color);
    padding: 14px 0;
    z-index: 999;
    /* box-shadow:none; */
    box-shadow: 0 4px 26.1px 0 rgba(0, 0, 0, 0.25);
}

.navbar-logo {
    max-height: 42px;
    width: auto;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

/* Desktop Nav Links */
.navbar-nav .nav-link {
    color: var(--normal-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: 18px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--active-color);
}

/* Desktop Dropdown */
.dropdown-menu {
    border: 1px solid rgba(0, 147, 147, 1);
    border-radius: 14px;
    /* padding: 12px; */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    color: rgba(0, 147, 147, 1);
    font-size: 15px;
    font-weight: 500;
    /* border-radius: 8px; */
    /* padding: 9px 14px; */
    border-bottom: 1px solid rgba(0, 154, 154, 1);
}
.dropdown-menu li:last-child .dropdown-item{
    border-bottom: 0;
}
.dropdown-item:active,
.dropdown-item.active{
    background-color: rgba(0, 154, 154, 1);
}
.dropdown-item:hover {
    /* background: rgba(38, 151, 151, 0.1); */
    /* color: var(--active-color); */
}


/* CTA Button */
.cta-btn {
    /* background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); */
    background: linear-gradient(to bottom, #269797, #0C3131);
    color: var(--cta-text) !important;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Hamburger */
.custom-toggler {
    width: 34px;
    height: 28px;
    border: 0;
    padding: 0;
    box-shadow: none !important;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--active-color);
    border-radius: 30px;
}

/* Mobile Menu */
.mobile-menu {
    width: 100%;
    max-width: 410px;
    background: #0b9c98;
    border: 0;
    color: #ffffff;
}

.mobile-menu .offcanvas-header {
    padding: 28px 30px 56px;
            display: flex;
        justify-content: space-between;
}

.mobile-logo {
    max-height: 42px;
    width: auto;
}

.mobile-close {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    padding: 0;
}

.mobile-menu .offcanvas-body {
    padding: 0 30px 34px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li > a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 8px;
}

.mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0 8px;
}

.mobile-submenu a {
    display: block;
    background: #ffffff;
    color: #008f8d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 50px;
}
.navbar-logo-white{
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-navbar {
        background: var(--active-color);
        padding: 14px 0;
    }

    .desktop-navbar {
        display: none !important;
    }

    .custom-toggler {
        display: flex;
    }

    .custom-toggler span {
        background: #ffffff;
    }

    .navbar-logo {
        display: none !Important;
    }
    .navbar-logo-white {
        display: block !important;
        max-height: 34px;
        
    }
}

@media (max-width: 576px) {
    .mobile-menu {
        max-width: 100%;
    }

    .mobile-menu .offcanvas-header {
        padding: 24px 28px 54px;
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu .offcanvas-body {
        padding: 0 30px 32px;
    }

    .mobile-submenu a {
        font-size: 13.5px;
        padding: 6px 14px;
    }
}
/*Navbar code ended*/
.site-footer {
    padding: 76px 0 38px;
    background: #222222;
    color: #fff;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    align-items: start;
    gap: 44px;
    margin-bottom: 48px;
}

.footer-newsletter-copy h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 600;
}

.footer-newsletter-copy p,
.footer-subscribe-form p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
}

.footer-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 162px;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-form-row input {
    width: 100%;
    min-height: 45px;
    padding: 0 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.78);
    border-radius: 50px;
    background: transparent;
    color: #fff;
    outline: none;
}

.footer-form-row input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.footer-form-row button {
    min-height: 45px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(180deg, #2a9e9e, #0d5555);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.8fr 1.05fr;
    gap: 54px;
    padding: 42px 0 48px;
}

.footer-logo {
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-logo:hover,
.footer-links a:hover,
.footer-contact-line a:hover,
.footer-legal a:hover {
    color: #2ad6d7;
}

.footer-logo i {
    font-size: 34px;
}

.footer-brand>p {
    margin: 0 0 32px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.footer-socials a {
    width: 22px;
    height: 22px;
    color: #222;
    background: #fff;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 14px;
}

.footer-contact-line i {
    width: 24px;
    color: #fff;
    font-size: 22px;
    text-align: center;
}

.footer-contact-line a,
.footer-links a,
/* .footer-call-links p a, */
.footer-legal a {
    text-decoration: none;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
}

.footer-links a {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: underline;
}
.footer-links  a{
    text-decoration: underline;
}

.footer-call-links p {
    margin: 0 0 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
}

.footer-resources-title {
    margin-top: 18px !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 44px;
}

.footer-legal a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */

@media (max-width: 991px) {

    .navbar-nav {
        margin-top: 15px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .cta-btn {
        margin: 15px auto 0;
        display: inline-block;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }
}

@media (max-width: 576px) {

    .site-footer {
        padding: 48px 0 30px;
    }

    .footer-newsletter {
        margin-bottom: 34px;
        text-align: center;
    }

    .footer-newsletter-copy h2 {
        font-size: 25px;
    }

    .footer-form-row {
        grid-template-columns: 1fr;
    }

    .footer-form-row button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 34px 0;
        text-align: center;
    }

    .footer-logo,
    .footer-socials,
    .footer-contact-line {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
    }
}
.mobile-dropdown-btn a{
    color: #fff;
    text-decoration: none;
}