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

:root {
    --base-clr: #1e88e5;
    --base-rgb: 30, 136, 229;
    --btn-clr: #1e88e5;
    --btn-clr-dark: #1565c0;
    --btn-rgb: 30, 136, 229;
    --base-title: #1e88e5;
    --base-white: #1e88e5;
    --body-clr: #18191b;
    --light-clr: #ded6ff;
    --title-clr: #18191b;
    --title-rgb: 24, 25, 27;
    --body-bg: #fcfcfc;
    --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: #0d47a1;
    --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: #1e88e5;
    --base-rgb: 0, 147, 255;
    --base-title: #98d3ff;
    --base-white: #fff;
    --body-clr: #a3bdd0;
    --title-clr: #98d3ff;
    --title-rgb: 152, 211, 255;
    --body-bg: #121213;
    --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(--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;
}

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

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

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

.footer-bottom a {
    color: var(--white-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: #90caf9;
}

.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: #90caf9;
}

@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); */
    color:#fff;
    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); */
    color: #fff;
}

.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(--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: 600px;
    margin: 0 auto 45px;
    font-size: 32px;
    font-weight: 700;
    color: var(--title-clr);
    position: relative;
}

.section-title::before,
.section-title::after {
    display: none !important;
}

@media (min-width: 992px) {
    .section-title {
        max-width: 750px;
        margin-bottom: 55px;
        font-size: 36px;
    }
}

/*Service Section*/
.service-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 60px 0 !important;
}

.service__item {
    padding: 50px 25px 35px;
    background: var(--section-bg);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.08);
    margin: 15px;
    color: var(--body-clr);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.service__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.05), transparent);
    transition: left 0.6s ease;
}

.service__item:hover::after {
    left: 100%;
}

.service__item:hover {
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.25);
    transform: translateY(-12px);
    border-color: rgba(30, 136, 229, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

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

.service__item-icon {
    height: 100px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.service__item:hover .service__item-icon {
    transform: scale(1.2) rotateY(360deg);
}

.service__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(30, 136, 229, 0.2));
    transition: filter 0.3s ease;
}

.service__item:hover .service__item-icon img {
    filter: drop-shadow(0 12px 30px rgba(30, 136, 229, 0.35));
}

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

.service__item-content .title {
    color: #1e88e5;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.service__item:hover .service__item-content .title {
    color: #1565c0;
    transform: scale(1.03);
}

.service__item-content .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 28px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.service__item:hover .service__item-content .txt {
    color: #495057;
}

.service__item-btn {
    border: 2px solid #1e88e5;
    border-radius: 25px;
    color: #1e88e5;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-transform: capitalize;
    padding: 12px 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service__item-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #1e88e5;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.service__item-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service__item-btn:hover {
    color: var(--white-clr);
    border-color: #1565c0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.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: 10px;
    width: calc(100% - 20px);
    min-height: calc(100% - 20px);
    background: var(--section-bg);
    z-index: 9;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(var(--title-rgb), 0.073);
}

.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: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    cursor: pointer;
    color: var(--white-clr);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.slide-icon:hover {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

.slide-icon i {
    font-size: 20px;
}

.service-slide-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 10;
}

@media (max-width: 991px) {
    .service-slide-nav {
        top: -55px;
        right: 12px;
    }
}

@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: center;
    gap: 40px;
    padding: 60px 0;
}

.about__wrapper-content {
    padding: 60px 45px;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(30, 136, 229, 0.1);
}

.about__wrapper-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1e88e5, #42a5f5, #1e88e5);
}

.about__wrapper-content h3 {
    position: relative;
    margin-bottom: 25px;
}

.about__wrapper-content h3::before,
.about__wrapper-content h3::after {
    display: none !important;
}

.about__wrapper-content p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    color: #495057;
}

.about__wrapper-content .cmn--btn2 {
    margin-top: 15px;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.2);
    transition: all 0.3s ease;
}

.about__wrapper-content .cmn--btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.35);
}

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

.about__wrapper-thumb .main-img {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.2);
}

.about__wrapper-thumb .main-img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 70px rgba(30, 136, 229, 0.35);
}

.about__wrapper-thumb .main-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about__wrapper-thumb .bg-img {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 1;
    border-radius: 20px;
    height: calc(100% - 60px);
    left: 200px;
    overflow: hidden;
}

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

.about__wrapper-thumb .bg-img::before {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.9), rgba(66, 165, 245, 0.8));
    animation: pulse 3s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

.about__wrapper-thumb .bg-img::after {
    inset: 10px;
    background: var(--body-bg);
    opacity: 0.05;
}

