@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -5%;
    font-weight: 300;
}

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

body,
html {
    max-width: 100%;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

/* ---------------------------------- */
/* common section width & overflow */
.common-w-o {
    max-width: 100%;
    overflow: hidden;
    /* border: 2px solid red !important; */
}

@media screen and (width <=800px) {
    #whatsapp-phone {
        /* flex-direction: row; */
        bottom: 3rem;
        right: 1rem;
    }
}


/* -------------------------- */
/* marquee */

.marquee {
    width: 100%;
    margin: 0 0 4rem;
    overflow: hidden;
    background: #c5f3ff;
    /* border: 2px solid red; */
    position: relative;
}

.marquee-footer {
    margin-bottom: 0 !important;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-item {
    padding: 5px 2rem;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: rgb(8, 8, 8);
    border: 1px solid rgb(0, 0, 0);
    border-right: none;
    padding-block: 1rem;
}

@media screen and (max-width: 800px) {
    .marquee {
        margin: 0 0 2rem;
    }

    .marquee-item {
        padding-block: .75rem;
        font-size: 1.25rem;
    }
}



/* -------------------- */
/* whatsapp phone */

#whatsapp-phone {
    display: flex;
    position: fixed;
    gap: .25rem;
    bottom: 2rem;
    right: 5%;
    width: max-content;
    z-index: 1000 !important;
    flex-direction: column;
}

#whatsapp-phone a {
    padding: .6rem;
    /* border-radius: .3rem; */
    cursor: pointer;
    border: 1px solid rgb(0, 0, 0);
}

#insta {
    background: rgb(255, 204, 184);
}

#phone {
    background: rgb(207, 243, 255);
}

#map {
    background: rgb(247, 247, 185);
}

#whatsapp {
    background: rgb(231, 255, 195);
}


/* --------------------- */
/* navbar */
.navbar {
    max-width: 90%;
    width: 100%;
    left: 5%;
    top: 1rem;
    height: 50px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0%;
    position: fixed;
    z-index: 1000 !important;
}

.navbar-clickable {
    display: none;
}

.navbar-logo {
    text-transform: capitalize;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    /* padding-inline: 1.5rem; */
    font-size: 1.1rem;
    background: whitesmoke;
    z-index: 100000 !important;
    border: 1px solid black;
}

.navbar-logo img {
    max-height: 100%;
}

.navbar * {
    color: black;
}

.responsive-lap-mobile {
    display: flex;
    width: max-content;
    gap: 5rem;
    justify-content: space-between;
    height: 100%;
}

.navbar .navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    height: 100%;
    background: whitesmoke;
    border-right: 1px solid black;
}

.navbar .navbar-menu a {
    position: relative;
    z-index: 100;
    font-size: 1.1rem;
    text-transform: capitalize;
    border: 1px solid black;
    border-right: none;
    padding: 0 1rem;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: background .3s ease, color .7s ease;
}

.show {
    background: black !important;
    color: white !important;
}

.navbar .navbar-menu a:hover {
    background: black;
    color: white;
    transition: background .3s ease, color .7s ease;
}

#agna {
    display: none;
    text-transform: uppercase;
}

