:root {
    --active-color: #269797;
    --normal-color: #9E9E9E;
    --bg-color: #ffffff;
    --gradient-start: #269797;
    --gradient-end: #0C3131;
    --cta-text: #ffffff;

    /* Section headings flanked by a divider line on each side. Every such
       heading across the site uses these so the rules match in weight,
       colour and spacing -- see .title-wrapper in homestyle.css,
       .case-title-wrap in Modules.css and .pi-section-title in
       personal-injury.css. */
    --heading-rule-gap: 24px;
    --heading-rule-color: #d5d5d5;
}

/* Those heading rules bleed to the viewport edges using `width: 100vw`.
   100vw counts the scrollbar, so it overhangs the content box by the
   scrollbar's width -- clip the overhang instead of letting it push a
   horizontal scrollbar onto every page. `clip` rather than `hidden`
   because `hidden` creates a scroll container and would stop the sticky
   navbar below from sticking. */
html {
    overflow-x: clip;
}

body{
    font-family: "DM Sans", sans-serif;
    overflow-x: clip;
}
/* Navbar */
.custom-navbar {
    background: var(--bg-color);
    padding: 0px 0;
    z-index: 999;
    /* box-shadow:none; */
    box-shadow: 0 4px 26.1px 0 rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0px;
    z-index: 99;
    height: 90px;
}

.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 */
.navbar-nav .nav-link.dropdown-toggle-split {
    margin-left: 0;
    padding-left: 2px;
    padding-right: 2px;
}

.navbar-nav .nav-link.dropdown-toggle-split::after {
    margin-left: 0;
}

.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); */
}

/* Modules Mega Menu */
.dropdown-menu.mega-menu {
    position: fixed;
    top: 90px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 6px 0 0;
    padding: 28px 30px 20px;
    border: 1px solid #e7edee;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(6, 34, 41, 0.16);
    width: 860px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 106px);
    overflow-y: auto;
}

.mega-menu-header {
    margin-bottom: 18px;
}

.mega-menu-eyebrow {
    display: block;
    color: var(--active-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mega-menu-header h6 {
    margin: 2px 0 0;
    color: #0c3131;
    font-size: 19px;
    font-weight: 700;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 28px;
}

.mega-menu-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 8px;
    border-bottom: 1px solid #eef3f4;
    text-decoration: none;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.mega-menu-grid .mega-menu-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    background: rgba(38, 151, 151, 0.06);
    padding-left: 14px;
    border-radius: 10px;
}

.mega-menu-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f0f7f7;
}

.mega-menu-icon img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mega-menu-item:hover .mega-menu-icon,
.mega-menu-item.active .mega-menu-icon {
    background: var(--active-color);
}

.mega-menu-item:hover .mega-menu-icon img,
.mega-menu-item.active .mega-menu-icon img {
    filter: brightness(0) invert(1);
}

.mega-menu-text {
    min-width: 0;
    flex: 1;
}

.mega-menu-title {
    display: block;
    margin-bottom: 3px;
    color: #0c3131;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.25;
}

.mega-menu-item:hover .mega-menu-title,
.mega-menu-item.active .mega-menu-title {
    color: var(--active-color);
}

.mega-menu-desc {
    display: block;
    color: #7c8a8c;
    font-size: 12.5px;
    line-height: 1.5;
}

.mega-menu-go {
    flex-shrink: 0;
    align-self: center;
    color: var(--active-color);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu-item:hover .mega-menu-go,
.mega-menu-item.active .mega-menu-go {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid #eef3f4;
    font-size: 13px;
}

.mega-menu-footer span {
    color: #7c8a8c;
}

.mega-menu-footer a {
    color: var(--active-color);
    font-weight: 700;
    text-decoration: none;
}

.mega-menu-footer a i {
    margin-left: 6px;
    font-size: 11px;
}

@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu {
        width: 600px;
    }
}

@media (max-width: 575.98px) {
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mega-menu-grid .mega-menu-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eef3f4;
    }

    .mega-menu-grid .mega-menu-item:last-child {
        border-bottom: 0;
    }
}


/* CTA Button */
.cta-btn {
    /* background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); */
    background: linear-gradient(0deg, #FF4B1B 0%, #F46F4B 100%);

    color: var(--cta-text) !important;
    padding: 10px 22px;
    border-radius: 48px;
    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(0deg, #FF4B1B 0%, #F46F4B 100%);
    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;
}