.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; */
    color:#1e88e5;
}

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(--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); */
    color:#1e88e5;
    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(--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(--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); */
    color:#1e88e5;
    background:#fff;
    padding: 4px 20px;
    line-height: 25px;
    border-radius: 18px;
    /* border: 1px solid var(--btn-clr); */
    border: 1px solid #1e88e5;
    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);
    color: #1e88e5;
    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(--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; */
    color:#1e88e5;
}

.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 {
    --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(--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(--body-bg);
}

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

.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;
}

/* Banner Carousel Styles */
.banner-carousel-section {
    position: relative;
    margin-top: 0;
    padding: 0;
    width: 100%;
}

.banner-carousel {
    position: relative;
}

.banner-carousel-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.banner-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenburns 20s ease infinite;
}

@keyframes kenburns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 31, 53, 0.7) 0%, rgba(0, 31, 53, 0.4) 50%, rgba(0, 31, 53, 0.2) 100%);
    z-index: 1;
}

.banner-carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-carousel-text {
    max-width: 700px;
    color: var(--white-clr);
}

.banner-carousel-text .subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #90caf9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-carousel-text .subtitle::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #90caf9;
    margin-right: 15px;
    transform: translateY(-3px);
    border-radius: 2px;
}

.banner-carousel-text .title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-clr);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-carousel-text .description {
    font-size: 20px;
    color: #e3f2fd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-carousel-text .app-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-carousel-text .app-btns a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-carousel-text .app-btns a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.banner-carousel-text .app-btns img {
    max-width: 160px;
    height: auto;
}

/* Carousel Navigation */
.banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.banner-carousel .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    color: var(--white-clr) !important;
    font-size: 24px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-carousel .owl-nav button:hover {
    background: rgba(30, 136, 229, 0.9) !important;
    transform: scale(1.1);
}

.banner-carousel .owl-nav button span {
    line-height: 50px;
}

/* Carousel Dots */
.banner-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.banner-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-carousel .owl-dot.active {
    width: 35px;
    border-radius: 6px;
    background: var(--white-clr) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-carousel-item {
        height: 500px;
    }
    
    .banner-carousel-text .title {
        font-size: 36px;
    }
    
    .banner-carousel-text .description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .banner-carousel-item {
        height: 450px;
    }
    
    .banner-carousel-text .subtitle {
        font-size: 14px;
    }
    
    .banner-carousel-text .title {
        font-size: 28px;
    }
    
    .banner-carousel-text .description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .banner-carousel-text .app-btns img {
        max-width: 130px;
    }
    
    .banner-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px !important;
    }
}

@media (max-width: 575px) {
    .banner-carousel-item {
        height: 400px;
    }
    
    .banner-carousel-text .title {
        font-size: 24px;
    }
    
    .banner-carousel-text .subtitle::before {
        width: 25px;
        margin-right: 10px;
    }
}

/* Speciality Section Styles - Compact & Attractive */
.speciality-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0 55px !important;
    margin-top: -20px;
}

.speciality-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.speciality-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 35px !important;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #1e88e5;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.section-description {
    font-size: 15px;
    color: #6c757d;
    max-width: 550px;
    margin: 12px auto 0;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.speciality-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.09);
    border: 1.5px solid transparent;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.speciality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.04), transparent);
    transition: left 0.5s ease;
}

.speciality-card:hover::before {
    left: 100%;
}

.speciality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.14);
    border-color: rgba(30, 136, 229, 0.25);
}

.speciality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.speciality-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.speciality-card:hover .speciality-icon {
    transform: rotateY(360deg) scale(1.08);
}

.speciality-card:hover .speciality-icon::after {
    opacity: 1;
}

.speciality-icon i {
    font-size: 36px;
    color: #1e88e5;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.speciality-card:hover .speciality-icon i {
    color: #ffffff;
}

.speciality-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.speciality-card:hover .speciality-title {
    color: #1e88e5;
}

.speciality-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.speciality-section .row {
    row-gap: 22px !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .speciality-section {
        padding: 45px 0 50px !important;
        margin-top: -15px;
    }

    .section-header {
        margin-bottom: 30px !important;
    }

    .speciality-card {
        padding: 26px 20px;
    }

    .speciality-icon {
        width: 65px;
        height: 65px;
    }

    .speciality-icon i {
        font-size: 32px;
    }

    .speciality-title {
        font-size: 17px;
    }

    .speciality-text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .speciality-section {
        padding: 35px 0 40px !important;
        margin-top: -10px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 28px !important;
    }

    .speciality-card {
        padding: 24px 18px;
    }

    .speciality-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .speciality-icon i {
        font-size: 30px;
    }

    .speciality-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .speciality-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .speciality-section .row {
        row-gap: 18px !important;
    }
}