@media screen and (max-width: 1000px) {

    .navbar {
        top: 1rem;
        max-width: 90%;
        left: 5%;
        z-index: 10000 !important;
    }

    .responsive-lap-mobile {
        position: fixed;
        top: -200vh;
        transition: top 1s ease;
        flex-direction: column;
        width: 100%;
        left: 0%;
        border-radius: 0rem;
        z-index: 1000 !important;
        height: 100dvh;
        background: white;
        /* padding: 1rem; */
        padding-inline: 5%;
        padding-top: 75px;
        justify-content: flex-start;
        /* border: 1px solid black; */
    }

    #agna {
        position: absolute;
        font-size: 2.5rem;
        bottom: 0;
        width: 100%;
        left: 0;
        line-height: 1;
        display: flex;
        justify-content: center;
        opacity: .1;
    }

    .navbar .navbar-menu a {
        border: 1px solid black;
        width: 100%;
        text-align: center;
        padding: .5rem;
        font-size: 1.25rem;
        background: whitesmoke;
    }

    .navbar-logo {
        font-size: 1.25rem;
        /* padding-inline: 1rem; */
    }

    .responsive-lap-mobile.active {
        top: 0;
        transition: top 1s ease;
        z-index: 10000 !important;
    }

    .navbar .navbar-menu {
        flex-direction: column;
        gap: .5rem;
        background: white;
        border: none;
        justify-content: flex-start;

    }

    .navbar-menu a {
        font-size: 1.25rem;
        justify-content: center;
        height: 50px;
    }

    .navbar-clickable {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 100%;
        width: 50px;
        transition: transform 2s ease;
        border: 1px solid black;
        background: whitesmoke;
        z-index: 100000 !important;
    }

    .navbar-clickable * {
        position: absolute;
        height: 100%;
        width: 1.25rem;
        transition:
            opacity 0.5s ease,
            transform 0.6s ease;
    }

    /* Default State */
    .navbar-clickable .hamIcon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .navbar-clickable .closeIcon {
        opacity: 0;
        width: 1rem;
        transform: rotate(-1080deg);
    }

    /* Active State */
    .navbar-clickable.active .hamIcon {
        opacity: 0;
        transform: rotate(1080deg);
    }

    .navbar-clickable.active .closeIcon {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@media screen and (max-width: 500px) {
    .navbar-logo {
        font-size: 1.1rem;
        /* padding-inline: 1rem; */
    }
}

/* ------------------------ */
/* height-adj */

.height-adj {
    height: 3rem;
}

@media screen and (max-width: 800px) {
    .height-adj {
        height: 2rem;
    }
}

/* ----------------------- */
/* tagline */

.tagline {
    padding: 4rem 5% 0;
    display: flex;
    align-items: center;
    margin-bottom: -20rem !important;
    justify-content: center;
    background: black;

}

.tagline h2 {
    font-size: 20vw;
    font-weight: 400;
    opacity: .3 !important;
    color: white;
    /* margin-bottom: -1.5rem; */
    line-height: .75 !important;
}

@media screen and (width <=800px) {
    .tagline {
        padding: 2rem 5% 0;
    }
}

/* ------------------------ */
/* sec-six */
.sec-six {
    padding: 4rem 5% 0;
    background: black;
}

.sec-six * {
    color: white;
}

.sec-six .footer-bottom {
    border-top: 1px solid gainsboro;
    padding-top: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.sec-six .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    gap: 2rem;
}

.ft-left {
    max-width: 40%;
}

.ft-left img {
    max-width: 50%;
}

.ft-left h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.ft-left p {
    font-size: 1.25rem;
    font-weight: 300;
}

.ft-middle {
    display: flex;
    gap: 3rem;
}

.ft-middle-div {
    display: flex;
    flex-direction: column;
}

.ft-middle-div h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.ft-middle-div a {
    margin-top: 1rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 800px) {
    .sec-six .footer-bottom {
        font-size: 1rem;
    }

    .sec-six {
        padding: 3rem 5% 0;
    }

    .sec-six .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .ft-middle-div h2 {
        font-size: 1.25rem;
        padding-bottom: .5rem;
        width: 100%;
        /* text-align: center; */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ft-left h2 {
        font-size: 1.5rem;
    }

    .ft-middle {
        gap: 3rem 1.5rem;
        flex-wrap: wrap;
    }

    .ft-middle-div {
        min-width: calc(50% - .75rem);
        max-width: 100%;
    }

    .ft-middle-div a {
        margin-top: .5rem;
    }

    .ft-left p {
        font-size: 1.1rem;
    }

    .ft-left {
        max-width: 100%;
    }
}


/* ----------------------- */
/* testimonal-swiper */

.testimonial {
    padding: 0rem 5%;
    padding-bottom: 5rem;
}

.testimonal-swiper {
    /* min-height: 500px; */
    max-width: 100%;
    width: 100%;
}

.testimonal-swiper .swiper-wrapper {
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding-top: 100px;
}

.testimonal-swiper .swiper-slide {
    border: 1px solid gainsboro;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    overflow: hidden;
    gap: 2rem;
    border-radius: .25rem;
    position: relative;
    /* background: linear-gradient(120deg, transparent 90%,  #a9ff08 100%); */
}

.testimonal-swiper .swiper-slide::after {
    height: 150px;
    width: 150px;
    position: absolute;
    content: '';
    background: #01ffff;
    filter: blur(70px);
    z-index: -100;
    border-radius: 50%;
    opacity: .5;
    animation: movement 15s ease infinite !important;
}

@keyframes movement {
    0% {
        left: 0%;
        top: 0%;
    }

    20% {
        left: 20%;
        top: 40%;
    }

    40% {
        left: 40%;
        top: 80%;
    }

    60% {
        left: 80%;
        top: 100%;
    }

    80% {
        left: 50%;
        top: 60%;
    }

    100% {
        left: 0%;
        top: 0%;
    }
}

.testimonial-heading h2 {
    font-size: 4rem;
    font-weight: 400;
    /* background: linear-gradient(140deg, #a9ff08, darkcyan);
    background-clip: text;
    color: transparent; */
}

.testimonial-heading>p {
    font-size: 1.5rem;
    max-width: 50%;
    opacity: .5;
}

.testimonal-swiper .swiper-slide h3 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
}

.testimonal-swiper .swiper-slide p {
    opacity: .75;
    font-size: 1.5rem;
}

.testimonal-swiper .swiper-slide h6 {
    font-weight: 400;
    font-size: 1.5rem;
}

/* .testimonal-swiper .sb-buttons {
    background: darkcyan !important;
} */

.testimonial-heading-home {
    padding-top: 5rem;
}

@media screen and (max-width: 1700px) {
    .testimonial-heading h2 {
        font-size: 3rem;
    }
}

@media screen and (width <=800px) {
    .testimonial {
        padding: 0rem 5% 2.5rem;
    }

    .testimonial-heading h2 {
        font-size: 2rem;
        font-weight: 400;
        text-align: center;
    }


    .testimonal-swiper .swiper-wrapper {
        padding-top: 80px;
    }

    .testimonial-heading>p {
        font-size: 1.1rem;
        max-width: 100%;
        opacity: .5;
        text-align: center;
        margin-bottom: 1rem;
    }

    .testimonal-swiper .swiper-slide {
        align-items: center;
    }

    .testimonal-swiper .swiper-slide h3 {
        font-size: 1.75rem;
    }

    .testimonal-swiper .swiper-slide * {
        text-align: center;
    }

    .testimonial-heading-home {
        padding-top: 2.5rem;
    }
}


/* ---------------- */
.iframe-info {
    display: flex;
    padding: 3rem 5% 0;
    gap: 4%;
}

.iframe-info .iframe-left {
    max-width: 60%;
    min-width: 60%;
}

.iframe-info .iframe-left iframe {
    width: 100%;
    height: 500px;
}

.iframe-info .info-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-right div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
}

