:root {
    --white: #ffffff;
    --black: #0E2B27;
    --dark: #0E2B27;
    --aqua: #0B6B5D;
    --aqua-light: #a9e3d8;
    --orange: #e57f39;
    --mint: #EEF6F4;
    --paper: #ffa5670f;
    --body-font: #4C6863;
    --gray: #D9E5E1;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Google Sans Flex";
    src: url("../fonts/700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    min-height: 100%;
    background-color: #fff;
}

body {
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 400;
    font-style: normal;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    color: var(--body-font);
    background-color: var(--paper);

    padding: 0;
    margin: 0;
    min-height: 100vh;
}

ul {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}


p {
    color: var(--body-font) !important;
    font-size: 14.5px;
}

a {
    color: var(--aqua);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--dark);
}


h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--aqua);
}


::-moz-selection {
    background-color: var(--aqua);
    color: white;
}

::selection {
    background-color: var(--aqua);
    color: white;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--aqua);
    box-shadow: inset 0 0 6px var(--aqua);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--aqua);
    outline: 1px solid var(--aqua);
}


.section {
    padding: 50px 0px;
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
}

.image-aqua {
    filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(6811%) hue-rotate(162deg) brightness(99%) contrast(91%);
    -webkit-filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(6811%) hue-rotate(162deg) brightness(99%) contrast(91%);
}

.image-orange {
    filter: brightness(0) saturate(100%) invert(81%) sepia(42%) saturate(6955%) hue-rotate(339deg) brightness(98%) contrast(83%);
}



.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}


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

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

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

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

.small {
    font-size: 12px !important;
}

.text-sub {

    font-size: 12px;
    color: var(--aqua-light);
    margin-bottom: 22px;
}

.lead {
    font-size: 17px !important;
}

/* Text Ends */

/* Backgrounds Starts */
.bg-white {
    background-color: var(--white) !important;
}

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

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