@media (max-width: 575px) {
    .speciality-section {
        padding: 30px 0 35px !important;
        margin-top: -8px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-header {
        margin-bottom: 25px !important;
    }

    .speciality-card {
        padding: 22px 16px;
    }

    .speciality-icon {
        width: 55px;
        height: 55px;
    }

    .speciality-icon i {
        font-size: 28px;
    }

    .speciality-title {
        font-size: 15px;
    }
}

/* Map Section Styles */
.map-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    padding: 40px 0 50px !important;
    margin-top: -15px;
}

.map-content {
    padding: 10px 0;
}

.map-section .section-header {
    margin-bottom: 35px !important;
}

.map-section .section-title {
    margin-bottom: 15px;
}

.map-section .section-description {
    text-decoration: underline;
    text-decoration-color: #1e88e5;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    margin-top: 8px;
}

.map-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 18px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.08);
    transition: all 0.3s ease;
}

.map-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.12);
}

.map-feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.map-feature-icon i {
    font-size: 28px;
    color: #1e88e5;
}

.map-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 8px;
}

.map-feature-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.15);
    border: 3px solid #ffffff;
}

.interactive-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    z-index: 1;
}

/* Leaflet Map Adjustments */
.interactive-map .leaflet-container {
    border-radius: 20px;
}

.interactive-map .leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.interactive-map .leaflet-control-zoom {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.interactive-map .leaflet-control-zoom a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    color: #1e88e5;
}

.interactive-map .leaflet-control-zoom a:hover {
    background: #e3f2fd;
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.canada-label {
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.map-marker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e88e5;
}

.map-marker i {
    font-size: 24px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .map-section {
        padding: 35px 0 45px !important;
        margin-top: -12px;
    }

    .map-section .section-header {
        margin-bottom: 30px !important;
    }

    .map-content {
        margin-bottom: 25px;
        padding: 5px 0;
    }

    .interactive-map {
        height: 400px;
    }

    .map-feature-item {
        padding: 16px;
        margin-bottom: 18px;
    }

    .map-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .map-feature-icon i {
        font-size: 24px;
    }

    .map-feature-text h4 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .map-section {
        padding: 30px 0 40px !important;
        margin-top: -10px;
    }

    .map-section .section-header {
        margin-bottom: 25px !important;
    }

    .map-section .section-title {
        margin-bottom: 12px;
    }

    .map-section .section-description {
        text-decoration-thickness: 1.5px;
        text-underline-offset: 4px;
    }

    .map-content {
        padding: 0;
        margin-bottom: 20px;
    }

    .interactive-map {
        height: 350px;
    }

    .map-feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .map-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-right: 15px;
    }

    .map-feature-icon i {
        font-size: 22px;
    }

    .map-feature-text h4 {
        font-size: 16px;
    }

    .map-feature-text p {
        font-size: 13px;
    }

    .map-overlay {
        padding: 12px 15px;
    }
}

@media (max-width: 575px) {
    .map-section .section-title {
        margin-bottom: 10px;
    }

    .map-section .section-description {
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }

    .interactive-map {
        height: 300px;
    }

    .map-container {
        border-radius: 15px;
    }
}

/* Enhanced Testimonial Section */
.testimonial-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-section .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.testimonial__item {
    padding: 10px;
    width: 100%;
    margin: 0 auto;
}

.testimonial-slider .swiper-slide {
    width: 350px;
    height: auto;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.testimonial-slider .swiper-slide-active {
    opacity: 1 !important;
    z-index: 10;
}

.testimonial-slider .swiper-slide-prev,
.testimonial-slider .swiper-slide-next {
    opacity: 0.65;
}

/* Ensure centering */
.testimonial-slider {
    overflow: visible !important;
    padding: 30px 0;
}

.testimonial-slider .swiper-wrapper {
    align-items: center;
}

.testimonial__item-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 25px;
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial__item-wrapper::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: rgba(30, 136, 229, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial__item-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 136, 229, 0.18);
    border-color: rgba(30, 136, 229, 0.3);
}

