@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
    --base-clr: #0461a5;
    --base-rgb: 4, 97, 165;
    --btn-clr: #0461a5;
    --btn-clr-dark: #004d82;
    --btn-rgb: 4, 97, 165;
    --base-title: #0461a5;
    --base-white: #0461a5;
    --body-clr: #18191b;
    --light-clr: #ded6ff;
    --title-clr: #18191b;
    --title-rgb: 24, 25, 27;
    --bs-body-bg: #fcfcfc;
    --bs-body-bg-rgb: 252, 252, 252;
    --section-bg: #ffffff;
    --section-bg-2: #ffffff;
    --section-light: #f3f9ff;
    --dark-clr: #00447a;
    --dark-rgb: 0, 68, 122;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --footer: #001f35;
    --footer-bottom: #dbf1ff;
    --primary-clr: #0c67a3;
    --primary-rgb: 12, 103, 163;
    --border-clr: #eeeeee;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #302474;
    --border-dark-only: transparent;
    --header-bg: rgba(227, 242, 252, 0.95);
    --heading-fonts: "Helvetica", sans-serif;
    --body-fonts: "Roboto", sans-serif;
    --base-shadow-sm: 0 0 1px var(--base-clr), 0 0 3px var(--base-clr);
    --base-shadow: 0 0 1px var(--base-clr), 0 0 2px var(--base-clr),
        0 0 3px var(--base-clr), 0 0 5px var(--base-clr),
        0 0 7px var(--base-clr);
    --shadow: 0 0 5px rgba(var(--title-rgb), 0.2);
}