.bg-gradient {
    background-image: linear-gradient(100deg, #0a463d, #0b6b5d);
}

/* Backgrounds Ends */


.border-radius-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.form-border-red {
    border: 2px solid red !important;
}


/* Buttons Starts */
button:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    position: relative;
    overflow: hidden !important;
    padding: 14px 26px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-aqua {
    background-color: var(--aqua) !important;
    color: var(--white) !important;
}

.btn-outline-aqua {
    background-color: transparent !important;
    color: var(--aqua) !important;
    border: 1px solid var(--aqua);
}

.btn-orange {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.btn-outline-orange {
    background-color: transparent !important;
    color: var(--orange) !important;
    border: 1px solid var(--orange);
}



/* Buttons Ends */

/* Topbar Starts */
.topbar-contact p {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0px;
}

.topbar-contact p a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-contact p a img {
    margin-right: 8px;
}

.social-icons {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.social-icons li {
    margin-right: 8px
}


/* Topbar Ends */


/* Navbar Starts */
.nav-link {
    color: var(--aqua);
    font-size: 14.5px;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
    text-transform: capitalize;
}

.navbar {
    background-color: #ffffffeb;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    top: 31.5px;
}

.fixed-top {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
}

.mobile-nav-list a {
    display: block;
    padding: 7px 0;
    color: #17181A;
    text-decoration: none;
    font-size: 14px;
}

/* Navbar Ends */


/* Banner Starts */
.home-banner-section {
    margin-top: 120px;
}

.banner-box img {
    /* height: 495px; */
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Banner Ends */

/* Stats Starts */
.counter-section {
    border-bottom: 0.1px solid var(--aqua);

}

.wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 32px;
}

.stat {
    padding: 0 26px;
    border-left: 1px solid var(--aqua);
}

.stat:first-child {
    border-left: none;
    padding-left: 0;
}

.stat .num {
    font-size: 30px;
    font-weight: 600;
    color: var(--aqua);
}

.stat .num span {
    color: var(--aqua);
    transition: all 0.9s linear;
    -webkit-transition: all 0.9s linear;
    -moz-transition: all 0.9s linear;
    -ms-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
}

.stat .lbl {

    font-size: 11px;
    letter-spacing: .05em;
    color: var(--dark);
    text-transform: uppercase;
    margin-top: 4px;
}

.counter {

    display: inline-block;

    transition: transform .08s ease, filter .08s ease;

}

/* Stats Ends */

/* Blog Starts */
.blog-box img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    object-position: center center;
}

/* Blog Ends */

/* Form Starts */
.form-glass {
    width: 100%;
    padding: 14px 16px;
    /* border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08); */
    border: 1px solid rgb(11 107 93);
    background: #0b6b5da3;
    color: #fff;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

::placeholder {
    color: white;
}

/* Form Ends */

/* Service Starts */
.service-box {
    border: 1px solid var(--gray);
    padding: 34px 24px;
    background: #fff;
    transition: background .2s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.service-box img {
    margin-bottom: 20px;
}

.service-box h4 {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-top: 10px;
    margin-bottom: 10px;
}

.service-box:hover {
    background-color: var(--mint);
}

.service-box .code {

    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--orange);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.splide__pagination__page {
    bottom: -40px;
    background: #e57f3959;
}

.splide__pagination__page.is-active {
    background: var(--orange);
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;

    font-size: 11px;
    letter-spacing: .06em;
    color: var(--orange);
    font-weight: 600;
}

/* Service Ends */

/* Gallery Starts */
.gallery-box img {
    height: 215px;
    object-fit: cover;
    object-position: center;
}

/* Gallery Ends */

/* Why Starts */
.dr-kunal-list {
    list-style-type: none;
}

.dr-kunal-list li {
    position: relative;
    border-bottom: 0.5px solid var(--gray);
    margin-bottom: 8px;
    padding: 10px;
    padding-left: 25px;
}

.dr-kunal-list li::before {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 0px;
    color: var(--aqua);
    font-weight: 700;
}

/* Why Ends */

/* Membership Starts */
.membership-box {
    background-color: var(--white);
}

.membership-box img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

/* Membership Ends */


/* Media Starts */
.media-box {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 1px solid var(--aqua);
}

.media-box img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    object-position: top center;
}

/* Media Ends */

/* Timings Starts */
.timing-title {
    font-size: 19px;
}

.timings {

    font-size: 16px;
    color: var(--aqua) !important;
    font-weight: 500;
}

.timings span {
    color: var(--aqua);
    font-weight: 700;

    font-size: 12px;
}

/* Timings Ends */

/* Footer Starts */
.footer-box {

    font-size: 13px;
    color: var(--white);
}

.footer-links {
    margin-top: 14px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: var(--white);
}

.whatsapp-sticky {
    background-color: #25d366;
    position: fixed;
    bottom: 40px;
    right: 20px;
    padding: 10px 30px;
    color: white !important;
    z-index: 200;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.footer-sticky {
    display: none;
}

/* Footer Ends */


/* Accordion Starts */
.custom-accordion-item {
    margin-bottom: 10px;
}

.custom-accordion-item-header {
    padding: 10px;
    background-color: transparent;
    color: var(--aqua);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid var(--orange);
    font-weight: 600;
}

.custom-accordion-item-content {
    display: none;
    padding: 10px;
}

.custom-accordion-item-header::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 600;
}

.custom-accordion-item.open .custom-accordion-item-header::after {
    content: '-';
}

/* Accordion Ends */

/* Youtube Starts */
.youtube-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
}

.youtube-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 0, 0, .9);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Youtube Ends */



/* Media Quries Starts */
@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 768px) {}

@media (max-width: 575.98px) {
    .topbar-contact p a span {
        display: none;
    }

    .wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 26px 32px;
    }

    .stat {
        padding: 10px 20px;
        border: 0px;
    }

    .service-box {
        padding: 6px 9px;
    }

    .media-box img {
        height: 180px;
    }

    .footer-box {
        margin-bottom: 30px;
    }

    .footer-sticky {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        margin-bottom: 0px;

    }

    .footer-bottom {
        margin-bottom: 37px;
    }
}

/* Media Quries Ends */