.info-right div svg {
    margin-top: .25rem;
}

.info-right div h2 {
    min-width: 22%;
    /* background: green; */
    font-weight: 400;
}

.info-right div p {
    text-align: left;
    /* background: red; */
    max-width: 60%;
}

.info-right div * {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .iframe-info {
        padding-inline: 5%;
    }
}

@media screen and (max-width: 800px) {
    .iframe-info {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .iframe-info .iframe-left {
        max-width: 100%;
        min-width: 100%;
    }

    .info-right div h2 {
        min-width: 25%;
    }

    .info-right div {
        gap: .5rem;
    }

    .info-right div svg {
        margin-top: .2rem;
    }

    .info-right div * {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .iframe-info .iframe-left iframe {
        height: 350px;
        margin-bottom: 2rem;
    }
}

/* --------------------- */
/* contact */
.page-opening-section {
    padding-top: 7rem;
    padding-inline: 5%;
}

.page-opening-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-opening-section p {
    font-size: 1.25rem;
    opacity: .75 !important;
}

.page-opening-section p strong {
    font-weight: 500;
    font-size: inherit;
}

.page-opening-section img {
    max-width: 100%;
    height: 800px;
    margin-top: 2rem;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

@media screen and (max-width: 1700px) {
    .page-opening-section h2 {
        font-size: 3.25rem;
    }

    .page-opening-section {
        padding-inline: 5%;
    }

    .page-opening-section p {
        font-size: 1.2rem;
    }

    .page-opening-section img {
        max-width: 100%;
        height: 600px;
    }
}

@media screen and (max-width: 800px) {
    .page-opening-section {
        padding-top: 5.5rem;
    }

    .page-opening-section h2 {
        font-size: 2.25rem;
        margin-bottom: .5rem;
    }

    .page-opening-section p {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .page-opening-section img {
        max-width: 100%;
        height: 250px;
    }
}

/* ------------------------ */
/* owner */

.owner {
    display: flex;
    padding: 0 15%;
    /* margin-block: 4rem; */
    margin-top: 2rem;
    gap: 2rem;
}

.owner .owner-l {
    max-width: 45%;
    min-width: 45%;
    overflow: hidden;
}

.owner .owner-l img {
    width: 100%;
    border-radius: .75rem;
}

.owner-r h2 {
    font-size: 4rem;
}

.owner-r h4 {
    font-size: 1.75rem;
    opacity: .5;
    margin: .5rem 0;
}

.owner-r p {
    font-size: 1.5rem;
    margin-top: 2rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.5;
    /* font-style: italic; */
}

.owner-r p::before {
    content: "🌪";
    left: 0;
    position: absolute;
    top: .25rem;
}

.owner-heading {
    padding: 0 10%;
    font-size: 4rem;
    /* margin-bottom: -2rem; */
    text-align: center;
}

@media screen and (max-width: 1700px) {
    /* .owner {
        padding: 0 5%;
    } */

    .owner-r h2 {
        font-size: 3rem;
    }

    .owner-heading {
        font-size: 3rem;
    }
}

@media screen and (max-width : 800px) {
    .owner {
        flex-direction: column;
        /* margin-block: 2rem; */
        padding: 0 5%;
    }

    .owner-r h2 {
        font-size: 2.25rem;
    }

    .owner-r h4 {
        font-size: 1.25rem;
    }

    .owner .owner-l {
        max-width: 100%;
        min-width: 100%;
    }

    .owner-r p {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .owner-heading {
        font-size: 2rem;
        margin-bottom: -1rem;
    }
}


/* ---------------------- */
/* home-01 */

.home-01 {
    background: linear-gradient(120deg, #01ffff, #40ccf0);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 25%;
    gap: 1rem;
    border-bottom: 1px solid gainsboro;
}

.home-01 * {
    text-align: center;
}

.home-01 h6 {
    font-size: 1.5rem;
    opacity: .25;
}

.home-01 h2 {
    font-size: 5.5rem;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 400;
}

.home-01 a {
    background: rgb(0, 0, 0);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 6rem;
}

.home-01 .review {
    display: flex;
    background: white;
    padding: .75rem 1.5rem;
    border-radius: 2rem;
    align-items: center;
    border: 1px solid gainsboro;
}

.home-01 .review img {
    width: 2rem;
    height: 2rem;
    margin-left: -.5rem;
    border-radius: 50%;
    border: 1px solid white;
}

.home-01 .review img:first-child {
    margin-left: 0;
}

.home-01 .review span {
    background: #ccff6e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid white;
    margin: 0 .5rem 0 -.5rem;
}

.home-01 .review h5 {
    font-weight: 400;
}

.home-01 p {
    font-size: 1.25rem;
    font-weight: 400;
}

@media screen and (width <=1700px) {
    .home-01 {
        min-height: 700px;
        padding: 10% 10% 5%;
    }

    .home-01 h6 {
        font-size: 1.25rem;
    }

    .home-01 h2 {
        font-size: 4rem;
        max-width: 65%;
    }

    .home-01 a {
        margin-bottom: 4rem;
    }

    .home-01 p {
        max-width: 80%;
    }
}

@media screen and (width <=1200px) {
    .home-01 h6 {
        font-size: 1.25rem;
    }

    .home-01 h2 {
        font-size: 3.25rem;
        max-width: 100%;
    }

    .home-01 a {
        margin-bottom: 3rem;
    }

    .home-01 p {
        max-width: 100%;
    }
}

@media screen and (width <=800px) {
    .home-01 {
        min-height: 100dvh;
        padding: 7rem 5% 3rem;
    }

    .home-01 a,
    .home-01 .review {
        padding: .75rem 1.25rem;
        height: 50px;
    }

    .home-01 a {
        margin-bottom: 0rem;
        display: flex;
        align-items: center;
    }

    .home-01 .review img,
    .home-01 .review span {
        width: 1.75rem;
        height: 1.75rem;
    }

    .home-01 p {
        font-size: 1.1rem;
    }

    .home-01 h2 {
        font-size: 2.75rem;
        max-width: 100%;
    }
}

/* ---------------------------- */
/* home-sec2 */
.home-sec2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 5%;
    background: whitesmoke;
}

.home-sec2 * {
    text-align: center;
}

.home-sec2 h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.home-sec2 .home-sec2-flex {
    display: flex;
    gap: 1%;
    justify-content: space-between;
    align-items: flex-start;
}

.home-sec2 .home-sec2-flex div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 2rem;
    border: 1px solid gainsboro;
    align-self: stretch;
    position: relative;
}

/* .home-sec2 .home-sec2-flex div::after {
    content: '';
    height: 20px;
    width: 20px;
    background: black;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .1;
}

.home-sec2 .home-sec2-flex div::before {
    content: '';
    height: 20px;
    width: 20px;
    background: black;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .1;
} */

.home-sec2-flex img {
    height: 5rem;
}

.home-sec2-flex h4 {
    font-size: 1.75rem;
    font-weight: 400;
}

.home-sec2-flex p {
    font-size: 1.1rem;
    line-height: 1.5;
}

@media screen and (max-width: 1700px) {
    .home-sec2 h2 {
        font-size: 2.5rem;
    }

    .home-sec2-flex img {
        height: 3.5rem;
    }
}

@media screen and (max-width :800px) {
    .home-sec2-flex h4 {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .home-sec2 {
        gap: 1.25rem;
        padding-block: 2.5rem 1rem;
        border-bottom: 1px solid gainsboro;
    }

    .home-sec2 h2 {
        font-size: 1.5rem;
        font-weight: 400;
    }

    .home-sec2-flex p {
        font-size: 1rem;
    }

    .home-sec2-flex img {
        height: 3rem;
    }

    .home-sec2 .home-sec2-flex div {
        border: 1px solid gainsboro;
        max-width: calc(50% - .25rem);
        padding: 1rem .5rem;
        gap: .5rem;

    }

    .home-sec2 .home-sec2-flex {
        gap: .5rem;
        padding-bottom: 1.25rem;
        width: 100%;
        flex-wrap: wrap;
    }

    /* .home-sec2 .home-sec2-flex::-webkit-scrollbar {
        height: 4px;
        display: block !important;
    }

    .home-sec2 .home-sec2-flex::-webkit-scrollbar-track {
        background-color: gainsboro;
    }

    .home-sec2 .home-sec2-flex::-webkit-scrollbar-thumb {
        background: black;
    } */
}

/* ---------------------- */
/* iframe1 */
.iframe1 {
    height: auto;
    aspect-ratio: 16/7;
    max-width: 90%;
    margin: 0 5% 5rem;
}

.iframe1-heading {
    font-size: 3rem;
    text-align: center;
    padding: 4rem 10% 1rem;
    font-weight: 400;
}

@media screen and (width <=1700px) {
    .iframe1-heading {
        font-size: 2.5rem;
        padding: 3.5rem 5% 1rem;
    }
}

@media screen and (width <=800px) {
    .iframe1-heading {
        font-size: 1.5rem;
        padding: 2.5rem 5% 1.25rem;
    }

    .iframe1 {
        height: auto;
        aspect-ratio: 16/10;
        margin: 0 5% 2.5rem;
    }
}

/* ---------------------- */
/* sec-four */

.sec-four {
    padding: 5rem 5%;
    /* border-bottom: 1px solid gainsboro; */
}

.experts-head {
    font-size: 3rem;
    margin-bottom: -3.85rem;
    /* background-color: red; */
}

.swiper-doctor-list {
    overflow: visible;
    position: relative;
}

.swiper-doctor-list .swiper-wrapper {
    position: relative;
    height: auto;
    padding-top: 8rem;
}

.swiper-doctor-list .swiper-slide {
    overflow: hidden;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.swiper-doctor-list .swiper-slide * {
    max-width: 100%;
}

.swiper-doctor-list .swiper-slide img {
    height: 400px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 1rem;
    /* border: 2px solid black; */
}

.swiper-doctor-list .swiper-slide h2 {
    font-size: 2.25rem;
    margin-top: 1.5rem;
    font-weight: 400;
}

.swiper-doctor-list .swiper-slide p {
    font-size: 1.25rem;
}

.sb-buttons {
    position: absolute !important;
    top: 2rem !important;
    padding: .75rem;
    min-width: 2.25rem;
    background-color: rgb(0, 0, 0) !important;
    border-radius: .25rem !important;
    outline: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.2rem !important;
    color: white !important;
    fill: white !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0 !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    position: absolute;
    left: auto !important;
    right: 2.5rem !important;
}

@media screen and (max-width: 800px) {
    .sec-four {
        padding: 2rem 5% 3rem;
    }

    .swiper-doctor-list .swiper-wrapper {
        padding-top: 4rem;
    }

    .experts-head {
        font-size: 2rem;
        /* max-width: 50%; */
        /* background-color: tan; */
        margin-bottom: .75rem;
        text-align: center;
    }

    .swiper-button-next {
        right: calc(50% - 40px) !important;
        zoom: .85;
    }

    .swiper-button-prev {
        right: none;
        left: calc(50% - 40px) !important;
        zoom: .85;
    }

    .swiper-doctor-list .swiper-slide h2 {
        font-size: 1.75rem;
    }

    .swiper-doctor-list .swiper-slide p {
        font-size: 1.1rem;
    }
}


/* ------------------------- */
/* sec-five */

.sec-five {
    padding: 6rem 5%;
    display: flex;
    padding-top: 3rem;
    justify-content: space-between;
    /* border-bottom: 1px solid gainsboro; */
    background: #c4ffff;
    background: linear-gradient(0deg, #01ffff, #40ccf0);
}

.sec-five-left,
.sec-five-right {
    max-width: 47%;
    width: 47%;
    overflow: hidden;
    height: 600px;
}

.sec-five-left {
    margin: 0 !important;
    width: 100%;
    border-radius: .5rem;
    /* border: 1px solid darkcyan; */
}

.sec-five-left .swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* Background images */
.slide-1 {
    background-image: url('./clinic/01.jpg');
}

.slide-2 {
    background-image: url('./clinic/02.jpg');
}

.slide-3 {
    background-image: url('./clinic/03.jpg');
}

.slide-4 {
    background-image: url('./clinic/04.jpg');
}

.sec-five-left img {
    max-width: 100%;
}

.sec-five-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    align-items: start;
    /* overflow: scroll; */
    height: max-content;
}

.sec-five-right-div {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgb(0, 0, 0);
    padding-top: 1.25rem;
    max-height: max-content;
    align-self: stretch;
}

.sec-five-right-div h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: .5rem;
    line-height: 1;
}

.sec-five-right-div p {
    font-size: 1.1rem;
    font-weight: 200;
}

.sec-five-heading {
    font-size: 3rem;
    padding-top: 5rem;
    text-align: center;
    background: #40ccf0;
}

.sec-five-heading-services {
    background: white;
    padding-top: 0;
}

@media screen and (max-width: 800px) {
    .sec-five {
        padding: 3rem 5%;
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }

    .sec-five-right {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .sec-five-left,
    .sec-five-right {
        max-width: 100%;
        width: 100%;
    }

    .sec-five-right-div {
        border-top: 0px solid gainsboro;
        padding-top: 0;
    }

    .sec-five-left {
        height: 400px;
    }

    .sec-five-right-div h3 {
        font-size: 1.5rem;
    }

    .sec-five-heading {
        font-size: 2rem;
        padding-top: 2.5rem;
    }

    .sec-five-heading-services {
        padding-top: 0;
    }
}


/* ------------------------------- */
/* services-listed */

.services-listed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 5%;
}

.services-listed-div {
    border: 1px solid gainsboro;
    padding: 2rem;
    background: whitesmoke;
    position: relative;
    overflow: hidden;
    transition: padding-bottom 0.75s ease;
    border-radius: 0.5rem;
    cursor: pointer;
    /* indicate interactivity */
}

.services-ld-top {
    display: flex;
    justify-content: space-between;
}

.ldt-left,
.ldt-right {
    display: flex;
    gap: 1rem;
}

.ldt-left {
    width: 40%;
    align-items: center;
}

.ldt-left img {
    max-width: 4rem;
}

.ldt-left h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.ldt-right {
    width: 40%;
    gap: 3rem;
}

.ldt-right svg {
    font-size: 2rem;
    margin-top: 0.25rem;
    transform: rotate(0deg);
    transition: transform 2s ease;
    animation: blinkingEffect 1s infinite;
}

.ldt-right p {
    font-size: 1.5rem;
    text-align: end;
    opacity: 0.5;
}

.services-listed .services-ld-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: absolute;
    height: 300px;
    bottom: -400px;
    opacity: 0;
    z-index: -1;
    transition: all 0.65s ease;
    max-width: calc(100% - 4rem);
    min-width: calc(100% - 4rem);
}

.services-listed .services-ld-bottom img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: .5rem;
    /* border: 1px solid red; */
}

/* Hover & Focus effect */
.services-listed-div:hover,
.services-listed-div:focus-within,
.services-listed-div:active {
    padding-bottom: 370px;
}

.services-listed-div:hover svg,
.services-listed-div:focus-within svg {
    transform: rotate(1800deg);
    animation-play-state: paused;
    opacity: 1 !important;
}

.services-listed-div:hover .services-ld-bottom,
.services-listed-div:focus-within .services-ld-bottom {
    opacity: 1;
    bottom: 2rem;
    z-index: 10;
}

@keyframes blinkingEffect {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media screen and (max-width: 1700px) {

    .ldt-left,
    .ldt-right {
        width: 48%;
    }
}

@media screen and (max-width: 900px) {

    .services-ld-top {
        flex-direction: column;
        gap: 1rem;
    }

    .ldt-left,
    .ldt-right {
        width: 100%;
    }

    .ldt-left h2 {
        font-size: 1.75rem;
    }

    .ldt-left img {
        max-width: 2.75rem;
    }

    .ldt-right {
        gap: 1rem;
        flex-direction: column;
    }

    .ldt-right p {
        text-align: left;
    }

    .services-listed .services-ld-bottom {
        grid-template-columns: 1fr;
    }

    .services-ld-bottom img:nth-child(n+2) {
        display: none;
    }
}






/* ----------------------- */
/* sec-three */

.sec-three {
    display: flex;
    padding: 2.5rem 5%;
    justify-content: space-between;
    gap: 5%;
    background: #c4ffff;
    background: linear-gradient(120deg, #01ffff, #40ccf0);
}

/* 
.sec-three-about {
    border-bottom: none;
    background: white;
    padding-block: 0 !important;
} */

.sec-three .metrics-div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sec-three .metrics-div .value {
    font-size: 4rem;
    /* background: linear-gradient(90deg, rgba(164, 150, 255, 1) 50%, rgba(0, 242, 255, 1) 100%); */
    background: linear-gradient(140deg, #857dfa, rgb(48, 165, 255));
    background-clip: text;
    color: transparent;
    font-weight: 400;
    max-width: max-content;
    position: relative;
    padding-right: 1rem;
}

.sec-three .metrics-div .value::after {
    content: '+';
}

.sec-three .metrics-div .value.value-last::after {
    content: '%';
}

.sec-three .metrics-div .value-description {
    font-size: 1.5rem;
    line-height: 1.5;
}

.sec-three .metrics-div .value-description span {
    font-weight: 500;
    font-size: inherit;
}

@media screen and (max-width: 800px) {
    .sec-three {
        /* flex-direction: column; */
        padding: 3rem 5%;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .sec-three-about {
        padding-bottom: 3rem;
    }

    .sec-three .metrics-div {
        gap: 0rem;
        max-width: calc(50% - 1rem);
    }

    .sec-three .metrics-div .value {
        font-size: 2.5rem;
    }

    .sec-three .metrics-div .value-description,
    .sec-three .metrics-div .value-description span {
        font-size: 1.25rem;
    }
}



/* Comparison Section Scoped */
.comparison-container {
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow:
        0 20px 60px -20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #fff;
    user-select: none;
    height: 350px;
}

.comparison-container .image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.comparison-container-heading {
    font-size: 4rem;
    text-align: center;
    padding: 0 10%;
    line-height: 1;
    margin-bottom: 1rem;
}

.comparison-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-container .image-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.comparison-container .image-after {
    z-index: 0;
    filter: saturate(1.1) contrast(1.05);
}

/* Labels */
.comparison-container .label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    z-index: 2;
    opacity: 0;
    /* transform: translateY(-10px); */
    transition: all 0.3s ease;
}

.comparison-container:hover .label {
    opacity: 1;
    transform: translateY(0);
}

.comparison-container .label-before {
    left: 20px;
    opacity: 1;
}

.comparison-container .label-after {
    right: 20px;
    opacity: 1;
}

/* Slider Handle Line with Gradient Fade */
.comparison-container .slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.comparison-container .slider-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 15%,
            rgba(255, 255, 255, 0.9) 40%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0.3) 85%,
            transparent 100%);
}

/* Knob */
.comparison-container .slider-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    z-index: 4;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.comparison-container .slider-knob:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.comparison-container .slider-knob svg {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
    opacity: 0.6;
}

/* Hover glow effect on knob */
.comparison-container .slider-knob::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.8) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.comparison-container:hover .slider-knob::before {
    opacity: 1;
}

/* Dragging state */
.comparison-container.dragging .image-before {
    transition: none;
}

.comparison-container.dragging .slider-line,
.comparison-container.dragging .slider-knob {
    transition: none;
}

/* Smooth transitions when not dragging */
.comparison-container .image-before,
.comparison-container .slider-line,
.comparison-container .slider-knob {
    transition: left 0.1s ease-out;
}


.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 5%;
    gap: 1rem;
    /* margin-bottom: 4rem; */
}

@media screen and (max-width: 1700px) {
    .comparison-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .comparison-container {
        border-radius: .25rem;
        max-width: 100%;
    }

    .comparison-container .slider-knob {
        width: 36px;
        height: 36px;
    }

    .comparison-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .comparison-container-heading {
        font-size: 2rem;
        text-align: center;
        padding: 0 5%;
        margin-bottom: .75rem;
    }

    .comparison-container .slider-knob svg {
        width: 16px;
        height: 16px;
    }

    .comparison-container .label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}