.testimonial__item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 3px solid #e3f2fd;
    box-shadow: 0 6px 18px rgba(30, 136, 229, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.testimonial__item-wrapper:hover .testimonial__item-img {
    transform: scale(1.08);
    border-color: #1e88e5;
}

.testimonial__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__item-cont {
    position: relative;
    z-index: 2;
}

.testimonial__item-cont .fw-bold {
    color: var(--title-clr);
    font-size: 17px;
    margin-bottom: 4px;
    display: block;
}

.testimonial__item-cont .text--secondary {
    color: #1e88e5;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial__item-cont blockquote {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    font-style: italic;
    margin: 0;
    position: relative;
    max-height: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Star Rating (Optional - can be added later) */
.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

/* Navigation Controls */
.testimonial-section .slider-bottom {
    margin-top: 40px;
}

.testimonial-section .owl-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.testimonial-section .owl-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.testimonial-section .owl-btn i {
    color: #ffffff;
    font-size: 24px;
}

.testimonial-section .slider-counter {
    font-size: 18px;
    font-weight: 600;
    color: var(--title-clr);
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-slider .swiper-slide {
        width: 320px;
    }

    .testimonial__item-wrapper {
        padding: 25px 22px;
        max-height: 360px;
    }

    .testimonial__item-img {
        width: 75px;
        height: 75px;
    }

    .testimonial__item-cont .fw-bold {
        font-size: 16px;
    }

    .testimonial__item-cont blockquote {
        font-size: 13px;
        max-height: 130px;
    }
}

@media (max-width: 767px) {
    .testimonial-slider .swiper-slide {
        width: 300px;
    }

    .testimonial__item-wrapper {
        padding: 22px 20px;
        max-height: 340px;
    }

    .testimonial__item-wrapper::before {
        font-size: 50px;
        top: 12px;
        left: 18px;
    }

    .testimonial__item-img {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .testimonial__item-cont .fw-bold {
        font-size: 15px;
    }

    .testimonial__item-cont .text--secondary {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .testimonial__item-cont blockquote {
        font-size: 13px;
        max-height: 120px;
    }

    .testimonial-section .owl-btn {
        width: 45px;
        height: 45px;
    }

    .testimonial-section .owl-btn i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .testimonial-slider .swiper-slide {
        width: 280px;
    }

    .testimonial__item-wrapper {
        padding: 20px 18px;
        max-height: 320px;
    }

    .testimonial__item-img {
        width: 65px;
        height: 65px;
    }

    .testimonial__item-cont .fw-bold {
        font-size: 14px;
    }

    .testimonial__item-cont blockquote {
        font-size: 12px;
        line-height: 1.5;
        max-height: 110px;
    }
}

/* About Us Page Styles */
.about-us-main-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-us-main-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 45px;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(30, 136, 229, 0.12);
    border: 2px solid rgba(30, 136, 229, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e88e5, #42a5f5, #1e88e5);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 136, 229, 0.2);
    border-color: rgba(30, 136, 229, 0.2);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
    transform: rotate(360deg) scale(1.1);
}

.about-card-icon i {
    font-size: 36px;
    color: #1e88e5;
}

.about-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-clr);
    text-align: center;
    margin-bottom: 25px;
}

.about-card-content {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
}

.about-card-content p {
    margin-bottom: 15px;
    text-align: left;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.7;
    text-align: left;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #1e88e5;
    border-radius: 50%;
}

.about-list li strong {
    color: var(--title-clr);
    font-weight: 600;
}

.about-card-full {
    padding: 45px 40px;
}

.about-card-full .about-card-icon {
    margin: 0 0 20px 0;
}

.about-card-full .about-card-title {
    text-align: left;
    margin-bottom: 30px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--section-bg);
}

.mission-vision-card {
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.15);
    border: 2px solid rgba(30, 136, 229, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1e88e5, #42a5f5, #1e88e5);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(30, 136, 229, 0.25);
}

.mission-vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.mission-vision-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.mission-vision-card .card-icon i {
    font-size: 40px;
    color: #1e88e5;
}

.mission-vision-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 20px;
}

.mission-vision-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
    margin: 0;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.value-card {
    padding: 35px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    border: 2px solid rgba(30, 136, 229, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1e88e5, #42a5f5);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(30, 136, 229, 0.2);
    border-color: rgba(30, 136, 229, 0.2);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-card .value-icon i {
    font-size: 32px;
    color: #1e88e5;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design for About Us Page */
@media (max-width: 991px) {
    .about-us-main-section .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .about-card {
        padding: 35px 30px;
        margin-bottom: 20px;
    }
    
    .about-card-full {
        padding: 40px 30px;
    }
    
    .mission-vision-card {
        padding: 40px 30px;
    }
    
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-us-main-section .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .about-card {
        padding: 30px 25px;
    }
    
    .about-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-card-icon i {
        font-size: 30px;
    }
    
    .about-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .about-card-content {
        font-size: 14px;
    }
    
    .about-card-full {
        padding: 35px 25px;
    }
    
    .mission-vision-card {
        padding: 30px 25px;
    }
    
    .mission-vision-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-vision-card .card-icon i {
        font-size: 30px;
    }
    
    .mission-vision-card h3 {
        font-size: 22px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-card .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-card .value-icon i {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .about-us-main-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .about-card-icon i {
        font-size: 26px;
    }
    
    .about-card-title {
        font-size: 18px;
    }
    
    .about-card-content {
        font-size: 13px;
    }
    
    .about-list li {
        margin-bottom: 12px;
    }
    
    .about-card-full {
        padding: 30px 20px;
    }
}