.dark-theme {
    --base-clr: #0093ff;
    --btn-rgb: 4, 97, 165;
    --btn-clr: #0461a5;
    --base-rgb: 3, 247, 255;
    --base-title: #98d3ff;
    --base-white: #fff;
    --body-clr: #a3bdd0;
    --title-clr: #98d3ff;
    --title-rgb: 152, 211, 255;
    --bs-body-bg: #121213;
    --bs-body-bg-rgb: 18, 18, 19;
    --section-bg: rgba(17, 32, 43, 0.6);
    --section-bg-2: #141a20;
    --dark-clr: #142120;
    --dark-rgb: 20, 33, 32;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --border-clr: #283c40;
    --border-dark: #283c40;
    --border-dark-only: #283c40;
    --header-bg: #11202be6;
    --footer: #001f35;
    --footer-bottom: #111a21;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--body-clr);
    line-height: 26px;
    overflow-x: hidden;
    font-family: var(--body-fonts);
    background: var(--bs-body-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body footer {
    margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title-clr);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
    line-height: 32px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 15px;
    line-height: 24px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 14px;
}

p {
    margin-top: -9px;
}

p:last-child {
    margin-bottom: -7px !important;
}

@media (min-width: 576px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    h4 {
        font-size: 16px;
        line-height: 26px;
    }

    h5 {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    h4 {
        font-size: 18px;
        line-height: 26px;
    }

    h5 {
        font-size: 16px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.py-25 {
    padding: 25px 0;
}

.main-footer {
    background: var(--footer);
}

@media (min-width: 1200px) {
    footer .container {
        max-width: 1325px;
    }
}

.footer-bottom {
    background: var(--footer-bottom);
    color: var(--btn-clr);
}

.footer-bottom a {
    color: var(--btn-clr);
}

.dark-theme .footer-bottom {
    color: var(--title-clr);
}

.dark-theme .footer-bottom a {
    color: var(--title-clr);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: block;
}

.social-icons a img {
    width: 20px;
}

.footer__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.footer__wrapper-widget {
    width: 0;
    flex-grow: 1;
    font-size: 12px;
    line-height: 14px;
    text-align: justify;
    padding: 55px 23px 53px;
}

.footer__wrapper-widget .logo {
    display: block;
    margin-bottom: 23px;
}

.footer__wrapper-widget .logo img {
    max-width: 100%;
}

.footer__wrapper-widget p {
    max-width: 218px;
    margin-bottom: 16px;
    color: #f6f6f6;
}

.footer__wrapper-widget .social-icons {
    margin-bottom: 34px;
}

.footer__wrapper-widget:first-child {
    max-width: 317px;
    width: 100%;
}

.footer__wrapper-widget .cont {
    max-width: 244px;
    margin: 0 auto;
}

.footer__wrapper-widget:not(:last-child) {
    border-right: 1px solid rgba(var(--btn-rgb), 0.5);
}

@media (min-width: 1280px) {
    .footer__wrapper-link {
        padding-left: 25px;
    }
}

.footer__wrapper-link li a {
    color: #f1f1f1;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    padding: 8px 0;
}

.footer__wrapper-link li a:hover {
    color: var(--base-clr);
}

.footer__wrapper-contact {
    text-align: center;
    line-height: 20px;
    color: var(--white-clr);
}

.footer__wrapper-contact .icon {
    height: 50px;
    margin-bottom: 30px;
}

.footer__wrapper-contact h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-clr);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.footer__wrapper-contact a {
    color: var(--white-clr);
}

.footer__wrapper-contact a:not(.cmn--btn):hover {
    color: var(--base-clr);
}

@media (max-width: 1199px) {
    .footer__wrapper-widget:first-child {
        max-width: 250px;
    }
}

@media (max-width: 991px) {
    .footer__wrapper-widget:first-child {
        max-width: 50%;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) {
        width: 50%;
        border: none;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) .footer__wrapper-link {
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer__wrapper-widget {
        padding: 50px 15px;
    }
}

@media (max-width: 575px) {
    .footer__wrapper {
        padding: 70px 0;
    }

    .footer__wrapper-widget {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 35px;
        border: none !important;
    }

    .footer__wrapper-widget:not(:last-child) {
        margin-bottom: 25px;
    }

    .footer__wrapper-widget .footer__wrapper-link {
        max-width: 100% !important;
    }

    .footer__wrapper-widget .cont {
        max-width: 100%;
    }

    .footer__wrapper-widget .cont .social-icons {
        margin-bottom: 25px;
    }

    .footer__wrapper-contact {
        text-align: left;
    }

    .footer__wrapper-contact .icon {
        height: 40px;
        margin-bottom: 15px;
    }

    .footer__wrapper-contact h6 {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    footer .container {
        max-width: 100%;
        padding: 0;
    }
}

.app-btns {
    display: flex;
    gap: 10px;
}

.app-btns a {
    width: calc(50% - 5px);
}

.navbar-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding: 10px 0;
    min-height: 40px;
}

.navbar-top-wrapper .tel-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

.navbar-top-wrapper .tel-link i {
    margin-right: 4px;
    transform: translateY(-1px) rotate(18deg);
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 575px) {
    .navbar-top-wrapper {
        font-size: 14px;
    }
}

.mode--toggle {
    width: 42px;
    height: 20px;
    border-radius: 10px;
    background: rgba(141, 153, 174, 0.5);
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    z-index: 99;
}

.mode--toggle img {
    transition: all ease 0.3s;
    position: absolute;
    left: 2px;
    top: 1px;
    height: 18px;
    border-radius: 50%;
}

.language-bar {
    color: var(--title-clr);
    position: relative;
}

.language-bar button {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.language-bar button img {
    width: 18px;
    height: 13px;
    object-fit: cover;
}

.language-bar button span {
    padding-left: 7px;
    color: var(--title-clr);
}

.language-bar .lang-btn {
    padding: 3px 12px;
    margin: 0 10px;
    height: 20px;
}

.language-bar ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(141, 153, 174, 0.5);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.4s;
    background: var(--white-clr);
    z-index: 99;
}

.language-bar ul li {
    padding: 0;
}

.language-bar ul li button {
    height: 35px;
    padding: 0 27px 0 23px;
}

.language-bar ul li button span {
    color: var(--dark-clr);
    font-size: 14px;
}

.language-bar > button:focus ~ ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.navbar-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px 17px;
    background: var(--header-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    border-radius: 0px 0px 10px 10px;
    transition: all ease 0.3s;
}

.navbar-bottom-wrapper .menu {
    display: flex;
    margin-left: auto;
    transition: all ease 0.3s;
    transform-origin: top;
}

.navbar-bottom-wrapper .menu li {
    padding: 2.5px;
}

.navbar-bottom-wrapper .menu li a {
    padding: 10px;
    font-size: 14px;
    color: var(--title-clr);
    text-transform: capitalize;
    font-weight: 500;
}

/* .navbar-bottom-wrapper .menu li a span {
    position: relative;
} */

/* .navbar-bottom-wrapper .menu li a > span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 2px;
    background: var(--base-clr);
    border-radius: 2px;
    width: 0;
    transition: 0.3s ease-in-out;
} */

.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active {
    color: var(--base-clr);
}

.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a.active span::before,
.navbar-bottom-wrapper .menu li a.active span::before {
    width: 100%;
}

@media (max-width: 991.9px) {
    .navbar-bottom-wrapper .menu {
        position: absolute;
        top: 100%;
        flex-direction: column;
        width: 100%;
        padding: 30px 20px;
        background: var(--header-bg);
        left: 0;
        border-top: 1px solid var(--border-clr);
    }

    .navbar-bottom-wrapper .menu li {
        padding: 0;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 5px;
        display: block;
    }

    .navbar-bottom-wrapper .menu:not(.active) {
        transform: scaleY(0);
    }
}

.navbar-bottom-wrapper .logo {
    height: 50px;
    width: 220px;
}

.navbar-bottom-wrapper .logo img {
    object-fit: contain;
    width: 70%;
    height: 100%;
}

@media (max-width: 575px) {
    .navbar-bottom-wrapper {
        padding: 10px;
    }

    .navbar-bottom-wrapper .logo {
        width: 0;
        flex-grow: 1;
        margin-right: 10px;
        max-width: 240px;
    }

    .navbar-bottom-wrapper .cmn--btn {
        font-size: 12px;
        padding: 3px 12px;
        font-weight: 400;
    }
}

.navbar-top {
    background: rgba(var(--bs-body-bg-rgb), 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    z-index: 999;
}

header {
    position: sticky;
    top: 0;
    z-index: 9;
}

/*Dark CSS For Header*/
.dark-theme .mode--toggle img {
    transform: translateX(21px);
}

.dark-theme .navbar-top-wrapper .text--base {
    color: var(--white-clr) !important;
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: var(--title-clr);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 10px);
    -ms-transform: rotate(45deg) translate(3px, 10px);
    transform: rotate(45deg) translate(3px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -10px);
    -ms-transform: rotate(-45deg) translate(3px, -10px);
    transform: rotate(-45deg) translate(3px, -10px);
}

.banner-section {
    padding: 41px 0 25px;
}

.banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-content {
    width: 0;
    max-width: 446px;
    flex-grow: 1;
    margin-top: 30px;
}

.banner-content .subtitle {
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content .subtitle::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: var(--btn-clr);
    margin-right: 10px;
    transform: translateY(-3px);
    border-radius: 2px;
}

.banner-content .title {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banner-content .txt {
    font-size: 16px;
    margin: 0;
    margin-bottom: 45px;
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 350px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-content .title {
        margin-bottom: 15px;
    }

    .banner-content .txt {
        margin-bottom: 20px;
    }
}

.banner-thumb {
    width: 0;
    max-width: 700px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-thumb-wrapper {
    overflow: hidden;
    height: 200px;
}

.banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.banner-thumb img:hover {
    transform: scale(1.05);
}

@media (min-width: 1400px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        /* max-width: 370px; */
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 315px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 485px;
    }
}

@media (max-width: 1399px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 350px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 278px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 428px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb-wrapper {
        height: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 310px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 234px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 364px;
    }
}

@media (max-width: 991px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 370px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 314px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 484px;
    }
}

@media (max-width: 767px) {
    .banner-thumb {
        gap: 8px;
    }

    .banner-thumb-wrapper {
        /* height: 160px; */
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: calc(65% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: calc(35% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: calc(30% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: calc(70% - 4px);
    }
}

@media (max-width: 767px) and (max-width: 450px) {
    .banner-thumb-wrapper {
        height: 140px;
    }
}

@media (max-width: 767px) and (max-width: 325px) {
    .banner-thumb-wrapper {
        height: 130px;
    }
}

.app-btns {
    gap: 15px;
}

.app-btns a {
    display: block;
    width: calc(50% - 8px);
    max-width: 130px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.app-btns a:hover {
    box-shadow: var(--base-shadow-sm);
    filter: brightness(1.1);
}

.app-btns a img {
    width: 100%;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1257px;
    }
}

.section-title {
    text-align: center;
    max-width: 470px;
    margin: 0 auto 25px;
}

@media (min-width: 992px) {
    .section-title {
        max-width: 670px;
        margin-bottom: 35px;
    }
}

/*Service Section*/
.service__item {
    padding: 45px 20px 24px;
    background-color: var(--section-bg);
    box-shadow: 0px 0px 15px rgba(4, 97, 165, 0.05);
    margin: 10px;
    color: var(--body-clr);
    transition: box-shadow 0.3s ease;
}


.service__item:hover {
    box-shadow: var(--shadow);
}

@media (min-width: 768px) and (max-width: 991px) {
    .service__item {
        padding-top: 35px;
    }
}

.service__item-icon {
    height: 80px;
    margin-bottom: 20px;
}

.service__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service__item-content {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

.service__item-content .title {
    color: var(--base-title);
    margin-bottom: 15px;
}

.service__item-content .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
}

.service__item-btn {
    border: 1px solid var(--btn-clr);
    border-radius: 10px;
    color: var(--base-clr);
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service__item-btn:hover {
    color: var(--white-clr);
    background: var(--btn-clr);
}

.service__item::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

#landing-loader {
    background: #fcfcfc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    margin: -10px;
    position: relative;
}

.slider-wrapper .service__item-popup {
    position: absolute;
    top: 10px;
    left: 0px;
    /* left: 10px; */
    width: calc(100% - 0px);
    /* width: calc(100% - 20px); */
    min-height: calc(100% - 20px);
    background-color: #fff;
    z-index: 9;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(var(--title-rgb), 0.073);
}
.dark-theme .service__item-popup{
    background-color: rgba(17, 32, 43) !important;
}

.slider-wrapper .service__item-popup.active {
    transition: 300ms all ease-in-out;
}

.slider-wrapper .service__item-popup-inner {
    display: flex;
    align-items: center;
    padding: 25px 40px 20px 0;
    flex-grow: 1;
}

.slider-wrapper .service__item-popup-inner .left-content {
    width: 284px;
}

.slider-wrapper .service__item-popup-inner .right-content {
    width: 0;
    flex-grow: 1;
    text-align: center;
    line-height: 1.5;
}

.slider-wrapper .service__item-popup-inner .right-content .top-text {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-bottom: 1.4375rem;
    color: var(--body-clr);
}

.slider-wrapper .service__item-popup:not(.active) {
    transition: 300ms all ease-in-out;
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 767px) {
    .slider-wrapper .service__item-popup:not(.active) {
        transform: translateY(30px);
    }
}

@media (max-width: 991px) {
    .slider-wrapper .service__item-popup-inner .left-content {
        width: 200px;
    }

    .slider-wrapper .service__item-popup-inner .right-content {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .slider-wrapper .service__item-popup-inner {
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .slider-wrapper .service__item-popup-inner .service__item {
        margin-bottom: 10px;
    }

    .slider-wrapper .service__item-popup-inner .service__item-icon {
        height: 60px;
        margin-bottom: 10px;
    }

    .slider-wrapper .service__item-popup-inner .left-content,
    .slider-wrapper .service__item-popup-inner .right-content {
        width: 100%;
    }

    .slider-wrapper .service__item-popup-inner .right-content {
        margin-top: 10px;
    }
}

.service-inner-slider-item img {
    aspect-ratio: 1;
    margin-bottom: 15px;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.service-inner-slider-item span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.5;
}

.slide-icon {
    width: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--base-rgb), 0.05);
    cursor: pointer;
    color: var(--base-clr);
    transition: all ease 0.2s;
}

.slide-icon:hover {
    background: rgba(var(--base-rgb), 0.3);
}

.service-slide-nav {
    position: absolute;
    top: -9px;
    right: 12px;
    display: flex;
    gap: 15px;
}

@media (max-width: 575px) {
    .service-slide-nav {
        display: none;
    }
}

.close__popup {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--title-clr);
}

/*About Section*/
.about__wrapper {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: flex-end;
}

.about__wrapper-content {
    padding: 53px 34px 38px 43px;
    width: 100%;
    max-width: 527px;
    border-radius: 5px;
    background: var(--section-bg);
}

.about__wrapper-content p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}

.about__wrapper-thumb {
    width: 0;
    flex-grow: 1;
    padding: 25px 27px 25px 0;
    position: relative;
    min-height: 100%;
}

.about__wrapper-thumb .main-img {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.about__wrapper-thumb .main-img:hover {
    transform: scale(1.02);
}

.about__wrapper-thumb .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 5px;
    height: 100%;
    left: 176px;
    overflow: hidden;
}

.about__wrapper-thumb .bg-img::before,
.about__wrapper-thumb .bg-img::after {
    border-radius: 5px;
    content: "";
    inset: 0;
    position: absolute;
}

.about__wrapper-thumb .bg-img::before {
    background: rgba(var(--btn-rgb), 0.8);
}

.about__wrapper-thumb .bg-img::after {
    inset: 7px;
    background: var(--bs-body-bg);
    opacity: 0.1;
}

.about__wrapper-thumb .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .about__wrapper-thumb .main-img {
        height: 450px;
        object-fit: cover;
    }

    .about__wrapper-thumb .bg-img {
        left: 40px;
    }
}

@media (max-width: 1199px) {
    .about__wrapper-content {
        max-width: 470px;
    }
}

@media (max-width: 991px) {
    .about__wrapper-content {
        max-width: 100%;
        padding: 5px 34px;
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .about__wrapper-content {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb {
        padding: 25px 25px 0;
    }
}

@media (max-width: 991px) and (max-width: 575px) {
    .about__wrapper-thumb {
        padding: 15px 15px 0;
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb .bg-img {
        left: 0;
        height: calc(100% - 50px);
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb .main-img {
        height: unset;
    }
}

/*Counter Section*/
.counter__item {
    display: flex;
    /* align-items: center; */
    padding: 25px;
    background: var(--section-bg);
    box-shadow: 0px 0px 15px rgba(4, 97, 165, 0.05);
    border-radius: 5px;
}

.counter__item-left {
    width: 50px;
    height: 50px;
}

.counter__item-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.counter__item-right {
    width: 0;
    flex-grow: 1;
    padding-left: 25px;
    max-height: 50px;
}

.counter__item-right h3 {
    line-height: 1.175;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .counter__item-right h3 {
        font-size: 22px;
    }
}

div[class*="col"]:nth-of-type(3n + 1) > .counter__item {
    color: #7f6daf;
}

div[class*="col"]:nth-of-type(3n + 2) > .counter__item {
    color: #c67123;
}

div[class*="col"]:nth-of-type(3n + 3) > .counter__item {
    color: #ff5a5a;
}

/*CTA Section*/
.cta-wrapper {
    border-radius: 10px;
    position: relative;
    padding: 60px 30px;
    overflow: hidden;
}

.cta-wrapper::before {
    background: linear-gradient(
        89.92deg,
        rgba(236, 247, 255, 0.85) 0.06%,
        rgba(216, 238, 255, 0.85) 52.6%,
        rgba(223, 241, 255, 0.85) 75.48%,
        rgba(216, 238, 255, 0.85) 99.92%
    );
    border-radius: 10px;
    inset: 0;
    content: "";
    position: absolute;
}

.cta-wrapper .content {
    position: relative;
    z-index: 1;
    max-width: 405px;
    margin: 0 auto;
    line-height: 1.4;
}

.cta-wrapper .content .title {
    margin-bottom: 24px;
}

.cta-wrapper .cmn--btn {
    padding: 12px 36px;
    border-radius: 30px;
    margin-top: 30px;
    position: relative;
}

@media (min-width: 992px) {
    .cta-wrapper .cmn--btn {
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 60px;
        border: none;
    }
}

.cta-wrapper .left-icon {
    position: absolute;
    right: calc(50% + 180px);
    bottom: 0;
}

@media (min-width: 992px) {
    .cta-wrapper .left-icon {
        right: calc(50% + 275px);
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        padding: 45px 20px;
    }
}

.cta-main {
    border-radius: 10px;
    overflow: hidden;
}

.text-btn-title {
    color: var(--btn-clr);
}

/*Dark CSS For CTA*/
.dark-theme .text-btn-title {
    color: var(--title-clr);
}

.dark-theme .cta-wrapper::before {
    background: linear-gradient(
        89.92deg,
        rgba(17, 26, 33, 0.8) 0.06%,
        rgba(17, 26, 33, 0.7) 52.6%,
        rgba(17, 26, 33, 0.8) 75.48%,
        rgba(17, 26, 33, 0.8) 99.92%
    );
}

/*NewsLetter Section*/
.newsletter-section {
    padding: 70px 0;
    position: relative;
}

.newsletter-section::before {
    content: "";
    inset: 0;
    position: absolute;
    background: #ecf7ff;
    opacity: 0.7;
}

.newsletter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.newsletter-wrapper .content {
    width: 100%;
    max-width: 405px;
    line-height: 20px;
    margin-right: 20px;
    color: var(--base-title);
}

.newsletter-wrapper .content .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--base-white);
    margin-bottom: 6px;
}

.newsletter-wrapper .content p {
    margin: 0;
}

@media (max-width: 991px) {
    .newsletter-wrapper .content {
        max-width: 340px;
    }
}

@media (max-width: 767px) {
    .newsletter-wrapper .content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.newsletter-wrapper .newsletter-right {
    width: 120px;
    flex-grow: 1;
    max-width: 596px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background: var(--bs-body-bg);
    border: none;
    box-shadow: none;
    border-radius: 30px;
    height: 55px;
    color: var(--title-clr);
    padding: 0 130px 0 20px;
}

.newsletter-form .cmn--btn {
    top: 3px;
    right: 3px;
    width: 122px;
    height: 49px;
    border-radius: 25px;
    position: absolute;
}

@media (max-width: 767px) {
    .newsletter-form .form-control {
        height: 45px;
    }

    .newsletter-form .cmn--btn {
        height: 39px;
    }
}

.bg__img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*Dark CSS For Newsletter*/
.dark-theme .newsletter-section::before {
    background: #111a21;
}

/*Testimonial Section*/
.testimonial__item {
    text-align: center;
    padding: 41px 28px 43px;
    /* margin: 20px; */
    line-height: 1.6;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 1 !important;
    background: var(--section-bg-2);
}

.testimonial__item-wrapper {
    opacity: 0.4;
}

.swiper-slide-active .testimonial__item-wrapper {
    opacity: 1;
}

.testimonial__item-img {
    width: 120px;
    border-radius: 5px;
    margin: 0 auto;
}

.testimonial__item-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 5px;
    object-fit: cover;
}

.testimonial__item-cont {
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .testimonial__item {
        font-size: 12px;
        padding: 25px 15px 25px;
    }

    .testimonial__item-img {
        width: 80px;
    }
}

.testimonial-section {
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-slider blockquote {
    margin: 15px 0 0;
}

.testimonial-slider .swiper-slide-active {
    background: var(--section-bg-2);
    box-shadow: 0px 0px 20px rgba(4, 97, 165, 0.15);
    border-radius: 5px;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.swiper-slide-next .testimonial__item,
.swiper-slide-prev .testimonial__item {
    transform: scale(0.75);
    opacity: 0.7;
    z-index: 5;
}

.swiper-slide-next-next .testimonial__item,
.swiper-slide-prev-prev .testimonial__item {
    transform: scale(0.65);
    opacity: 0.2;
    z-index: 1;
}

.swiper-slide-next-next,
.swiper-slide-prev-prev {
    transform: scale(0.65);
    opacity: 0.2;
    z-index: 1;
}

@media (max-width: 991px) {
    .swiper-slide {
        margin: 12px !important;
    }

    .swiper-slide:not(.swiper-slide-active) .testimonial__item {
        transform: scale(0.95) !important;
    }

    .swiper-slide-next-next,
    .swiper-slide-prev-prev {
        display: none;
    }

    .swiper-slide-next .testimonial__item,
    .swiper-slide-prev .testimonial__item {
        transform: scale(0.75) !important;
    }
}

@media (max-width: 767px) {
    .testimonial-slider {
        max-width: 360px;
        margin: 0 auto;
    }

    .swiper-wrapper {
        overflow: visible;
    }
}

.slider-bottom {
    margin-top: 10px;
}

.slider-bottom .owl-btn {
    font-size: 26px;
    font-weight: 700;
    color: var(--btn-clr);
    cursor: pointer;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn i {
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn:hover i {
    transform: translateX(5px) scale(1.1);
}

.slider-bottom .owl-btn:first-child:hover i {
    transform: translateX(-5px) scale(1.1);
}

.slider-bottom .owl-btn-next:hover i {
    transform: translateX(-5px) scale(1.1);
}

.app-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.app-slider-wrapper .app-content {
    width: 100%;
    max-width: 686px;
    text-align: center;
    padding: 86px 30px 42px;
    background: var(--section-bg);
    box-shadow: 0px 0px 20px rgba(4, 97, 165, 0.05);
    border-radius: 5px;
}

.app-slider-wrapper .app-content .subtitle {
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-content {
        max-width: 620px;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-content {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper .app-content {
        max-width: 100%;
        padding: 40px 20px 25px;
    }
}

.app-slider-wrapper .app-thumb {
    width: 357px;
    height: 511px;
    position: relative;
    margin-right: 80px;
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper .app-thumb {
        margin: 25px auto 0;
        height: unset;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 52%;
    }
}

@media (max-width: 575px) {
    .app-slider-wrapper .app-thumb {
        width: 290px;
    }

    .app-slider-wrapper .app-thumb .main-thumb,
    .app-slider-wrapper .app-thumb .smaller-thumb {
        width: 200px;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 60%;
        transform: translateY(-50%) scale(0.6) !important;
        right: 120px;
    }
}

.smaller-thumb,
.main-thumb {
    width: 246px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.smaller-thumb .main-img,
.main-thumb .main-img {
    width: 100%;
}

.smaller-thumb .app-slider,
.main-thumb .app-slider {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    width: calc(100% - 20px);
    z-index: -1;
    overflow: hidden;
    border-radius: 25px;
}

.smaller-thumb {
    top: 50%;
    transform: translateY(-50%) scale(0.84);
    position: absolute;
    z-index: 1;
    right: 140px;
}

.scroll-elem {
    top: -100px;
    visibility: hidden;
    opacity: 0;
    position: relative;
}

.page-header {
    border-radius: 10px;
    position: relative;
    padding: 60px 0;
    text-align: center;
}

.page-header::before {
    content: "";
    inset: 0;
    position: absolute;
    border-radius: 10px;
    background: rgba(var(--btn-rgb), 0.5);
}

.page-header .title {
    position: relative;
    z-index: 1;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
}

@media (max-width: 575px) {
    .page-header .title {
        font-size: 24px;
    }
}

.form--control:not(button) {
    background: var(--bs-body-bg) !important;
    border: 1px solid var(--border-clr);
    box-shadow: none !important;
    outline: none;
    padding: 0 15px;
    border-radius: 5px;
    color: var(--title-clr) !important;
}

.form--control:not(button):focus {
    border-color: var(--btn-clr) !important;
}

.form--control:not(button)::placeholder {
    color: var(--body-clr) !important;
}

.form--control {
    height: 45px;
}

button.form--control {
    height: 45px;
    width: auto;
    border-radius: 25px;
    min-width: 141px;
}

textarea.form--control {
    height: 120px;
    padding: 20px;
}

.dark-theme .page-header {
    background: rgba(var(--btn-rgb), 0.3);
}

.contact__item {
    padding: 29px 30px;
    line-height: 1.5;
    box-shadow: 0px 4px 10px rgba(var(--title-rgb), 0.06);
    background: var(--bs-body-bg);
}

.contact__item * {
    transition: all ease 0.3s;
}

.contact__item-icon {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 9px;
}

.contact__item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 9px;
}

.contact__item ul li a {
    color: var(--body-clr);
}

.contact__item:hover ul li,
.contact__item:hover ul li a,
.contact__item:hover .contact__item-title,
.contact__item:hover .contact__item-icon {
    color: var(--base-clr);
}

@media (max-width: 450px) {
    .contact__item {
        padding: 15px;
        font-size: 12px;
    }

    .contact__item-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact__item-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

.shadow-form {
    box-shadow: 0px 0px 15px rgba(var(--title-rgb), 0.07);
    padding: 30px 31px 33px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.cmn--btn {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-clr);
    background: var(--btn-clr);
    padding: 4px 20px;
    line-height: 25px;
    border-radius: 18px;
    border: 1px solid var(--btn-clr);
    transition: all ease 0.3s;
}

.cmn--btn:hover {
    color: var(--white-clr);
    /* opacity: 0.8; */
    background: var(--btn-clr-dark);
}

.cmn--btn2 {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--base-clr);
    background: rgba(var(--btn-rgb), 0.05);
    padding: 5px 16px;
    line-height: 26px;
    border-radius: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmn--btn2 i {
    font-size: 18px;
    margin-left: 5px;
    font-weight: 700;
}

.cmn--btn2:hover {
    color: var(--white-clr);
    /* filter: brightness(0.8); */
    background: var(--btn-clr);
}

.bg--body {
    background-color: var(--bs-body-bg) !important;
}

.bg--section {
    background-color: var(--section-bg) !important;
}

.btn--base,
.badge--base,
.bg--base {
    background-color: var(--base-clr) !important;
    border-color: var(--base-clr) !important;
}

.btn--title,
.badge--title,
.bg--title {
    background-color: var(--title-clr) !important;
    border-color: var(--title-clr) !important;
}

.text--primary {
    color: #0c67a3 !important;
}

.text--secondary {
    color: #668799 !important;
}

.text--success {
    color: #0ead69 !important;
}

.text--danger {
    color: #d90429 !important;
}

.text--warning {
    color: #ee9b00 !important;
}

.text--info {
    color: #00b4d8 !important;
}

.text--dark {
    color: #192a56 !important;
}

.text--white {
    color: #fff !important;
}

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
    color: #daddff;
}

.text--black {
    color: #000 !important;
}

.text--body {
    color: var(--body-clr) !important;
}

.text--base {
    color: var(--base-clr) !important;
}

.text--btn {
    color: var(--btn-clr) !important;
}

.text--title {
    color: var(--title-clr) !important;
}

/*# sourceMappingURL=main.css.map */

.top-padding {
    padding-inline-start: 20px;
}

.dark-theme {
    --bs-body-bg: #121213;
    --header-bg: #11202be6;
    --footer: #001f35;
    --footer-bottom: #111a21;
}

.navbar-nav .dropdown-menu.lang-menu {
    position: absolute;
}

@media (max-width: 575px) {
    .navbar-nav .dropdown-menu.lang-menu {
        left: unset;
        right: 0;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .js-navbar-vertical-aside-toggle-invoker {
        margin-right: 0 !important;
    }
}

/* .lagn-drop-btn {
    background: var(--bs-body-bg);
    padding: 10px 20px !important;
    border-radius: 10px;
    min-width: 200px;
} */
.lagn-drop-btn > span::before {
    display: none;
}

@media (max-width: 1199px) {
    .lagn-drop-btn {
        min-width: initial;
        padding: 10px !important;
    }
}

.lagn-drop-btn + .dropdown-menu {
    min-width: 200px;
}

.lagn-drop-btn + .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--bs-body-bg);
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--bs-primary);
}

.dropdown-menu {
    box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05),
        0px 0.75rem 1.5rem -0.25rem rgba(65, 83, 179, 0.05);
    border: none;
    border-radius: 0.625rem;
}

.color-text {
    color: var(--base-title);
}

.subscribe-form-group {
    position: relative;
    display: flex;
    align-items: center;
    inline-size: clamp(100%, 95vw, 90%);
}

.subscribe-form-group .form-control {
    border: 1px solid rgba(4, 97, 165, 0.2);
    border-radius: 1.875rem;
    color: #8a8a8a;
    background: var(--section-bg-2);
    height: 3.4375rem;
    padding: 1rem 1.5rem;
}

.subscribe-form-group .cmn--btn {
    position: absolute !important;
    right: unset;
    inset-inline-end: 0.3125rem;
    block-size: calc(100% - 0.625rem);
    display: flex;
    align-items: center;
    margin: 0;
    padding: 1rem 1.5rem;
}

.footer-social a {
    border-radius: 100px;
}

.footer-social a:hover {
    box-shadow: var(--base-shadow);
}

.footer-social img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 100px;
}

.gap-10 {
    gap: 0.625rem;
}

.navbar-bottom-wrapper .menu li a:focus-visible {
    border: none !important;
}

.subscribe-newsletter {
    background: url("../img/newsletter-bg.png") no-repeat center;
    background-size: cover;
}
.py-75{
    padding-block: 75px
}

.subscribe-btn{
    position: absolute;
    inset-inline-end: 3px;
    padding-block: 8px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    z-index: 9;
}


.preloader {
    position: fixed;
    inline-size: 100%;
    block-size: 100%;
    background-color: #fff;
    z-index: 9999999;
    display: grid;
    place-items: center;
}
.dark-theme .preloader{
    background-color: #000 !important;
}

.preloader::after {
    content: "";
    position: absolute;
    border: 0.3rem solid var(--bs-primary);
    border-radius: 50%;
    border-top: 0.3rem solid #fff;
    width: 2.75rem;
    height: 2.75rem;
    /* Safari */
    animation: spin 1s linear infinite;
}

.dark-theme .preloader::after{
    border-top: 0.3rem solid #dfe1e2;
}

/* Safari */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ===== TOS TOS BRAND OVERRIDE START ===== */
/* ===== Tos Tos Service Brand Override ===== */

@font-face {
    font-family: 'HacenLiner';
    src: url('/assets/tostos-brand/fonts/HacenLiner.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root,
[data-bs-theme="light"],
[data-bs-theme="dark"] {
    --tos-admin-primary: #36788d;
    --tos-admin-secondary: #05485d;
    --tos-admin-accent: #46b3ad;
    --tos-active-text: #cdefed;

    --tos-landing-primary: #36788d;
    --tos-landing-secondary: #cdefed;

    --bs-primary: #36788d !important;
    --bs-primary-rgb: 54, 120, 141 !important;
    --bs-secondary: #05485d !important;
    --bs-secondary-rgb: 5, 72, 93 !important;
    --bs-link-color: #36788d !important;
    --bs-link-hover-color: #05485d !important;
    --bs-body-font-family: 'HacenLiner', sans-serif !important;
    --bs-font-sans-serif: 'HacenLiner', sans-serif !important;
}

/* الخط العام، مع استثناء الأيقونات لاحقاً */
html,
body,
button,
input,
select,
textarea,
label,
a,
p,
span,
div,
small,
strong,
table,
.btn,
.form-control,
.form-select,
.dropdown-menu,
.nav,
.navbar,
.card {
    font-family: 'HacenLiner', sans-serif !important;
}

/* لا نغيّر حجم القائمة الجانبية */
.sidebar,
.sidebar *,
.navbar-vertical,
.navbar-vertical *,
.aside,
.aside *,
.menu,
.menu * {
    font-size: revert !important;
    line-height: revert !important;
}

/* Material icons: لا تجعلها تستخدم خط Hacen */
.material-icons,
.material-icons-outlined,
.material-icons-round,
.material-icons-sharp,
.material-icons-two-tone,
.material-symbols-outlined,
.material-symbols-rounded,
.material-symbols-sharp {
    font-family: 'Material Icons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 22px !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
    word-wrap: normal !important;
    direction: ltr !important;
    -webkit-font-feature-settings: 'liga' !important;
    font-feature-settings: 'liga' !important;
    -webkit-font-smoothing: antialiased !important;
}

.material-icons-outlined,
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded' !important;
}

.material-symbols-sharp {
    font-family: 'Material Symbols Sharp' !important;
}

/* لون الأيقونات في القائمة الجانبية مختلف عن النص */
.sidebar .material-icons,
.sidebar .material-icons-outlined,
.sidebar .material-symbols-outlined,
.navbar-vertical .material-icons,
.navbar-vertical .material-icons-outlined,
.navbar-vertical .material-symbols-outlined,
.aside .material-icons,
.aside .material-icons-outlined,
.aside .material-symbols-outlined,
.menu .material-icons,
.menu .material-icons-outlined,
.menu .material-symbols-outlined {
    color: #46b3ad !important;
}

/* نص القائمة يبقى بلون أساسي */
.sidebar .link-title,
.navbar-vertical .link-title,
.aside .link-title,
.menu .link-title {
    color: #05485d !important;
    font-family: 'HacenLiner', sans-serif !important;
}

/* الأزرار الأساسية */
.btn-primary,
.btn--primary,
.bg-primary,
.badge-primary {
    background-color: #36788d !important;
    border-color: #36788d !important;
    color: #ffffff !important;
}

.btn-primary *,
.btn--primary *,
.bg-primary *,
.badge-primary * {
    color: #ffffff !important;
}

.btn-primary:hover,
.btn--primary:hover,
.btn-primary:focus,
.btn--primary:focus {
    background-color: #05485d !important;
    border-color: #05485d !important;
    color: #ffffff !important;
}

/* أزرار ثانوية */
.btn-secondary,
.btn--secondary,
.bg-secondary,
.badge-secondary {
    background-color: #05485d !important;
    border-color: #05485d !important;
    color: #ffffff !important;
}

/* كل الحالات النشطة في لوحة التحكم */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
button.active,
a.active.btn,
.page-item.active .page-link,
.list-group-item.active,
.dropdown-item.active,
.dropdown-item:active,
[class*="active-menu"],
[class*="active_menu"],
.nav-link.active {
    background-color: #36788d !important;
    border-color: #36788d !important;
    color: #cdefed !important;
}

.nav-pills .nav-link.active *,
.nav-pills .show > .nav-link *,
.nav-tabs .nav-link.active *,
.nav-tabs .nav-item.show .nav-link *,
.btn-check:checked + .btn *,
.btn.active *,
.btn.show *,
button.active *,
a.active.btn *,
.page-item.active .page-link *,
.list-group-item.active *,
.dropdown-item.active *,
.dropdown-item:active *,
[class*="active-menu"] *,
[class*="active_menu"] *,
.nav-link.active * {
    color: #cdefed !important;
}

/* الأيقونة داخل العنصر النشط */
.sidebar [class*="active"] .material-icons,
.sidebar [class*="active"] .material-icons-outlined,
.sidebar [class*="active"] .material-symbols-outlined,
.navbar-vertical [class*="active"] .material-icons,
.navbar-vertical [class*="active"] .material-icons-outlined,
.navbar-vertical [class*="active"] .material-symbols-outlined {
    color: #cdefed !important;
}

/* الحقول */
.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: #46b3ad !important;
    box-shadow: 0 0 0 .15rem rgba(70, 179, 173, .18) !important;
}

/* السويتشات */
.form-check-input:checked,
input[type="checkbox"]:checked,
.switch input:checked + span,
.switcher_input:checked + .switcher_control {
    background-color: #46b3ad !important;
    border-color: #46b3ad !important;
}

/* روابط وألوان عامة */
.text-primary,
.text--primary,
a,
a:hover {
    color: #36788d !important;
}

.border-primary {
    border-color: #36788d !important;
}

/* الخلفيات الفاتحة */
.bg-primary-light,
.bg-soft-primary,
.primary-light,
.alert-primary {
    background-color: #cdefed !important;
    color: #05485d !important;
}

/* ===== Landing page ===== */

.landing-page,
.landing-page *,
.__landing,
.__landing *,
.footer,
.footer * {
    font-family: 'HacenLiner', sans-serif !important;
}

.landing-page .btn-primary,
.__landing .btn-primary,
.header .btn-primary,
.hero-section .btn-primary,
.newsletter .btn-primary,
.subscribe .btn-primary,
.footer .btn-primary {
    background-color: #36788d !important;
    border-color: #36788d !important;
    color: #ffffff !important;
}

.landing-page .btn-primary:hover,
.__landing .btn-primary:hover,
.header .btn-primary:hover,
.hero-section .btn-primary:hover,
.newsletter .btn-primary:hover,
.subscribe .btn-primary:hover,
.footer .btn-primary:hover {
    background-color: #05485d !important;
    border-color: #05485d !important;
    color: #ffffff !important;
}

.header,
.landing-header,
.navbar-area {
    background-color: #cdefed !important;
}

.header a,
.landing-header a,
.navbar-area a {
    color: #05485d !important;
}

.header a:hover,
.landing-header a:hover,
.navbar-area a:hover {
    color: #36788d !important;
}

.newsletter,
.newsletter-section,
.subscribe-section {
    background-color: #cdefed !important;
    color: #36788d !important;
}

.newsletter *,
.newsletter-section *,
.subscribe-section * {
    color: #36788d !important;
}

.footer,
.footer-area,
.footer-section,
.footer-bottom {
    background-color: #05485d !important;
    color: #ffffff !important;
}

.footer *,
.footer-area *,
.footer-section *,
.footer-bottom * {
    color: #ffffff !important;
}

.footer a,
.footer-area a,
.footer-section a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.86) !important;
}

.footer a:hover,
.footer-area a:hover,
.footer-section a:hover,
.footer-bottom a:hover {
    color: #cdefed !important;
}

/* سلايدر الهبوط */
.swiper-button-next,
.swiper-button-prev,
.owl-next,
.owl-prev,
.slick-next,
.slick-prev {
    color: #36788d !important;
    border-color: #36788d !important;
}

.swiper-pagination-bullet-active,
.owl-dot.active,
.slick-dots li.slick-active button {
    background-color: #36788d !important;
}

/* ===== TOS TOS BRAND OVERRIDE END ===== */


/* ===== TOS TOS LANDING FINE TUNE START ===== */

/* Brand colors for landing only */
:root {
    --tos-landing-button: #34788d;
    --tos-landing-text: #115c73;
    --tos-landing-shadow: #c3e5e2;
    --tos-landing-light: #cdefed;
}

/* General blue text replacement */
body,
body .landing,
body .landing-page {
    color: #111111;
}

a,
a:hover,
.section-title,
.section-title *,
.title,
.title *,
.card-title,
.card-title *,
h1 span,
h2 span,
h3 span,
.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card a,
.category-card h1,
.category-card h2,
.category-card h3,
.category-card h4,
.category-card a,
.testimonial-item h1,
.testimonial-item h2,
.testimonial-item h3,
.testimonial-item h4,
.testimonial-item a,
.newsletter-section h1,
.newsletter-section h2,
.newsletter-section h3,
.newsletter-section h4,
.newsletter-section p,
.subscribe-section h1,
.subscribe-section h2,
.subscribe-section h3,
.subscribe-section h4,
.subscribe-section p {
    color: #115c73 !important;
}

/* Header buttons and subscribe/contact buttons */
.header .btn,
.header a.btn,
.navbar .btn,
.navbar a.btn,
.navbar-area .btn,
.navbar-area a.btn,
.newsletter .btn,
.newsletter button,
.newsletter-section .btn,
.newsletter-section button,
.subscribe-section .btn,
.subscribe-section button,
button[type="submit"],
input[type="submit"],
.cmn-btn,
.custom-btn,
.theme-btn,
.default-btn,
.primary-btn,
.app-btn {
    background-color: #34788d !important;
    border-color: #34788d !important;
    color: #000000 !important;
}

.header .btn *,
.header a.btn *,
.navbar .btn *,
.navbar a.btn *,
.navbar-area .btn *,
.navbar-area a.btn *,
.newsletter .btn *,
.newsletter button *,
.newsletter-section .btn *,
.newsletter-section button *,
.subscribe-section .btn *,
.subscribe-section button *,
.cmn-btn *,
.custom-btn *,
.theme-btn *,
.default-btn *,
.primary-btn *,
.app-btn * {
    color: #000000 !important;
}

/* Button hover: no blue */
.header .btn:hover,
.header a.btn:hover,
.navbar .btn:hover,
.navbar a.btn:hover,
.navbar-area .btn:hover,
.navbar-area a.btn:hover,
.newsletter .btn:hover,
.newsletter button:hover,
.newsletter-section .btn:hover,
.newsletter-section button:hover,
.subscribe-section .btn:hover,
.subscribe-section button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.cmn-btn:hover,
.custom-btn:hover,
.theme-btn:hover,
.default-btn:hover,
.primary-btn:hover,
.app-btn:hover {
    background-color: #c3e5e2 !important;
    border-color: #34788d !important;
    color: #000000 !important;
}

/* Outline/read more buttons */
.btn-outline-primary,
.outline-btn,
.service-card .btn,
.category-card .btn,
.card .btn {
    color: #115c73 !important;
    border-color: #34788d !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.outline-btn:hover,
.service-card .btn:hover,
.category-card .btn:hover,
.card .btn:hover {
    color: #000000 !important;
    border-color: #34788d !important;
    background-color: #c3e5e2 !important;
}

/* Replace blue box-shadow with Tos Tos shadow */
.shadow,
.card,
.service-card,
.category-card,
.testimonial-item,
.about-thumb,
.about-img,
.image-wrapper,
.img-wrapper,
[class*="shadow"] {
    box-shadow: 0 10px 35px rgba(195, 229, 226, 0.75) !important;
}

/* Blue image overlay / middle image tone */
.about-thumb::before,
.about-thumb::after,
.about-img::before,
.about-img::after,
.image-wrapper::before,
.image-wrapper::after,
[class*="thumb"]::before,
[class*="thumb"]::after {
    background-color: rgba(195, 229, 226, 0.55) !important;
}

/* Slider arrows / pagination */
.swiper-button-next,
.swiper-button-prev,
.owl-next,
.owl-prev,
.slick-next,
.slick-prev,
.carousel-control-next,
.carousel-control-prev {
    color: #115c73 !important;
    border-color: #34788d !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.owl-next:hover,
.owl-prev:hover,
.slick-next:hover,
.slick-prev:hover {
    color: #000000 !important;
    background-color: #c3e5e2 !important;
    border-color: #34788d !important;
}

.swiper-pagination-bullet-active,
.owl-dot.active,
.slick-dots li.slick-active button {
    background-color: #34788d !important;
}

/* Newsletter area */
.newsletter,
.newsletter-section,
.subscribe-section {
    background-color: #cdefed !important;
}

.newsletter input,
.newsletter-section input,
.subscribe-section input {
    color: #111111 !important;
}

/* Footer text: black */
.footer,
.footer-area,
.footer-section,
.footer-bottom {
    color: #000000 !important;
}

.footer *,
.footer-area *,
.footer-section *,
.footer-bottom * {
    color: #000000 !important;
}

.footer a,
.footer-area a,
.footer-section a,
.footer-bottom a {
    color: #115c73 !important;
}

.footer a:hover,
.footer-area a:hover,
.footer-section a:hover,
.footer-bottom a:hover {
    color: #34788d !important;
}

/* Keep app store badges/images natural */
.footer img,
.footer-area img,
.footer-section img,
.footer-bottom img,
.app-store img,
.play-store img {
    color: unset !important;
    filter: none !important;
}

/* Direct old blue overrides */
[style*="#0461a5"],
[style*="#0461A5"],
[style*="rgb(4, 97, 165)"] {
    color: #115c73 !important;
    border-color: #34788d !important;
}

[style*="background"],
[style*="#0461a5"],
[style*="#0461A5"] {
    border-color: #34788d !important;
}

/* ===== TOS TOS LANDING FINE TUNE END ===== */


/* ===== TOS TOS LANDING FINAL FIX START ===== */

/* Main landing colors */
:root {
    --tos-landing-btn: #267189;
    --tos-landing-text: #115c73;
    --tos-landing-soft: #c3e5e2;
}

/* Replace most remaining blue text */
body a,
body a:not(.btn):not([class*="btn"]),
body .text-primary,
body [class*="text-primary"],
body [class*="title"],
body [class*="heading"],
body [class*="subtitle"],
body [class*="section-title"],
body [class*="service"] a,
body [class*="category"] a,
body [class*="newsletter"] h1,
body [class*="newsletter"] h2,
body [class*="newsletter"] h3,
body [class*="newsletter"] h4,
body [class*="newsletter"] p,
body [class*="subscribe"] h1,
body [class*="subscribe"] h2,
body [class*="subscribe"] h3,
body [class*="subscribe"] h4,
body [class*="subscribe"] p {
    color: #115c73 !important;
}

/* All landing buttons and button-like links */
body .btn,
body [class*="btn"],
body [class*="button"],
body [class*="cmn"],
body [class*="theme-btn"],
body [class*="custom-btn"],
body [class*="default-btn"],
body [class*="primary-btn"],
body [class*="read-more"],
body a[href*="contact"],
body a[href*="newsletter"],
body a[href*="subscribe"],
body button,
body button[type="submit"],
body input[type="submit"] {
    background-color: #267189 !important;
    border-color: #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

/* Button inner text */
body .btn *,
body [class*="btn"] *,
body [class*="button"] *,
body [class*="cmn"] *,
body [class*="theme-btn"] *,
body [class*="custom-btn"] *,
body [class*="default-btn"] *,
body [class*="primary-btn"] *,
body [class*="read-more"] *,
body button *,
body button[type="submit"] *,
body input[type="submit"] * {
    color: #000000 !important;
}

/* Button hover */
body .btn:hover,
body [class*="btn"]:hover,
body [class*="button"]:hover,
body [class*="cmn"]:hover,
body [class*="theme-btn"]:hover,
body [class*="custom-btn"]:hover,
body [class*="default-btn"]:hover,
body [class*="primary-btn"]:hover,
body [class*="read-more"]:hover,
body a[href*="contact"]:hover,
body a[href*="newsletter"]:hover,
body a[href*="subscribe"]:hover,
body button:hover,
body button[type="submit"]:hover,
body input[type="submit"]:hover {
    background-color: #c3e5e2 !important;
    border-color: #267189 !important;
    color: #000000 !important;
}

/* Outline / card read more buttons */
body .card a,
body [class*="card"] a,
body [class*="service"] a,
body [class*="category"] a {
    color: #115c73 !important;
}

body .card a:hover,
body [class*="card"] a:hover,
body [class*="service"] a:hover,
body [class*="category"] a:hover {
    color: #000000 !important;
}

/* Soft shadow instead of blue shadow */
body .shadow,
body [class*="shadow"],
body .card,
body [class*="card"],
body [class*="thumb"],
body [class*="image"],
body [class*="img"],
body [class*="about"] {
    box-shadow: 0 10px 35px rgba(195, 229, 226, 0.75) !important;
}

/* Image overlays */
body [class*="thumb"]::before,
body [class*="thumb"]::after,
body [class*="image"]::before,
body [class*="image"]::after,
body [class*="img"]::before,
body [class*="img"]::after,
body [class*="about"]::before,
body [class*="about"]::after {
    background-color: rgba(195, 229, 226, 0.58) !important;
}

/* Footer: make all text black, even text-white classes */
footer,
footer *,
body [class*="footer"],
body [class*="footer"] *,
body [class*="Footer"],
body [class*="Footer"] *,
body .text-white,
body [class*="footer"] .text-white,
body [class*="footer"] [class*="text-white"] {
    color: #000000 !important;
}

/* Footer links */
footer a,
body [class*="footer"] a,
body [class*="Footer"] a {
    color: #115c73 !important;
}

footer a:hover,
body [class*="footer"] a:hover,
body [class*="Footer"] a:hover {
    color: #267189 !important;
}

/* Keep footer images/store badges normal */
footer img,
body [class*="footer"] img,
body [class*="Footer"] img {
    filter: none !important;
}

/* Slider arrows and dots */
body .swiper-button-next,
body .swiper-button-prev,
body .owl-next,
body .owl-prev,
body .slick-next,
body .slick-prev,
body [class*="swiper"]::after {
    color: #115c73 !important;
    border-color: #267189 !important;
}

body .swiper-button-next:hover,
body .swiper-button-prev:hover,
body .owl-next:hover,
body .owl-prev:hover,
body .slick-next:hover,
body .slick-prev:hover {
    background-color: #c3e5e2 !important;
    color: #000000 !important;
}

body .swiper-pagination-bullet-active,
body .owl-dot.active,
body .slick-dots li.slick-active button {
    background-color: #267189 !important;
}

/* Direct old-blue hard overrides */
body [style*="#0461a5"],
body [style*="#0461A5"],
body [style*="rgb(4, 97, 165)"],
body [style*="#006eb6"],
body [style*="#0d6efd"],
body [style*="#007bff"] {
    color: #115c73 !important;
    border-color: #267189 !important;
}

/* ===== TOS TOS LANDING FINAL FIX END ===== */


/* ===== TOS TOS LANDING CLEANUP START ===== */

/* Apply Hacen font more consistently on landing */
body,
body *:not(i):not(.la):not([class^="la-"]):not([class*=" la-"]):not(.material-icons):not(.material-symbols-outlined) {
    font-family: 'HacenLiner', sans-serif !important;
}

/* Main landing text color */
body a:not(.btn):not(.cmn-btn):not(.custom-btn):not(.theme-btn):not(.default-btn):not(.primary-btn),
body p,
body li,
body span,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    color: #115c73 !important;
}

/* Reverse button colors:
   normal = light, hover = darker */
body .btn,
body a.btn,
body .cmn-btn,
body .custom-btn,
body .theme-btn,
body .default-btn,
body .primary-btn,
body button[type="submit"],
body input[type="submit"],
body .newsletter button,
body .newsletter-section button,
body .subscribe-section button,
body .header .btn,
body .navbar .btn,
body .navbar-area .btn {
    background-color: #c3e5e2 !important;
    border-color: #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

body .btn *,
body a.btn *,
body .cmn-btn *,
body .custom-btn *,
body .theme-btn *,
body .default-btn *,
body .primary-btn *,
body button[type="submit"] *,
body .newsletter button *,
body .newsletter-section button *,
body .subscribe-section button *,
body .header .btn *,
body .navbar .btn *,
body .navbar-area .btn * {
    color: #000000 !important;
}

body .btn:hover,
body a.btn:hover,
body .cmn-btn:hover,
body .custom-btn:hover,
body .theme-btn:hover,
body .default-btn:hover,
body .primary-btn:hover,
body button[type="submit"]:hover,
body input[type="submit"]:hover,
body .newsletter button:hover,
body .newsletter-section button:hover,
body .subscribe-section button:hover,
body .header .btn:hover,
body .navbar .btn:hover,
body .navbar-area .btn:hover {
    background-color: #267189 !important;
    border-color: #267189 !important;
    color: #000000 !important;
}

/* Remove wrong backgrounds from normal text blocks */
body p,
body span,
body small,
body li,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .section-title,
body .section-title *,
body .subtitle,
body .subtitle *,
body .title,
body .title *,
body .content,
body .content *,
body [class*="text"],
body [class*="title"] {
    background-color: transparent !important;
}

/* Provider/register text should not look like a button */
body [class*="provider"] p,
body [class*="provider"] span,
body [class*="provider"] h1,
body [class*="provider"] h2,
body [class*="provider"] h3,
body [class*="provider"] h4,
body [class*="provider"] .title,
body [class*="provider"] .subtitle,
body [class*="register"] p,
body [class*="register"] span,
body [class*="register"] h1,
body [class*="register"] h2,
body [class*="register"] h3,
body [class*="register"] h4,
body [class*="register"] .title,
body [class*="register"] .subtitle {
    background-color: transparent !important;
    color: #115c73 !important;
}

/* Slider arrows are controls, not filled buttons */
body .swiper-button-next,
body .swiper-button-prev,
body .owl-next,
body .owl-prev,
body .slick-next,
body .slick-prev,
body .carousel-control-next,
body .carousel-control-prev {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #115c73 !important;
    box-shadow: none !important;
}

body .swiper-button-next:hover,
body .swiper-button-prev:hover,
body .owl-next:hover,
body .owl-prev:hover,
body .slick-next:hover,
body .slick-prev:hover,
body .carousel-control-next:hover,
body .carousel-control-prev:hover {
    background-color: transparent !important;
    color: #267189 !important;
}

/* Footer should use black/dark readable text without button backgrounds */
footer,
footer *,
body [class*="footer"],
body [class*="footer"] *,
body [class*="Footer"],
body [class*="Footer"] * {
    color: #000000 !important;
    font-family: 'HacenLiner', sans-serif !important;
}

footer a,
body [class*="footer"] a,
body [class*="Footer"] a {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #115c73 !important;
    box-shadow: none !important;
}

footer a:hover,
body [class*="footer"] a:hover,
body [class*="Footer"] a:hover {
    background-color: transparent !important;
    color: #267189 !important;
}

/* Keep store badges/images normal */
footer img,
body [class*="footer"] img,
body [class*="Footer"] img,
.app-store img,
.play-store img {
    background-color: transparent !important;
    filter: none !important;
}

/* Language dropdown / floating language switcher */
body [class*="language"] a,
body [class*="language"] button,
body [class*="lang"] a,
body [class*="lang"] button,
body .dropdown-menu a,
body .dropdown-menu button,
body .dropdown-item {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #115c73 !important;
    box-shadow: none !important;
}

body [class*="language"] a:hover,
body [class*="language"] button:hover,
body [class*="lang"] a:hover,
body [class*="lang"] button:hover,
body .dropdown-menu a:hover,
body .dropdown-menu button:hover,
body .dropdown-item:hover {
    background-color: #c3e5e2 !important;
    color: #000000 !important;
}

/* Shadows and soft borders */
body .card,
body [class*="card"],
body .shadow,
body [class*="shadow"],
body [class*="thumb"],
body [class*="image"],
body [class*="img"] {
    box-shadow: 0 10px 35px rgba(195, 229, 226, 0.65) !important;
}

/* Newsletter area */
body .newsletter,
body .newsletter-section,
body .subscribe-section {
    background-color: #cdefed !important;
}

body .newsletter input,
body .newsletter-section input,
body .subscribe-section input {
    color: #111111 !important;
}

/* ===== TOS TOS LANDING CLEANUP END ===== */


/* ===== TOS TOS LANDING FINAL POLISH START ===== */

/* Final button colors: light normally, darker on hover */
body .btn,
body a.btn,
body .cmn-btn,
body .custom-btn,
body .theme-btn,
body .default-btn,
body .primary-btn,
body button[type="submit"],
body input[type="submit"],
body .header .btn,
body .navbar .btn,
body .navbar-area .btn,
body .newsletter button,
body .newsletter-section button,
body .subscribe-section button {
    background-color: #c3e5e2 !important;
    border-color: #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

body .btn *,
body a.btn *,
body .cmn-btn *,
body .custom-btn *,
body .theme-btn *,
body .default-btn *,
body .primary-btn *,
body button[type="submit"] *,
body .header .btn *,
body .navbar .btn *,
body .navbar-area .btn *,
body .newsletter button *,
body .newsletter-section button *,
body .subscribe-section button * {
    color: #000000 !important;
}

body .btn:hover,
body a.btn:hover,
body .cmn-btn:hover,
body .custom-btn:hover,
body .theme-btn:hover,
body .default-btn:hover,
body .primary-btn:hover,
body button[type="submit"]:hover,
body input[type="submit"]:hover,
body .header .btn:hover,
body .navbar .btn:hover,
body .navbar-area .btn:hover,
body .newsletter button:hover,
body .newsletter-section button:hover,
body .subscribe-section button:hover {
    background-color: #3b8299 !important;
    border-color: #3b8299 !important;
    color: #000000 !important;
}

/* Do NOT style slider arrows as buttons */
body .swiper-button-next,
body .swiper-button-prev,
body .swiper-button-next:hover,
body .swiper-button-prev:hover,
body .owl-next,
body .owl-prev,
body .owl-next:hover,
body .owl-prev:hover,
body .slick-next,
body .slick-prev,
body .slick-next:hover,
body .slick-prev:hover,
body .carousel-control-next,
body .carousel-control-prev,
body .carousel-control-next:hover,
body .carousel-control-prev:hover,
body [class*="swiper-button"],
body [class*="swiper-button"]:hover,
body [class*="owl-"],
body [class*="owl-"]:hover,
body [class*="slick-"],
body [class*="slick-"]:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: #115c73 !important;
}

/* Slider arrow pseudo-elements */
body .swiper-button-next::after,
body .swiper-button-prev::after,
body .owl-next::after,
body .owl-prev::after,
body .slick-next::after,
body .slick-prev::after,
body .swiper-button-next:hover::after,
body .swiper-button-prev:hover::after,
body .owl-next:hover::after,
body .owl-prev:hover::after,
body .slick-next:hover::after,
body .slick-prev:hover::after {
    background-color: transparent !important;
    color: #115c73 !important;
}

/* Do NOT style app store / play store links as buttons */
body a:has(img),
body a:has(img):hover,
body .app-store,
body .app-store:hover,
body .play-store,
body .play-store:hover,
body [class*="app"] a,
body [class*="app"] a:hover,
body [class*="store"] a,
body [class*="store"] a:hover,
body [class*="download"] a:has(img),
body [class*="download"] a:has(img):hover,
footer a:has(img),
footer a:has(img):hover,
body [class*="footer"] a:has(img),
body [class*="footer"] a:has(img):hover {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

body a:has(img) img,
body a:has(img):hover img,
body .app-store img,
body .play-store img,
footer a:has(img) img,
body [class*="footer"] a:has(img) img {
    background-color: transparent !important;
    filter: none !important;
    box-shadow: none !important;
}

/* Text blocks must never get button background, including hover */
body p,
body p:hover,
body span,
body span:hover,
body small,
body small:hover,
body li,
body li:hover,
body h1,
body h1:hover,
body h2,
body h2:hover,
body h3,
body h3:hover,
body h4,
body h4:hover,
body h5,
body h5:hover,
body h6,
body h6:hover,
body .section-title,
body .section-title:hover,
body .section-title *,
body .section-title *:hover,
body .subtitle,
body .subtitle:hover,
body .subtitle *,
body .subtitle *:hover,
body .title,
body .title:hover,
body .title *,
body .title *:hover,
body .content,
body .content:hover,
body .content *,
body .content *:hover {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Provider/register paragraph must stay clean */
body [class*="provider"] p,
body [class*="provider"] p:hover,
body [class*="provider"] span,
body [class*="provider"] span:hover,
body [class*="register"] p,
body [class*="register"] p:hover,
body [class*="register"] span,
body [class*="register"] span:hover {
    background-color: transparent !important;
    color: #115c73 !important;
    box-shadow: none !important;
}

/* Remaining blue areas: convert to brand soft/dark */
body [style*="#0461a5"],
body [style*="#0461A5"],
body [style*="rgb(4, 97, 165)"],
body [style*="#006eb6"],
body [style*="#007bff"],
body [style*="#0d6efd"] {
    background-color: #c3e5e2 !important;
    border-color: #267189 !important;
    color: #115c73 !important;
}

/* Image frames / overlays that still look blue */
body [class*="thumb"],
body [class*="image"],
body [class*="img"],
body [class*="about"] {
    border-color: #c3e5e2 !important;
    box-shadow: 0 10px 35px rgba(195, 229, 226, 0.65) !important;
}

body [class*="thumb"]::before,
body [class*="thumb"]::after,
body [class*="image"]::before,
body [class*="image"]::after,
body [class*="img"]::before,
body [class*="img"]::after,
body [class*="about"]::before,
body [class*="about"]::after {
    background-color: rgba(195, 229, 226, 0.55) !important;
    border-color: #c3e5e2 !important;
}

/* Links keep brand color without backgrounds */
body a:not(.btn):not(.cmn-btn):not(.custom-btn):not(.theme-btn):not(.default-btn):not(.primary-btn),
body a:not(.btn):not(.cmn-btn):not(.custom-btn):not(.theme-btn):not(.default-btn):not(.primary-btn):hover {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #115c73 !important;
}

/* ===== TOS TOS LANDING FINAL POLISH END ===== */


/* ===== TOS TOS TARGETED LANDING FIX START ===== */

/* Override original blue variables used by landing */
:root,
.light-theme {
    --base-clr: #115c73 !important;
    --btn-clr: #c3e5e2 !important;
    --base-title: #115c73 !important;
    --base-white: #ffffff !important;
    --footer: #c3e5e2 !important;
    --footer-bottom: #cdefed !important;
}

/* Header contact button */
.navbar-bottom-wrapper .cmn--btn,
.navbar-bottom-wrapper .cmn--btn:link,
.navbar-bottom-wrapper .cmn--btn:visited {
    background: #c3e5e2 !important;
    border: 1px solid #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.navbar-bottom-wrapper .cmn--btn:hover {
    background: #3b8299 !important;
    border-color: #3b8299 !important;
    color: #000000 !important;
}

/* Service card buttons only */
.service__item-btn,
.service__item-btn:link,
.service__item-btn:visited {
    background: #c3e5e2 !important;
    border: 1px solid #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.service__item-btn:hover {
    background: #3b8299 !important;
    border-color: #3b8299 !important;
    color: #000000 !important;
}

/* Service card text */
.service__item-content .title,
.service__item-content .title a,
.service__item-content .txt,
.service__item-content .txt * {
    color: #115c73 !important;
    background: transparent !important;
}

/* Remove blue/active card overlay */
.service__item::before,
.service__item:hover::before {
    background: transparent !important;
    opacity: 0 !important;
}

.service__item,
.service__item:hover {
    border-color: #c3e5e2 !important;
    box-shadow: 0 12px 35px rgba(195,229,226,.45) !important;
}

/* CTA / Register as Provider */
.cta-wrapper {
    background: #d9f0f6 !important;
    box-shadow: none !important;
}

.cta-wrapper::before {
    background: #d9f0f6 !important;
    opacity: 1 !important;
}

.cta-wrapper .content,
.cta-wrapper .content *,
.cta-wrapper .content .title {
    background: transparent !important;
    color: #115c73 !important;
}

.cta-wrapper .cmn--btn,
.cta-wrapper .cmn--btn:link,
.cta-wrapper .cmn--btn:visited {
    background: #c3e5e2 !important;
    border: 1px solid #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.cta-wrapper .cmn--btn:hover {
    background: #3b8299 !important;
    border-color: #3b8299 !important;
    color: #000000 !important;
}

/* Newsletter */
.newsletter-section {
    background: #cdefed !important;
}

.newsletter-section::before {
    opacity: .22 !important;
}

.newsletter-wrapper .content .title,
.newsletter-wrapper .content p {
    color: #115c73 !important;
    background: transparent !important;
}

.newsletter-form .cmn--btn,
.newsletter-form .cmn--btn:link,
.newsletter-form .cmn--btn:visited {
    background: #c3e5e2 !important;
    border: 1px solid #267189 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

.newsletter-form .cmn--btn:hover {
    background: #3b8299 !important;
    border-color: #3b8299 !important;
    color: #000000 !important;
}

/* App download buttons: never paint their backgrounds */
.app-btns,
.app-btns a,
.app-btns a:hover,
.app-btns a:focus,
.footer__wrapper-widget .app-btns a,
.footer__wrapper-widget .app-btns a:hover {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.app-btns a img,
.app-btns a:hover img {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Footer exact classes */
.main-footer,
.footer-top,
.footer-bottom {
    background: #c3e5e2 !important;
    color: #000000 !important;
}

.footer__wrapper-widget,
.footer__wrapper-widget *,
.footer__wrapper-contact,
.footer__wrapper-contact *,
.footer__wrapper-contact h6,
.footer__wrapper-contact a,
.footer__wrapper-widget p {
    color: #000000 !important;
    background: transparent !important;
}

.footer__wrapper-link li a,
.footer__wrapper-link li a:link,
.footer__wrapper-link li a:visited {
    color: #115c73 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.footer__wrapper-link li a:hover,
.footer__wrapper-contact a:not(.cmn--btn):hover {
    color: #267189 !important;
    background: transparent !important;
}

/* Footer icons/images */
.footer__wrapper-contact .icon,
.footer__wrapper-contact img,
.footer__wrapper-widget img {
    background: transparent !important;
    box-shadow: none !important;
}

/* Testimonial arrows */
.slider-bottom .owl-btn,
.slider-bottom .owl-btn:hover,
.slider-bottom .owl-btn i,
.slider-bottom .owl-btn:hover i,
.service-slide-nav,
.service-slide-nav * {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #115c73 !important;
}

/* About image blue border/shadow */
.about__wrapper-thumb .main-img,
.about__wrapper-thumb .main-img:hover,
.about__wrapper-thumb .bg-img {
    border-color: #c3e5e2 !important;
    box-shadow: 0 12px 35px rgba(195,229,226,.55) !important;
}

.about__wrapper-thumb .bg-img::before,
.about__wrapper-thumb .bg-img::after {
    background: rgba(195,229,226,.55) !important;
    border-color: #c3e5e2 !important;
}

/* General landing headings */
.section-title,
.section-title *,
.service-section .section-title,
.testimonial-section .section-title,
.app-slider-wrapper .app-content .subtitle,
.app-slider-wrapper .app-content * {
    color: #115c73 !important;
}

/* Ensure normal text does not get artificial button backgrounds */
.cta-wrapper .content p,
.cta-wrapper .content span,
.newsletter-wrapper .content p,
.newsletter-wrapper .content span,
.service__item-content p,
.service__item-content span {
    background: transparent !important;
    box-shadow: none !important;
}

/* ===== TOS TOS TARGETED LANDING FIX END ===== */
