@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --white: #ffffff;
    --black: #101010;
    --pink: #ed2e7d;
    --lightpink: #da558c;
    --light-pink: #ffecf4;
    --new-lightpink: #fff7fa;
    --bs-pink-bg-rgb: 237, 46, 125;
    --bs-green-bg-rgb: 26, 171, 145;
    --green: #1aab91;
    --yellow: #ffc617;
    --text-grey: #c4c4c4;
    --grey: #e5e5e5;
    --grey2: #d4d4d5;
    --greylight-bg: #fbfbfb;
    --grey-bg: #f7f7f7;
    --light-grey-bg: #fafafa;
    --text-grey-2: #888888;
    --text-light-grey: #b3b3b3;
    --fraunces-font: Fraunces;
    --inter-font: Inter;
    --text-line-1: 1;
    --text-line-2: 2;
    --text-line-3: 3;
    --text-line-4: 4;

    --smokewhite: #f8fff8;
    --red: #d32f2f;
    --whitepink: #fdeaf2;
    --bs-light-green-bg-rgb: 245, 255, 254;
    --graylighter: #f6f3f3;
}
.line-clamp {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--text-line-1);
    -webkit-box-orient: vertical;
}
.text-pink {
    color: var(--pink);
}
.twoline {
    -webkit-line-clamp: var(--text-line-2);
}
.threeline {
    -webkit-line-clamp: var(--text-line-3);
}
.fourline {
    -webkit-line-clamp: var(--text-line-4);
}
.bgpink {
    background: var(--light-pink);
}
.border-pink {
    border: 1px solid var(--lightpink) !important; /* adjust pink shade */
}
.pink-gradient {
    background: linear-gradient(
        180deg,
        #fff 0%,
        rgba(255, 236, 244, 0.34) 100%
    );
}
.yellow {
    color: var(--yellow);
}
.gradientblogbg {
    background: linear-gradient(
        357deg,
        rgba(0, 0, 0, 0.911) 10%,
        rgba(0, 0, 0, 0) 90%
    );
}
.text-pink {
    color: var(--pink);
}
.pink-rgb {
    background-color: rgba(var(--bs-pink-bg-rgb), var(--bs-bg-opacity));
}
.green-rgb {
    background-color: rgba(var(--bs-green-bg-rgb), var(--bs-bg-opacity));
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.bg-opacity-2 {
    --bs-bg-opacity: 0.02;
}
.bg-opacity-5 {
    --bs-bg-opacity: 0.05;
}
.light-grey {
    background: var(--light-grey-bg);
}
.green {
    color: var(--green);
}
.fraunces-font {
    font-family: var(--fraunces-font);
}
.inter-font {
    font-family: var(--inter-font);
}
.fs-13 {
    font-size: 13px;
}
.line-clamp {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: var(--text-line-1);
    -webkit-box-orient: vertical;
}
.twoline {
    -webkit-line-clamp: var(--text-line-2);
}
.manrope {
    font-family: "Manrope";
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 576px) {
    .home-hero {
        min-height: 75vh !important;
    }
    .home-hero img {
        min-height: 50vh !important;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
sup {
    top: -1.5em;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
body {
    font-family: "Manrope", sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.3rem;
}
.fs-14 {
    font-size: 14px;
}
.fs-13 {
    font-size: 13px;
}
a {
    text-decoration: none;
}
.form-control:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: #dedede;
}
select.form-control {
    background: url(../images/down-arrow.svg) no-repeat center right 15px;
    background-size: 14px;
}
.line-clamp-title1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.line-clamp-text4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
h1,
h2 {
    /* font-family: var(--fraunces-font); */
    font-family: var(--inter-font);
}
h1,
h2,
h3,
h4,
h5 {
    /* font-family: var(--fraunces-font); */
    font-family: var(--inter-font);
}
h6 {
    margin-top: 0px;
    line-height: 1.2;
}
ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-size: 14px;
    line-height: 22px;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

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

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
    -webkit-transition: color 0.3s 0s ease-out;
    -moz-transition: color 0.3s 0s ease-out;
    -ms-transition: color 0.3s 0s ease-out;
    -o-transition: color 0.3s 0s ease-out;
    transition: color 0.3s 0s ease-out;
}

button:focus {
    outline: 0;
}

/********** Theme button Start **********/
.themebtn,
.white-btn,
.green-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.7rem 1.5rem;
    background: var(--pink);
    color: var(--white);
    transition: 0.5s ease-in-out;
    z-index: 1;
    border-radius: var(--bs-border-radius-pill);
}
.themebtn:before,
.themebtn:after,
.green-btn:before,
.green-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green);
    transition: 0.5s ease-in-out;
    z-index: -1;
}
.themebtn:before {
    transform: translateY(-102%);
}
.themebtn:after {
    transform: translateY(102%);
}
.themebtn:hover:before {
    transform: translateY(-49%);
}
.themebtn:hover:after {
    transform: translateY(49%);
}
.themebtn:hover {
    color: var(--white);
}

/********** White Start end **********/
.white-btn {
    color: var(--black);
    background: var(--white);
}
.white-btn:before,
.white-btn:after {
    background-color: var(--pink);
}
.white-btn:hover {
    color: var(--white);
}

/********** Green Start end **********/
.green-btn {
    color: var(--white);
    background: var(--green);
}
.green-btn:before,
.green-btn:after {
    background-color: var(--pink);
}
/*.green-btn:hover{ color: var(--white); }*/
/********** Buttons End **********/

*::-moz-selection {
    background: #c5e3fe;
    color: #000;
    text-shadow: none;
}

*::-webkit-selection {
    background: #c5e3fe;
    color: #000;
    text-shadow: none;
}
*::selection {
    background: #c5e3fe;
    color: #000;
    text-shadow: none;
}
.zoom-img {
    overflow: hidden;
}
.zoom-img img {
    object-fit: cover;
    transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transition: all 700ms ease;
}
.zoom-img:hover img {
    transform: scale(1.2) rotate(2deg);
    -moz-transform: scale(1.2) rotate(2deg);
    -ms-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
}
.shinecircle {
    position: relative;
}
.shinecircle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.shinecircle:hover::before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
.semirounded {
    border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg)
        var(--bs-border-radius-lg) var(--bs-border-radius-xxl);
}

/******Header Start******/
.topbar a:hover {
    color: var(--pink);
}
header {
    background: var(--white);
}
.headerlogo a {
    width: 14rem;
    display: block;
}
.navigation {
    position: relative;
    justify-content: center;
}
.navigation ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    transition: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.navigation ul li a {
    display: inline-block;
    padding: 10px 0 10px 0;
    position: relative;
    margin: 0 1.5rem 0 0;
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
}
.navigation ul li:last-child a {
    margin: 0;
}
.dropdown-toggle::after {
    width: 6px;
    height: 6px;
    margin-left: 0.6em;
    border: solid var(--black);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 42%;
}
/* .navigation ul li a:hover,
.navigation ul li a.active {
    color: var(--green);
} */
.navbar .nav-link.dropdown-toggle:focus,
.navbar .nav-link.dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
/* .navigation ul li:hover .dropdown-menu {
    display: block;
} */
/* .navigation ul li a.nav-link.dropdown-toggle {
    pointer-events: none;
}
@media (min-width: 992px) {
    .navigation ul li a.nav-link.dropdown-toggle {
        pointer-events: none;
    }
} */

/* @media (max-width: 991px) {
    .navigation ul li a.nav-link.dropdown-toggle {
        pointer-events: auto;
    }
} */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu.mega-menu-spec {
        position: static;
        display: none;
    }

    .nav-item.dropdown.show .dropdown-menu.mega-menu-spec {
        display: block;
    }
}
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .dropdown-toggle::after {
    margin-top: 4px;
    margin-left: 2px;
    transform: rotate(225deg);
}

.search i {
    font-size: 1.3rem;
}
.catdropdown-mega .dropdown-menu.catdropdown,
.catdropdown-mega .dropdown-menu.catdropdown.show {
    width: 100%;
    min-width: 995px;
    /*left: -14rem !important;*/
    padding: 15px;
    transform: translate3d(-14rem, 0, 0px) !important;
    margin: 0 !important;
    inset: inherit !important;
}
.catdropdown-mega .dropdown-menu.catdropdown .row > .col-md-8 > ul {
    width: auto;
    display: inline-block;
    border-right: solid 2px var(--yellow-light);
    border-radius: 0;
    background: none;
    padding-right: 2.5rem;
    height: 100%;
}
.catdropdown-mega .dropdown-menu.catdropdown ul > li > a {
    text-transform: capitalize;
    padding: 0;
}
.catdropdown-mega .dropdown-menu.catdropdown ul > li > a:hover {
    color: var(--green);
}

li.dropend .dropdown-menu {
    width: 66%;
    position: absolute;
    right: 0;
    top: 0;
    text-align: left;
    margin: 0;
    padding: 0;
    height: 100%;
}
li.dropend {
    padding: 0.2rem 0;
}
li.dropend .dropdown-menu li {
    display: inline-block;
    width: 49%;
}

.header-logo {
    width: 9rem;
}
.header-logo img,
.footer-logo img {
    width: 100%;
}
@media (max-width: 991px) {
    /* .navigation {
    display: none !important;
  } */

    .navbar-toggler {
        display: block !important;
    }

    .offcanvas.offcanvas-start {
        width: 450px;
    }
    .offcanvas-title img {
        height: 3rem;
    }
    .offcanvas-body .navbar-nav li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
}
@media (max-width: 991px) {
    .mega-menu-spec .specilaty-btn,
    .mega-menu .specilaty-btn {
        width: 80% !important;
    }
    .doctor-card-header img {
        height: 280px !important;
        width: 100%;
        object-fit: cover !important;
    }
    .mega-list .nav-link.active {
        border-color: none !important;
        background-color: none !important;
        color: black;
    }
}
.mega-menu-spec {
    border-radius: 30px;
    padding: 30px 0;
    width: 880px;
    /* left: 50%; */
    transform: translateX(-50%);
    margin-top: -3px !important;
}
.mega-menu-spec .doctor-pill {
    height: 4rem;
    font-size: 0.9rem;
}
.mega-menu-spec .doctor-pill a {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
@media (max-width: 991.98px) {
    .mega-menu-spec {
        width: 100%;
        max-width: 880px;
        padding: 24px 20px;
        border-radius: 24px;
        left: 0 !important;
        transform: none !important;
        max-height: 490px !important;
        overflow-y: auto !important;
    }
    .mega-menu-spec .doctor-pill a {
        border-bottom: none !important ;
        font-size: 14px !important;
        height: 4rem;
        text-align: start !important;
        align-items: start !important;
        justify-content: start !important;
    }
}

@media (max-width: 1598.98px) and (min-width: 992px) {
    .mega-menu-spec {
        /* width: 100%; */
        max-width: 880px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .mega-menu-spec {
        width: 100%;
        padding: 20px 16px;
        border-radius: 20px;
        left: 0 !important;
        transform: none !important;
        max-height: 380px !important;
        overflow-y: auto !important;
    }
    /* Doctor pills full-width */
    .mega-menu-spec .doctor-pill {
        width: 100%;
        font-size: 14px !important;
        padding: 1px 14px;
        font-weight: 500;
        height: 3rem;
    }
    .mega-menu-spec .doctor-pill a {
        border-bottom: none !important ;
    }
    .mega-menu-spec .doctor-pill a {
        text-align: start !important;
        align-items: start !important;
        justify-content: start !important;
    }
}

@media (max-width: 991px) {
    .mobile-step {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.35s ease-in-out;
    }

    .mobile-step.active-step {
        transform: translateX(0);
        opacity: 1;
        z-index: 10;
    }

    #specialtyStep.active-step {
        position: relative;
    }

    .mega-menu .container {
        position: relative;
        overflow: hidden;
        min-height: 500px;
    }
}
/* Mega menu base */
.mega-menu {
    width: 1100px !important;
    max-width: 1100px !important;
    padding: 30px 0;
    /* left: 50%; */
    transform: translateX(-50%);
    border-radius: 24px;
    width: 100%;
    margin-top: -3px !important;
}
.mega-list {
    max-height: 360px !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important; /* 🔑 KEY FIX */
}

.mega-list li {
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid transparent;
    margin-bottom: 0.3rem;
    box-sizing: border-box;
    white-space: normal; /* allows text to wrap inside item */
    flex-shrink: 0;
}
.contact-stack {
    padding-top: 2px;
    height: 100px !important;
    overflow-y: auto !important;
}
.doctor-card-header img {
    height: 200px !important;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.mega-list li .nav-link {
    color: black !important;
    border-radius: 12px;
    display: block !important;
}

.mega-list li:hover,
.mega-list li.active,
.mega-list li:hover .nav-link,
.mega-list li .nav-link.active {
    border-color: #ff4f87;
    background-color: var(--new-lightpink);
    color: black !important;
}

.doctor-pill {
    display: block;
    padding: 10px 8px;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid transparent;
    font-weight: 500;
    box-sizing: border-box;
}

.doctor-pill.active,
.doctor-pill:hover {
    border-color: #ff4f87;
    color: black;
    background-color: var(--white);
    /* background-color: var(--new-lightpink); */
}

/* Doctor card */
.doctor-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}
.mega-list .nav-link {
    border-radius: 12px;
    cursor: pointer;
}
.mega-list .nav-link i {
    float: right;
}
.mega-list .nav-link.active {
    border-color: #ff4f87;
    background-color: var(--new-lightpink);
    color: black;
}

.contheight {
    max-height: 360px !important;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 991.98px) {
    .mega-menu {
        width: 100%;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .mega-list {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .mega-list li {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .doctor-pill {
        padding: 10px 12px;
        font-size: 14px;
    }

    .doctor-card {
        padding: 18px;
        border-radius: 18px;
    }
}

@media (min-width: 1220px) and (max-width: 1590px) {
    .mega-menu {
        min-width: 1100px !important;
        max-width: 1100px !important;

        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 998px) and (max-width: 1218px) {
    .mega-menu {
        width: 600px !important;
        /* max-width: 100%; */
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-50%);
        left: 50%;
    }
    .contact-stack {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .contact-stack .vr {
        display: none;
    }
}

@media (max-width: 991px) {
    .mega-menu {
        width: 100% !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        left: 0 !important;
        transform: none !important;
    }
    .contact-stack {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-stack .vr {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .mega-menu {
        width: 100%;

        padding: 16px;
        border-radius: 16px;
        left: 0 !important;
        transform: none !important;
    }

    .mega-list {
        gap: 10px;
    }

    .mega-list li {
        padding: 10px 14px;
        font-size: 14px;
    }

    .doctor-pill {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }

    .doctor-card {
        padding: 14px;
        border-radius: 14px;
        text-align: center;
    }
}

.slider-area {
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .slider-area {
        height: auto !important;
        position: relative;
        overflow: hidden;
    }
    .slider-area img {
        height: auto !important;
    }
    .hero-pill {
        display: none !important;
    }
    .slider-area::after {
        top: auto;
        display: inline-block;
        overflow-x: hidden;
        z-index: 1 !important;
        overflow-x: hidden;
        background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1470 211' fill='none'><path d='M710.104 126.582C423.04 125.939 0.0722656 13.4324 0.0722656 13.4324V211H1469.07V0C1469.07 0 997.169 127.225 710.104 126.582Z' fill='white'/></svg>")
            no-repeat center / cover;
    }
    .slider-area h1 {
        font-size: 1.6rem;
        padding-top: 3rem;
        font-weight: 900;
    }
    .slider-area p {
        font-size: 0.7rem;
        line-height: 1rem !important;
    }
    .carrer-details h5 {
        font-size: 1.1rem;
    }
}
@media (min-width: 991px), (max-width: 1180px) {
    .hero-pill {
        margin-top: 4rem !important;
    }
}
.hero-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.owl-item.active .hero-animate {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 991px) {
    #hero-carousel .owl-nav {
        display: flex !important;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        width: 100%;
        transform: translateY(-50%);
    }

    #hero-carousel .owl-nav button {
        font-size: 2rem !important;
        background-color: white;
        border-radius: 50%;
        padding: 0.5rem !important;
    }
}

@media (min-width: 992px) {
    #hero-carousel .owl-nav {
        display: none !important;
    }
}

.slider-area::before,
.slider-area::after,
.ads-area::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: linear-gradient(
        90deg,
        rgb(255 255 255 / 30%) 0.85%,
        rgb(255 255 255 / 0%) 55.91%,
        rgb(255 255 255 / 0%) 80.12%
    );
    overflow-x: hidden;
}
.slider-area::after {
    height: 30%;
    width: 100%;
    top: auto;
    bottom: -10%;
    display: inline-block;
    overflow-x: hidden;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1470 211' fill='none'><path d='M710.104 126.582C423.04 125.939 0.0722656 13.4324 0.0722656 13.4324V211H1469.07V0C1469.07 0 997.169 127.225 710.104 126.582Z' fill='white'/></svg>")
        no-repeat center / cover;
}

/* Features Area start */
.featurebox {
    border: solid 1px var(--light-pink);
}
.icon {
    width: 5rem;
    height: 5rem;
}
.featurebox .icon {
    /*top: 0; transform: translate(0, -60%);*/
    margin-top: -18%;
    border: solid 0.3rem var(--light-pink);
    padding: 1.1rem;
    margin-bottom: 1.5rem;
}
.featurebox .icon svg,
.featurebox .icon img {
    width: 100%;
    height: 100%;
    background-size: cover;
}
.featurebox,
.featurebox .icon,
.featurebox .icon svg path {
    transition: all 0.35s ease-in-out;
}

.featurebox:hover {
    transform: scale(1.04);
    background: var(--white);
    border-color: var(--light-pink);
}
.featurebox:hover h6 a,
.certifiedbox h6 a:hover {
    color: var(--pink);
}
.featurebox .icon::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: -3px;
    border-radius: inherit;
    transform: rotate(50deg);
    background: conic-gradient(
        var(--light-pink) var(--fill-color),
        transparent var(--fill-color)
    );
    transition: --fill-color 0.75s ease-in-out;
}
.featurebox:hover .icon {
    color: var(--light-pink);
    --fill-color: 100%;
    box-shadow: 0 4px 17.2px 0 rgba(0, 0, 0, 0.05);
}
@property --fill-color {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 10%;
}

.surgenbox .featurebox .icon::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: -3px;
    border-radius: inherit;
    transform: rotate(50deg);
    background: var(--grey);
    transition: --fill-color 0.75s ease-in-out;
}

.surgenbox .featurebox .icon {
    color: var(--pink);
}

.surgenbox .featurebox .icon svg path {
    fill: var(--pink);
}

.surgenbox .featurebox:hover .icon svg path {
    fill: #000 !important;
}

.surgenbox .featurebox:nth-child(6) .icon svg path {
    stroke: var(--pink);
}

/* Prevent hover from affecting 6th item */
.surgenbox .featurebox:nth-child(6):hover .icon svg path {
    fill: var(--pink) !important;
}
.doctor-card-home {
    height: 18.76rem;
    width: 100%;
}
@media (max-width: 578px) {
    .doctor-card-home {
        height: 14rem !important;
        width: 100%;
    }
}
.surgries .featurebox {
    border: solid 1px var(--light-pink);
    color: black;
}
.surgries .featurebox .icon svg path {
    fill: var(--black);
}
.surgries .icon {
    width: 5rem;
    height: 5rem;
}
.surgries .featurebox .icon {
    /*top: 0; transform: translate(0, -60%);*/
    margin-top: -18%;
    border: solid 0.3rem var(--light-pink);
    padding: 1.1rem;
    margin-bottom: 1.5rem;
}
.surgries .featurebox .icon svg,
.surgries .featurebox .icon img {
    width: 100%;
    height: 100%;
    background-size: cover;
}
.surgries .featurebox,
.surgries .featurebox .icon,
.surgries .featurebox .icon svg path {
    transition: all 0.35s ease-in-out;
}
.surgries .featurebox .icon svg path:hover {
    color: var(--pink) !important;
}

.surgries .featurebox:hover h6 a,
.surgries .certifiedbox h6 a:hover {
    color: var(--pink) !important;
}
.surgries .featurebox .icon::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: -3px;
    border-radius: inherit;
    transform: rotate(50deg);
    /* background: var(--gray) !important; */
}
.surgries .featurebox:nth-child(6) .icon svg path {
    stroke: var(--black);
}

/* Prevent hover from affecting 6th item */
.surgries .featurebox:nth-child(6):hover .icon svg path {
    fill: var(--pink) !important;
}

/* Features Area start */
.featuresarea1{
    background-color:#f5f5f5;
}
@media (max-width: 575px) {
    .featuresarea1 .featurebox {
        padding: 1rem 0.8rem;
        width: 250px !important;
        justify-content: center;
        align-items: center;
    }
}
@media (min-width: 576px) and (max-width: 994px) {
    .featuresarea1 .feature-wrap {
        justify-content: center;
        align-items: center;
        grid-template-columns: repeat(2, 2fr) !important;
    }
}

@media (max-width: 991px) {
    /* Tablet */
    .featurebox {
        padding: 1.5rem 1rem;
    }

    .featurebox .icon {
        width: 5rem;
        height: 5rem;
        padding: 1.2rem;
        margin-top: -18%;
    }
}

@media (max-width: 767px) {
    /* Large Mobile */
    .featurebox {
        padding: 1.2rem 1rem;
    }

    .featurebox .icon {
        width: 4.3rem;
        height: 4.3rem;
        padding: 1rem;
        margin-top: -15%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .feature-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .featuresarea .featurebox {
        padding: 1.5rem 1rem;
    }

    .featuresarea .featurebox .icon {
        width: 5rem;
        height: 5rem;
        padding: 1.2rem;

        margin-top: -12%;
    }
}

@media (max-width: 575px) {
    .feature-wrapper {
        justify-content: center;
        align-items: center;
    }
    /* Small Mobile */
    .featuresarea .featurebox {
        padding: 1rem 0.8rem;
        width: 250px !important;
        justify-content: center;
        align-items: center;
    }

    .featurebox .icon {
        width: 3.8rem;
        height: 3.8rem;
        padding: 0.8rem;
        margin-top: -12%;
    }

    .featurebox h6,
    .featurebox p {
        text-align: center;
    }
}
/******* About us page Start **********/
.aboutimg::before,
.whychoose::before,
.whychoose::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='299' height='313' viewBox='0 0 299 313' fill='none'%3E%3Cpath d='M21.154 81.1024C72.9871 -48.6868 298.952 16.2396 298.952 16.2396C298.952 16.2396 287.691 205.224 214.233 266.982C146.915 323.578 73.8977 329.118 29.8143 271.271C-7.74761 221.982 -8.88608 156.322 21.154 81.1024Z' fill='%23FFDFEA'/%3E%3C/svg%3E")
        no-repeat center / cover;
    width: 13rem;
    height: 13.5rem;
    position: absolute;
    z-index: -1;
    left: -2.5rem;
    bottom: -2rem;
}
.title strong {
    font-style: normal;
}
/******* About us page End **********/

.specialt-img {
    height: 15rem;
    width: 100%;
}
.carousel-arrows .owl-nav {
    margin: 0 auto;
    position: absolute;
    width: 100%;
    transform: translate(0, -80%);
    justify-content: space-between !important;
    display: inline-flex;
    top: 35%;
    /* top: 50%; */
}
.carousel-arrows .owl-nav button.owl-prev,
.carousel-arrows .owl-nav button.owl-next {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    border-radius: var(--bs-border-radius-pill);
    color: var(--black);
    border: solid 1px var(--light-pink);
    font-size: 1.2rem;
}
.carousel-arrows .owl-nav button.owl-prev {
    left: 0;
    position: relative;
}
.carousel-arrows .owl-nav button.owl-next {
    right: 0;
    position: relative;
}
.awards-carousel-arrows .owl-nav button.owl-prev {
    left: 7%;
}
.awards-carousel-arrows .owl-nav button.owl-next {
    right: 7%;
}
.whychoose::before {
    transform: rotate(100deg);
    opacity: 0.5;
    top: -1.5rem;
    bottom: auto;
    left: -4.5rem;
}

/* ---- After Shape ---- */
.whychoose::after {
    transform: rotate(275deg);
    opacity: 0.4;
    right: -2.5rem;
    left: auto;
    bottom: -2rem;
}
@media (max-width: 992px) {
    .whychoose::before,
    .whychoose::after {
        width: 10rem;
        height: 10rem;
    }
    .whychoose::before {
        top: -1rem;
        left: -3rem;
    }
    .whychoose::after {
        right: -2rem;
        bottom: -1.5rem;
    }
}

@media (max-width: 768px) {
    .whychoose::before,
    .whychoose::after {
        width: 8rem;
        height: 8rem;
    }
    .whychoose::before {
        top: -0.5rem;
        left: -2rem;
    }
    .whychoose::after {
        right: -1rem;
        bottom: -1rem;
    }
}

@media (max-width: 576px) {
    .whychoose::before,
    .whychoose::after {
        width: 6rem;
        height: 6rem;
        opacity: 0.3;
    }
    .whychoose::before {
        top: 0;
        left: -3rem;
    }
    .whychoose::after {
        right: -0.5rem;
        bottom: -2rem;
    }
}
.whychooselist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* List item styling */
.whychooselist li {
    padding: 0.9rem;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--fraunces-font);
    transition: all 0.3s ease;
    color: var(--bs-body-color);
    display: flex;
    align-items: center;
}

/* Icon circle sizing */
.whychooselist .icon-circle {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.whychooselist .icon-circle img {
    width: 20px;
    height: 20px;
}

/* ✅ Tablet */
@media (max-width: 991px) {
    .whychooselist {
        grid-template-columns: repeat(2, 1fr);
        padding: 0.3rem 0rem 1rem !important;
    }
}

/* ✅ Mobile */
@media (max-width: 575px) {
    .whychooselist {
        grid-template-columns: 1fr;
    }

    .whychooselist li {
        font-size: 0.9rem;
        padding: 0.3rem 0rem 1rem !important;
    }
}
/* .whychooselist li::before {
    content: "\F272";
    font-family: bootstrap-icons !important;
    background: var(--green);
    color: var(--white);
    position: absolute;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    font-size: 10px;
    left: 0.8rem;
    top: 1rem;
    line-height: 1.1rem;
    text-align: center;
} */
/* .whychooselist li:hover {
       box-shadow: 10px 8px 26.2px 0 rgba(196, 196, 196, 0.329);
} */

/******* Testimonials Start**********/
.testimonial-area .owl-nav {
    position: absolute;
    left: -51%;
    bottom: 10%;
}
.testimonial-area .owl-nav button {
    border-radius: 50px;
    background: var(--light-grey-bg) !important;
    height: 35px;
    width: 35px;
    margin-right: 10px;
}
/* .rating i {
    color: var(--yellow);
}

.testi-item-card .rating {
    margin-bottom: 30px;
    font-size: 1rem;
}
.testi-item-card .rating i {
    color: var(--pink);
}
.testi-item-card > p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    color: var(--bs-dark-text-emphasis);
    min-height: 15rem;
}
.testi-desc-wrap {
    margin-top: 48px;
}
.name-f-letter {
    background: var(--pink);
    padding: 0.8rem 1.2rem;
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.2rem;
    color: var(--white);
    margin-right: 1rem;
}
.testi-desc-wrap .testi-desc h5 {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
}
.testi-desc-wrap .testi-desc p {
    color: #5d5f60;
    margin-bottom: 0;
} */

/* Default all cards (side ones) */
/* Side cards (default) */
#testimonials-carousel .owl-item {
    opacity: 0.6;
    transform: scale(0.85);
    filter: blur(1px);
    transition: all 0.4s ease;
}

#testimonials-carousel .owl-item.active {
    opacity: 0.5;
    filter: blur(1px);
}

#testimonials-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}
.testi-item-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: 0.3s ease;
    margin: 10px;
}

.owl-item.active.center .testi-item-card {
    box-shadow: 0 10px 20px rgba(65, 64, 64, 0.123);
}
.rating i {
    color: var(--yellow);
}
.testi-item-card .rating {
    margin-bottom: 10px;
    font-size: 1rem;
}
.testi-item-card .rating i {
    color: var(--pink);
}
.testi-item-card > p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    color: var(--bs-dark-text-emphasis);
    min-height: 15rem;
}

.name-f-letter {
    background: var(--pink);
    padding: 0.8rem 1.2rem;
    border-radius: var(--bs-border-radius-lg);
    font-size: 1.2rem;
    color: var(--white);
    margin-right: 1rem;
}
.testi-desc-wrap .testi-desc h5 {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
}
.testi-desc-wrap .testi-desc p {
    color: #5d5f60;
    margin-bottom: 0;
}

/******* Testimonials Close **********/

/******* Blog Start **********/
.success-wrapper {
    margin: 5rem 0;
    width: 120%;
}
.success-wrapper::after {
    content: "";
    --bg-opacity-10: 0.13;
    background: rgba(var(--bs-pink-bg-rgb), var(--bg-opacity-10));
    border-radius: var(--bs-border-radius-xl) 0 0 var(--bs-border-radius-xl);
    position: absolute;
    width: 55%;
    right: 0;
    top: 10%;

    bottom: 10%;
}
@media (max-width: 576px) {
    .success-wrapper::after {
        top: 0%;
        width: 100% !important;
    }
}
.success-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(178deg, #ffffff00 62.84%, var(--bs-black) 95%);
    left: 0;

    z-index: 9;
}
.blog-box {
    height: 300px;
    object-fit: cover;
}
.blogimg .slider-text .icon-box {
    position: static !important;
}
.slider-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 9;
    width: 100%;
    left: 0;
}
.slider-text p {
    margin-bottom: 0;
    font-family: var(--fraunces-font);
}
.slider-text .icon-box {
    position: static !important;
}
.slider-text .icon-box {
    border: none;
    height: 3rem;
    width: 3rem;
    position: absolute !important;
    transition: 0.5s;
    right: 12px;
    bottom: 10px;
}
.slider-text .icon-box i {
    transition: 0.5s;
}
.slider-text .icon-box:hover {
    background: var(--green);
}
.slider-text .icon-box:hover i {
    transform: rotate(45deg);
}
.success-wrapper .owl-nav {
    position: absolute;
    right: 17%;
    bottom: -18%;
}
.success-wrapper .owl-nav .owl-prev,
.success-wrapper .owl-nav .owl-next {
    background: var(--bs-white) !important;
    border-radius: 100%;
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    vertical-align: middle;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.success-wrapper .owl-nav .owl-prev span,
.success-wrapper .owl-nav .owl-next span {
    font-size: 2.5em;
    display: inline;
    margin-top: -6px;
}
.latestblogtext {
    position: absolute;
    bottom: 0;
    left: 0;
}

.ads-area {
    /*background: linear-gradient(180deg, rgba(184, 176, 204, 0.00) 0%, rgba(174, 164, 198, 0.50) 46.63%, #A599C1 71.63%);*/
    /* background: linear-gradient(
        90deg,
        rgb(165 153 193) 25.85%,
        rgb(165 153 193 / 26%) 55.91%,
        rgb(255 255 255 / 0%) 80.12%
    ); */
    background: linear-gradient(
        -90deg,
        rgb(184 176 204 / 9%) 0%,
        rgba(174, 164, 198, 0.5) 49.04%,
        #a599c1 70.06%
    );
}
.ads-area::before,
.ads-area::after {
    content: "";
    background: url(../images/yogacircle.svg) no-repeat center center / contain;
    height: 70%;
    width: 70%;
    position: absolute;
    transform: rotate(-65deg);
    filter: blur(1.100000023841858px);
    opacity: 0.6;
}
.ads-area::before {
    top: -45%;
    left: -39%;
}
.ads-area::after {
    bottom: -47%;
    left: -36%;
}

/* Mobile text optimization */
@media (max-width: 567px) {
    .ads-banner h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .ads-banner p {
        display: none;
    }

    .ads-banner .themebtn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .ads-banner .p-5 {
        padding: 1.25rem !important;
    }
}
@media (max-width: 867px) {
    .ads-banner h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .ads-banner .p-5 {
        padding: 1.25rem !important;
    }
}

ul.sociallist li {
    border-radius: 50%;
    display: inline-flex;
    margin-right: 5px;
}
ul.sociallist li a {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 100%;
    transition: color 0.15s ease-in;
    color: var(--black);
    --bs-bg-opacity: 0.14;
    background-color: var(--grey);
}
.contactsocail li a {
    background-color: var(--text-grey);
    box-shadow: none;
}
ul.sociallist li a i {
    transition: transform 0.75s ease-in-out;
    transform: scale(1);
}

ul.sociallist li a:hover {
    color: var(--pink);
    --circle-fill-color: 100%;
    background: var(--light-pink);
}
.contactsocail li a:hover {
    box-shadow: none;
}
ul.sociallist li a:hover i {
    transform: scale(1.25);
}

ul.sociallist li a::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(
        var(--pink) var(--circle-fill-color),
        transparent var(--circle-fill-color)
    );
    transition: --circle-fill-color 0.75s ease-in-out;
}

@property --circle-fill-color {
    syntax: "<percentage>";
    inherits: true;
    initial-value: 0%;
}
.footer-logo a {
    width: 12rem;
    display: inline-block;
}

.footerli li a {
    position: relative;
}
.footerli li a:hover {
    color: var(--pink);
}
.footerli li a::before {
    content: "";
    border-bottom: solid 1px var(--pink);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s;
}
.footerli li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
.subscribebox .btn {
    padding: 0.8rem 1.8rem;
}
.subscribebox input,
.subscribebox input::placeholder {
    font-size: 14px;
    color: var(--bs-gray-600);
    font-weight: 400;
}
@media (max-width: 576px) {
    .copyright-area .lastlogo {
        align-items: start !important;
        justify-content: left !important;
    }
}
/*********** Footer Close ***********/

/* new css */

.slider-areaabout {
    height: 65vh;
    align-items: center;
}

.slider-areaabout img.hero-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: right center;
}

/* Add a soft white gradient overlay */
.slider-areaabout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(77, 77, 77, 0.95) 0%,
        rgba(77, 77, 77, 0.2) 70%,
        rgba(77, 77, 77, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .slider-areaabout::before {
        width: 100% !important;
        background: linear-gradient(
            90deg,
            rgba(77, 77, 77, 0.575) 0%,
            rgba(77, 77, 77, 0.507) 100%
        ) !important;
    }
}

.gray-rgb {
    background: var(--bg-white-14);
}

.abt-img {
    margin-top: -10px;
}
.bg-pink {
    background: linear-gradient(90deg, var(--pink) 38.97%, #d8739d7e 100%);
}
.pink-new {
    background: var(--lightpink);
}
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left decoration */
/* .featuresarea1::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -4rem;
    width: 26rem;
    height: 30rem;
    background: url("../images/bg1.png") center bottom / cover no-repeat;
    mix-blend-mode: color-burn;
    opacity: 0.6;
    z-index: -1;
}


.featuresarea1::after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: -2rem;
    width: 17rem;
    height: 27rem;
    background: url("../images/bg2.png") center bottom / cover no-repeat;
    mix-blend-mode: color-burn;
    opacity: 0.6;
    z-index: -1;
} */

@media (max-width: 992px) {
    .featuresarea1::before,
    .featuresarea1::after {
        width: 16rem;
        height: 18rem;
        opacity: 0.4;
    }
}

@media (max-width: 576px) {
    .featuresarea1::before,
    .featuresarea1::after {
        display: none;
    }
}
.about-crousal-img {
    height: 25rem;
}
.textstyle {
    color: var(--white);
    font-family: "Fraunces";
    line-height: 1.1rem;
}
.heading {
    font-family: "Fraunces";
}
.feature-list li {
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list .icon-circle {
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
    background-color: var(--smokewhite);
}

.feature-list img {
    width: 1.7rem;
    height: 2rem;
    object-fit: contain;
}
.responsive-leftcol {
    width: 25% !important;
}

@media (max-width: 576px) {
    .feature-list .icon-circle {
        width: 3.2rem;
        height: 3.2rem;
    }
    .feature-list h5 {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .responsive-leftcol {
        width: 100% !important;
    }

    .responsive-leftcol .card,
    .responsive-leftcol img {
        width: 100%;
    }

    .responsive-leftcol img {
        height: auto;
    }
}
.faq .equal-card {
    height: 11.4rem;
}

.equal-card {
    height: 17.4rem;
}
@media (max-width: 1400px) {
    .equal-card {
        height: 15rem;
    }
}
@media (max-width: 767px) {
    .equal-card {
        height: 17rem;
    }
}

.equal-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}
.about-overlay {
    background: linear-gradient(180deg, rgba(54, 54, 54, 0) 30%, #030303c2 70%);
}
.about-overlay-award {
    background: linear-gradient(180deg, rgba(54, 54, 54, 0) 60%, #030303c2 90%);
}

.our-story {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}

.our-story::before,
.our-story::after {
    content: "";
    position: absolute;
    z-index: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
}

/* Left Blob */
.our-story::before {
    top: 0;
    left: -4rem;
    width: 8rem;
    height: 8rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87 67' fill='none'><path d='M27.032 -5.23731C61.7375 -16.3148 86.4411 41.3887 86.4411 41.3887C86.4411 41.3887 46.6301 70.8158 21.9676 65.9825C-0.633123 61.5533 -13.9387 47.3639 -9.6901 28.514C-6.07006 12.4527 6.91832 1.18271 27.032 -5.23731Z' fill='%23FFF3F8'/></svg>");
}

/* Right Blob */
.our-story::after {
    top: 3rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145 139' fill='none'><path d='M70.9011 2.67048C136.504 -18.2689 183.2 90.8059 183.2 90.8059C183.2 90.8059 107.947 146.431 61.3279 137.295C18.6067 128.922 -6.54421 102.101 1.48667 66.4693C8.3295 36.1092 32.8809 14.806 70.9011 2.67048Z' fill='%23FFF3F8'/></svg>");
}

.our-story .container {
    position: relative;
    z-index: 2;
}
.our-story .card-missions {
    height: 15rem !important;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .our-story::before {
        width: 5rem;
        left: -2rem;
        top: -1rem;
        opacity: 0.9;
    }
    .our-story::after {
        width: 6rem;
        right: -1rem;
        top: 2rem;
        opacity: 0.9;
    }
}

.videothumb {
    width: 500px;
    height: 500px;
    position: relative;
}

.videothumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #ffffff69;
    pointer-events: none;
    top: 10px;
    z-index: 11;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 100px;
    height: 100px;
    padding: 0.2rem;
    border-radius: 50%;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.play-btn .white-cir {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #ffffff94;
    animation: breathe 1.5s infinite ease-in-out;
}

/* ICON */
.play-btn .white-cir i {
    font-size: 60px;
    padding-left: 6px;
}

/* BREATHING ANIMATION */
@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */

/* LG & XXL */
@media (max-width: 1400px) {
    /* .videothumb {
    width: 350px;
    height: 350px;
  } */

    .play-btn {
        width: 80px;
        height: 80px;
    }

    .play-btn .white-cir i {
        font-size: 40px;
        padding-left: 4px;
        margin-top: 2px;
    }
}
@media (max-width: 1200px) {
    .videothumb {
        width: 360px;
        height: 360px;
    }
}
/* MD & LG */
@media (max-width: 992px) {
    .videothumb {
        width: 450px;
        height: 450px;
    }
    .play-btn {
        width: 80px;
        height: 80px;
    }

    .play-btn .white-cir i {
        font-size: 40px;
        padding-left: 4px;
        margin-top: 2px;
    }

    .content .cta1 {
        padding-right: 1rem;
    }

    .content .cta1 a {
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .videothumb {
        width: 100%;
        height: auto;
    }

    .videothumb img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

.story {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}

/* Decorative SVG blobs */
.story::before,
.story::after {
    content: "";
    position: absolute;
    z-index: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
}

/* Left blob */
.story::before {
    top: 0;
    left: -2rem;
    width: 6rem;
    height: 6rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87 67' fill='none'><path d='M27.032 -5.23731C61.7375 -16.3148 86.4411 41.3887 86.4411 41.3887C86.4411 41.3887 46.6301 70.8158 21.9676 65.9825C-0.633123 61.5533 -13.9387 47.3639 -9.6901 28.514C-6.07006 12.4527 6.91832 1.18271 27.032 -5.23731Z' fill='%23FFF3F8'/></svg>");
}

/* Top-right blob */
.story::after {
    top: 3rem;
    right: -2rem;
    width: 9rem;
    height: 9rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145 139' fill='none'><path d='M70.9011 2.67048C136.504 -18.2689 183.2 90.8059 183.2 90.8059C183.2 90.8059 107.947 146.431 61.3279 137.295C18.6067 128.922 -6.54421 102.101 1.48667 66.4693C8.3295 36.1092 32.8809 14.806 70.9011 2.67048Z' fill='%23FFF3F8'/></svg>");
}

/* Bottom-right blob (extra one) */
.story-bg-bottom {
    position: absolute;
    top: 10rem;
    right: -4rem;
    width: 8rem;
    height: 6rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100' fill='none'><path d='M53.9011 3.67048C110.504 -15.2689 155.2 75.8059 155.2 75.8059C155.2 75.8059 91.947 122.431 49.3279 114.295C10.6067 107.922 -9.54421 85.101 1.48667 55.4693C9.3295 30.1092 28.8809 12.806 53.9011 3.67048Z' fill='%23FFF3F8'/></svg>");
    z-index: 0;
    opacity: 1;
}

/* Keep content above blobs */
.story .container {
    position: relative;
    z-index: 2;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .story::before {
        width: 4rem;
        left: -2rem;
        top: -1rem;
        opacity: 0.9;
    }
    .story::after {
        width: 6rem;
        right: -1rem;
        top: 2rem;
        opacity: 0.9;
    }
    .story-bg-bottom {
        width: 7rem;
        right: -2rem;
        bottom: -2rem;
        opacity: 0.9;
    }
}

.location {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--white);
}
.location .location-content:hover{
    color: var(--pink);
}
/* Decorative SVGs using pseudo-elements */
.location::before,
.location::after {
    content: "";
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 1;
}

/* Bottom-left SVG */
.location::before {
    bottom: 1rem;
    left: -2rem;
    width: 6rem;
    height: 6rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 87 67' fill='none'><path d='M27.032 -5.23731C61.7375 -16.3148 86.4411 41.3887 86.4411 41.3887C86.4411 41.3887 46.6301 70.8158 21.9676 65.9825C-0.633123 61.5533 -13.9387 47.3639 -9.6901 28.514C-6.07006 12.4527 6.91832 1.18271 27.032 -5.23731Z' fill='%23FFF3F8'/></svg>");
}

/* Top-right SVG */
.location::after {
    top: 4rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 145 139' fill='none'><path d='M70.9011 2.67048C136.504 -18.2689 183.2 90.8059 183.2 90.8059C183.2 90.8059 107.947 146.431 61.3279 137.295C18.6067 128.922 -6.54421 102.101 1.48667 66.4693C8.3295 36.1092 32.8809 14.806 70.9011 2.67048Z' fill='%23FFF3F8'/></svg>");
}

/* Keep actual content above SVGs */
.location .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .location::before {
        width: 4rem;
        bottom: 1rem;
        left: -2rem;
        opacity: 0.9;
    }
    .location::after {
        width: 3.5rem;
        top: 2rem;
        right: -2rem;
        opacity: 0.9;
    }
}
.hero-top {
    background: url("../images/specialistheronew.webp") no-repeat bottom center /
        cover;
    height: 65vh;
    position: relative;
}

.ourservice {
    background: url("../images/specialsection-new1.webp") no-repeat bottom center /
        cover;
    min-height: 19rem;
    position: relative;
    transform: scaleX(-1);
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 22rem;
}

/* Image */
.specialimg {
    transition: transform 0.8s ease;
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

/* Overlay (starts at bottom half only) */
.servic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.801) 0%,
        rgba(24, 23, 23, 0.021) 90%
    );
    transform: translateY(30%);
    opacity: 0.8;
    transition: all 0.8s ease;
}

/* Text at bottom initially */
.overlay-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    opacity: 0.9;
    transition: all 0.8s ease;
}

/* Hover effects */
.location-card:hover .specialimg {
    transform: scale(1.08);
}

.location-card:hover .servic-overlay {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.87) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    transform: translateY(0);
    opacity: 1;
}

/* Text moves upward smoothly */
.location-card:hover .overlay-text {
    bottom: 50%;
    transform: translate(-50%, 50%);
    opacity: 1;
}

.location-card:hover .overlay-text h6 {
    transform: scale(1.1);
    transition: transform 0.4s ease;
    font-size: 1.5rem;
    font-weight: 300;
}
@media (max-width: 992px) {
    .location-card {
        border-radius: 0.75rem;
        height: 23rem !important;
    }

    .specialimg {
        /* height: 250px;  */
        transform: none !important;
    }

    .servic-overlay {
        transform: translateY(0);
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
        opacity: 1;
    }

    .overlay-text {
        bottom: 10%;
        transform: translate(-50%, 50%);
        font-size: 1rem;
    }

    .overlay-text h6 {
        font-size: 1.2rem;
    }

    .location-card:hover .overlay-text {
        bottom: 50%;
        transform: translate(-50%, 50%);
    }
}

/* Phones (max-width: 576px) */
@media (max-width: 576px) {
    .location-card {
        border-radius: 0.5rem;
        height: 15rem !important;
    }

    /* .specialimg {
        height: 200px;
    } */

    .servic-overlay {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.25) 100%
        );
    }

    .overlay-text h6 {
        font-size: 1rem;
    }

    /* Disable hover transitions (touch devices) */
    .location-card:hover .specialimg,
    .location-card:hover .servic-overlay,
    .location-card:hover .overlay-text {
        transform: none;
        opacity: 1;
    }
}
@media (max-width: 576px) {
    .location-card .overlay-text {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 10% !important;
        text-align: center;
    }

    .location-card:hover .overlay-text {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 50% !important;
    }

    .location-card .specializing {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center;
    }

    .location-card:hover .specializing {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 40% !important;
    }
}

/* FAQ Section */
.faq h2 {
    font-family: Manrope;
}

.custom-accordion .accordion-item {
    border: none;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.custom-accordion .accordion-button {
    background: var(--white);
    color: #000;
    font-weight: 500;
    /* padding: 1rem 2.4rem; */
    border: none;
    box-shadow: none;
    position: relative;
}

.custom-accordion .accordion-button::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    background-color: #000;
    border-radius: 50%;
    background-image: none;
    transform: none;
    margin-left: auto;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    background-color: var(--pink);
    color: var(--white);
    transform: rotate(0deg);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}
.ads-area-enq {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 25rem;
}

@media (max-width: 1480px) {
    .ads-area-enq h3 {
        font-size: 2rem;
    }
    .imgtestimonialsbox {
        height: 13rem;
    }
}

.ads-area-enq::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(253, 234, 242, 9) 0%,
        rgba(253, 234, 242, 9) 35%,
        rgba(253, 234, 242, 9) 40%,
        rgba(253, 234, 242, 0.9) 62%,
        rgba(253, 234, 242, 0.9) 22%,
        rgba(253, 234, 242, 0) 75%
    );
    z-index: 1;
    pointer-events: none;
}

.ads-area-enq img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95);
}

/* Text layer stays above */
.ads-area-enq > div {
    position: absolute;
    inset: 0;
    z-index: 2;
}

ul.Enquiry {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.Enquiry li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

ul.Enquiry li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

ul.Enquiry li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .faq-section {
        text-align: center;
    }
    .custom-accordion .accordion-button {
        font-size: 0.95rem;
    }
    .faq-section img {
        max-width: 80%;
    }
}
@media (max-width: 968px) {
    .main-header {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
    }
    .ads-area-enq img {
        display: none;
    }

    .ads-area-enq {
        background: #fdeaf2;
        min-height: 380px;
    }
    .main-header {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
    }
}
@media (max-width: 568px) {
    .herobtn {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .Enquiry {
        text-align: left;
    }
}

.Maternity h5 {
    font-family: Manrope;
}
.teamarea {
    transition: all 0.3s ease;
}
.bg {
    background-color: var(--whitepink);
}
.teamarea:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.specialt-img img {
    object-fit: cover;
}
.Maternity img {
    height: 20rem;
}
/* Default */
.teamarea {
    background-color: var(--whitepink);
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 320px;
}

@media (max-width: 992px) {
    .teamarea {
        padding: 1.8rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .teamarea {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 1.2rem 1rem;
    }
    .story {
        margin: 0 !important;
    }
    .Maternity {
        padding: 0 !important;
        margin: 0 !important;
    }
}
.team-area .carousel-arrows .owl-nav {
    margin: 0 auto;
    position: absolute;
    width: 100%;
    transform: translate(0, -80%);
    justify-content: space-between !important;
    display: inline-flex;
    top: 50%;
}

.owl-carousel {
    width: 100%;
}

.doctor-hero-section {
    background:
        linear-gradient(90deg, #c1d4ce 35.21%, rgba(255, 254, 254, 0) 55.09%),
        url("../images/dochero-new-1.jpg") no-repeat right top;

    background-size: auto;
    padding: 100px 0;
    min-height: 500px;
}

/* White pill tag */
.tag-pill {
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tag-pill .icon-box {
    background: rgba(255, 255, 255, 0.81);
    padding: 8px;
    border-radius: 50%;
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 18px;
    color: #333;
    max-width: 480px;
}

/* Search box */
.search-box {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.81);
    border-radius: 40px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 85%;
    font-size: 16px;
}

.search-box button {
    background: none;
    border: none;
    font-size: 20px;
    background-color: #e3f5f3;
    padding: 13px;
    border-radius: 50%;
}
.search-box i {
    color: #636363;
    font-weight: 900 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .doctor-hero-section {
        background-size: cover;
        background-position: center;
        text-align: center;
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .search-box {
        margin: 0 auto;
    }
}
.doctor-hero-section p {
    font-family: Fraunces;
}
.doctor-tab .top-tab p {
    font-weight: 600;
}
.doctor-tab .list-group-item {
    font-size: 0.8rem;
    padding: 17px 20px;
    border: none;
    background: #f9f9f9;
    color: #333;
    cursor: pointer;
    font-family: Fraunces;
    border-bottom: 1px dotted lightgray;
}
.list-group-item {
    padding: 14px 10px;
    border: none;
    font-size: 16px;
}

.doctor-tab .list-group-item.active {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--white);
    background-color: #ff4f8a;
}

.doctor-tab .list-group-item:hover {
    color: var(--green);
    text-shadow: 0 1px 4px rgba(91, 236, 163, 0.603);
}

.tabbox {
    max-height: 550px;
    overflow-y: auto;
    /* padding: 10px 15px; */
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    font-family: Fraunces;
}
.tabbox .list-group-item {
    border-bottom: 1px dotted lightgray !important;
}
.tabbox .list-group-item.active {
    background-color: #ff4f8a;
    color: var(--white);
}

/* Scrollbar */
.tabbox::-webkit-scrollbar {
    width: 6px;
}
.tabbox::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.tabbox::-webkit-scrollbar-thumb {
    background: #d3d3d3;
    border-radius: 10px;
}
.tabbox::-webkit-scrollbar-thumb:hover {
    background: #bcbcbc;
}

@media (max-width: 991px) {
    .tab-content {
        text-align: center !important;
    }

    .tabbox {
        max-height: 420px !important;
        border: 1px solid #eee;
        border-right: none;
    }
}

@media (max-width: 576px) {
    .tabbox {
        max-height: 350px;
        padding: 10px;
        border: 1px solid #eee;
    }

    .doctor-tab .list-group-item {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .list-group-item {
        font-size: 14px;
        padding: 12px 10px;
    }
    .tabfix {
        padding-right: 0px;
    }

    .tabbox::-webkit-scrollbar {
        width: 4px;
    }
}
@media (max-width: 576px) {
    /* Target ONLY the doctor tab section */
    section.tab .tabfix {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }

    section.tab .tabfix .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    section.tab .tabfix .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Make sure doctor cards stay inside width */
    section.tab .doctor-box,
    section.tab .doctor-box img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .tabbox {
        max-height: 450px;
        padding: 12px;
    }

    .doctor-tab .list-group-item {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .list-group-item {
        font-size: 15px;
    }

    .tabbox::-webkit-scrollbar {
        width: 5px;
    }
}

.mobile-filter-panel {
    position: fixed;
    top: 0;
    left: -90%;
    width: 85%;
    height: 100%;
    z-index: 9999;
    transition: left 0.35s ease-in-out;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-filter-panel.open {
    left: 0;
}

/* FILTER BUTTON */
.filter-btn {
    background-color: #000;
    color: var(--white);
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    width: auto;
    display: block;
    margin: 0 auto 15px auto;
    text-align: center;
}

/* PANEL TOP */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
}

.close-btn {
    background: none;
    border: none;
    font-size: 26px;
}

/* HIDE IN DESKTOP */
@media (min-width: 992px) {
    #openFilter,
    .mobile-filter-panel {
        display: none !important;
    }
}

.doctor-item-list {
    background: #fff;
    border-radius: 16px;
    padding: 10px 10px 45px;
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    /* border: 1px solid #f1f1f1; */
    display: flex;
    flex-direction: column;
    height: 26rem;
    border: 1px solid #efeeee;
}

@media(max-width:578px){
 .doctor-item-list {
    height: 29rem;
 }   
}
.doctor-item-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /* background: linear-gradient(90deg,#ff4f8b,#36b39a); */
}

.doctor-item-list:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); */
}

.doctor-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin: 0 auto 1rem;
    /* margin: 10px auto 16px; */
    display: block;
    /* padding: 6px; */
    /* box-shadow: 0 6px 18px rgba(180, 180, 180, 0.226); */
}
.doctor-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}
.doctor-content .qualification,
.doctor-content .doctor-speciality {
    font-size: 0.8rem;
}
.doctor-content .doctor-speciality {
    min-height: 2.7rem;
}
.doctor-btns {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    width: 100%;
    justify-content: center;
}
.themebtn-dr,
.green-btn-dr {
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 14px;
    display: inline-block;
    text-align: center;
}
@media (min-width: 1000px) and (max-width: 1399px) {
    .themebtn-dr,
    .green-btn-dr {
        font-size: 0.7rem;
        padding: 7px 10px;
    }
}
.themebtn-dr {
    background: #ff4f8b;
}
.green-btn-dr {
    background: #36b39a;
}

.themebtn-dr:hover {
    background-color: var(--pink);
    color: var(--white);
}
.green-btn-dr:hover {
    background-color: rgb(8, 117, 72);
    color: var(--white) !important;
}
@media (max-width: 568px) {
    .doctor-img {
        height: 280px;
    }
}

/* .doctor-bottom-gradient {
    position: absolute;
    bottom: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(
        181deg,
        rgba(255, 255, 255, 0) 0.91%,
        #000 67.72%
    );
    z-index: 2;
}

.doctor-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        181deg,
        rgba(245, 245, 245, 0) 8.91%,
        #000 97.72%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.doctor-text-overlay {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: 0.5s ease;
    z-index: 3;
}

.qualification,
.doctor-name,
.doctor-speciality {
    color: var(--white);
    margin: 0;
}

.qualification {
    background-color: var(--white);
    color: black;
    border-radius: 2rem;
    display: inline-block;
    min-width: 6rem;
    text-align: center;
    padding: 1px 10px;
    margin: 0 auto;
    font-size: 0.8rem;
}

.doctor-speciality {
    font-size: 0.8rem;
    align-items: center !important;
    justify-content: center !important;
} */

.doctor-buttons {
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.9s ease;
    z-index: 10; /* ALWAYS on top of gradient */
}

.btn-doc {
    text-decoration: none;
}

/* Hover Effects */
.doctor-box:hover .doctor-gradient {
    opacity: 1;
    z-index: -1;
}

.doctor-box:hover .doctor-text-overlay {
    transform: translateY(-40px);
}

.doctor-box:hover .doctor-buttons {
    max-height: 30px;
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .doctor-box:hover .doctor-gradient,
    .doctor-box:hover .doctor-buttons,
    .doctor-box:hover .doctor-text-overlay {
        transform: none;
        opacity: 1;
        max-height: none;
    }
}
@media (max-width: 568px) {
    .doctor-box {
        height: 30rem;
    }
}

/* MOBILE + TABLET — REMOVE ALL ANIMATIONS (≤ 991px) */
@media (max-width: 991px) {
    .doctor-text-overlay {
        position: absolute !important;
        bottom: 1.5rem !important;
        width: 100%;
        text-align: center;
        margin: 0 !important;
        z-index: 3;
    }

    .doctor-buttons {
        bottom: 0rem !important;
        /* Center WITHOUT transform */
        left: 0;
        right: 0;
        width: fit-content;
        margin: 0 auto;
        opacity: 1 !important;
        max-height: none !important;
        z-index: 4 !important;
    }
}
.doctor-hero2 {
    position: relative;
    background:
        linear-gradient(
            to bottom,
            rgba(54, 54, 54, 0) 70%,
            rgba(30, 30, 30, 0.932) 100%
        ),
        url("../images/herodector2.jpg") no-repeat center bottom;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    min-height: 500px;
    overflow: hidden;
}

.doctor-hero2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #97bcc575 72.13%,
        rgba(153, 153, 153, 0) 96.96%
    );
    filter: blur(29.899999618530273px);
    z-index: 0;
    pointer-events: none;
}

.doctor-hero2 .container,
.doctor-hero2 h2,
.doctor-hero2 p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.doctorbg {
    background: #fbeded;
}
.doctor-details h4 {
    color: var(--pink);
}
.doctor-heading {
    color: var(--green);
    font-family: Manrope;
}
.doctor-overview {
    position: relative;
    z-index: 1;
}
.doc-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.doc-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: Manrope;
}
.doc-details li p{
    margin-bottom: 1px;
}
.doc-details li img {
    width: 22px;
    height: auto;
    margin-top: 3px;
}
.edu-list {
    margin: 0;
    padding: 0 0 0 22px;
}

.edu-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
    list-style: none;
}

.edu-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #fbeded;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: 9px;
}
.hero-title-details {
    font-size: 48px;
    line-height: 1.3;
}
.hero-details {
    font-family: Fraunces;
}
.qualification-details {
    background-color: var(--white);
    color: black;
    border-radius: 2rem;
    display: inline-block;
    min-width: 8rem;
    text-align: center;
    padding: 4px 10px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.Appointment {
    position: relative;
    width: 100%;
    background: url("../images/appointment.png") center/cover no-repeat;
    height: 25rem;
}

.appointment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.Appointment .container {
    position: relative;
    z-index: 2;
}

.floating-appointment-box {
    background: #e6f4f2 !important;
    position: relative;
    top: 50%;
    border: 1rem solid var(--white) !important;
    transform: translateY(30%) !important;
}

.slot-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.appointment2 {
    height: 20rem !important;
}

.floating-appointment-box h6 {
    font-family: Fraunces !important;
}

.slot-label input {
    display: none;
}

.slot-label {
    padding: 0.7rem 0;
    background: var(--graylighter);
    cursor: pointer;
    font-family: Fraunces;
    transition: 0.2s;
}
.slot-label input:checked + span {
    background: var(--black);
    color: var(--white);
}

.slot-label.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slot-label input:checked ~ span,
.slot-label input:checked {
    background-color: var(--black);
}

.slot-label input:checked {
    display: none;
}

.slot-label input:checked + span {
    position: relative;
}

.slot-label.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.floating-appointment-box .tab-sections {
    position: relative;
}

.floating-appointment-box .tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
}

#date1:checked ~ .tab-sections .tab-1,
#date2:checked ~ .tab-sections .tab-2,
#date3:checked ~ .tab-sections .tab-3 {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.custom-select-box {
    border: none;
    background-color: rgb(var(--bs-light-green-bg-rgb)) !important;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    width: 200px;
    cursor: pointer;
    position: relative;
}

.custom-options {
    display: none;
    position: absolute;
    background: white;
    width: 100%;
    top: 100%;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Bootstrap arrow position */
.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
}

.option {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
}

.option:hover {
    background: #f5f5f5;
}

.custom-popup {
    position: relative;
    border-radius: 12px;
    padding: 50px 25px 35px;
    border: none;
    background: #fff;
    overflow: visible;
    z-index: 10;
}

.popup-check {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-check svg {
    width: 40px;
    height: 40px;
}

.popup-title {
    color: var(--pink);
    font-weight: 600;
    font-family: "Fraunces", serif;
    margin-bottom: 5px;
}

.popup-text {
    margin-top: 8px;
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .custom-popup {
        padding: 45px 20px 25px;
    }

    .popup-check {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .popup-check svg {
        width: 28px;
        height: 28px;
    }

    .popup-title {
        font-size: 18px;
    }

    .popup-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .custom-popup {
        padding: 40px 15px 20px;
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .floating-appointment-box {
        transform: translateY(5%);
    }
    .appointment2 {
        height: 20rem;
    }
    .custom-popup {
        padding: 3rem 1.25rem 2rem;
        border-radius: 0.65rem;
    }

    .popup-check {
        width: 3.8rem;
        height: 3.8rem;
        top: -2rem;
    }

    .popup-check svg {
        width: 1.8rem;
        height: 1.8rem;
    }

    .popup-title {
        font-size: 1.25rem;
    }

    .popup-text {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .floating-appointment-box {
        transform: translateY(5%);
    }
    .appointment2 {
        height: 40rem !important;
    }
    .custom-popup {
        padding: 2.5rem 1rem 1.75rem;
        border-radius: 0.6rem;
    }

    .popup-check {
        width: 3.2rem;
        height: 3.2rem;
        top: -1.6rem;
    }

    .popup-check svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .popup-title {
        font-size: 1.1rem;
    }

    .popup-text {
        font-size: 0.85rem;
    }
}
/* MAIN SECTION */
.Appointform {
    position: relative;
    overflow: hidden;
    font-family: Manrope;
}

/* DARK OVERLAY */

.Appointform::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    z-index: 1;
}

/* CONTENT MUST BE ABOVE OVERLAYS */
.Appointform .z-3,
.Appointform .form-card,
.Appointform h2,
.Appointform p {
    position: relative;
    z-index: 3 !important;
    font-family: Manrope;
}

/* FORM CARD GLASS EFFECT */
.Appointform .form-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1.3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
}
.Appointform .form-card .form-control {
    color: var(--grey-bg);
}
/* Label font fix */
.surgen h1 p .Appointform label {
    font-family: var(--fraunces-font);
}

/* MOBILE VIEW FIX */
@media (max-width: 576px) {
    .Appointform .form-card {
        padding: 1.8rem !important;
    }
    .Appointform img {
        height: 350px;
    }
}

/* OTP Modal Styling */
.otp-modal {
    border-radius: 0.625rem;
    border: 2px solid var(--green);
    box-shadow: 0 0.625rem 3.125rem rgba(0, 0, 0, 0.3);
}
/* OTP Input Boxes */
.otp-box {
    width: 2.8125rem;
    height: 3.125rem;
    font-size: 1.5rem;
    text-align: center;
    background-color: var(--grey2);
    border: 1px solid var(--grey-bg);
}
.otp-box:focus {
    border-color: var(--green);
    box-shadow: 0 0 0.5rem rgba(36, 167, 143, 0.5);
    outline: none;
}

.form-control,
.form-select,
.btn {
    position: relative;
    z-index: 10;
}

.surgen::before,
.surgen::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: linear-gradient(
        269deg,
        rgba(177, 182, 180, 0.24) 55.38%,
        #979ba7 66.45%
    );
    overflow-x: hidden;
}
.surgenhero2::before {
    background: rgba(0, 0, 0, 0.507);
}
.surgenhero2 .form-card {
    background: rgba(0, 0, 0, 0.52);
}
.surgenhero2 p {
    font-family: var(--fraunces-font) !important;
}

.surgencounter small,
.surgencounter h3,
.surgencounter em {
    font-family: "Instrument Sans", sans-serif !important;
}

/* .surgencounter.counter-area {
    counter-reset: chapter;
} */

/* Outline number styling like Figma */
/* .surgencounter.counter-area .counter::before {
    counter-increment: chapter;
    content: "0" counter(chapter);
    position: absolute;
    top: 10%;
    left: 100%; 
    transform: translate(-40%, -55%);
    font-size: 2.5rem; 
    font-weight: 700;
    font-family: var(--libre-font);

    color: transparent;
    -webkit-text-stroke: 1px var(--green);
    text-stroke: 1px var(--green);
    opacity: 0.25;

    pointer-events: none;
    white-space: nowrap;
} */

.counter {
    position: relative;
}

@media (max-width: 992px) {
    .surgencounter.counter-area .row .counter::before {
        font-size: 2.2rem;
        right: -2rem;
        top: 15%;
        opacity: 0.25;
    }
}

@media (max-width: 576px) {
    .surgencounter.counter-area .row .counter::before {
        font-size: 1.8rem;
        right: -1rem;
        top: 20%;
        transform: translateY(-50%);
        opacity: 0.2;
    }
}

.surgery-tabs {
    background-color: var(--white);
}
.surgery-tabs .nav-link {
    background: var(--white);
    border: 1px solid var(--grey-bg);
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    color: var(--black);
    justify-content: space-between;
    align-items: center;
}

.surgery-tabs .nav-link.active {
    background: var(--bg-white-14);
    color: var(--black);
}

/* Arrow style */
.surgery-tabs .nav-link .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.surgery-tabs .nav-link.active .arrow {
    transform: rotate(-45deg);
}
.Generalsur p {
    font-family: var(--fraunces-font);
}
.Generalsur .icons {
    height: 6rem;
}
.Generalsur .tab-content {
    height: 30rem !important;
    overflow-y: auto;
}
.Generalsur .surgery-tabs .nav-link.active {
    background: var(--light-pink);
    color: var(--black);
}
/* Scrollbar width */
.Generalsur .tab-content::-webkit-scrollbar {
    width: 2px;
}

/* Thumb */
.Generalsur .tab-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.surgenbox .icon {
    margin-top: 0 !important;
    border: solid 0.3rem var(--grey-bg);
}
.surgenbox {
    padding: 2rem;
}
.surgenbox h6 {
    font-family: var(--fraunces-font);
}

.surgenbox .icon::after {
    background: var(--grey);
}
.surgenbox .icon svg,
.surgenbox .icon img {
    width: 100%;
}
/* LEFT BOTTOM SVG (your existing one) */
.aboutimg::before,
.surgensvg::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='299' height='313' viewBox='0 0 299 313' fill='none'%3E%3Cpath d='M21.154 81.1024C72.9871 -48.6868 298.952 16.2396 298.952 16.2396C298.952 16.2396 287.691 205.224 214.233 266.982C146.915 323.578 73.8977 329.118 29.8143 271.271C-7.74761 221.982 -8.88608 156.322 21.154 81.1024Z' fill='%23FFDFEA'/%3E%3C/svg%3E")
        no-repeat center / cover;

    width: 15rem;
    height: 15rem;
    position: absolute;
    left: -3rem;
    bottom: -2rem;
    z-index: -1;
}

/* RIGHT BOTTOM SVG */
.aboutimg::after,
.surgensvg::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='327' height='275' viewBox='0 0 327 275' fill='none'%3E%3Cpath d='M111.589 266.439C-24.9272 236.517 2.19271 2.9791 2.19271 2.9791C2.19271 2.9791 190.476 -16.8012 263.411 45.5754C330.248 102.737 347.648 173.867 297.785 226.813C255.298 271.926 190.707 283.781 111.589 266.439Z' fill='%23FFDFEA' fill-opacity='0.3'/%3E%3C/svg%3E")
        no-repeat center / cover;

    width: 14rem;
    height: 14rem;
    position: absolute;
    right: -3rem;
    bottom: -2rem;
    z-index: -1;
}

/* RIGHT TOP SVG */
.surgensvg .bg-top::before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='306' height='291' viewBox='0 0 306 291' fill='none'%3E%3Cpath d='M239.019 29.0427C363.139 88.3733 276.499 290.245 276.499 290.245C276.499 290.245 89.512 262.882 35.2069 189.796C-14.5581 122.821 -12.9559 55.2011 48.9117 19.885C101.627 -10.2066 167.085 -5.34258 239.019 29.0427Z' fill='%23FFDFEA' fill-opacity='0.4'/%3E%3C/svg%3E")
        no-repeat center / cover;
    width: 13rem;
    height: 13rem;
    position: absolute;
    right: 0;
    top: -3rem;
    z-index: -1;
}
.filter-btn {
    background: var(--black);
    color: var(--white);
    border-radius: 50px;
    text-transform: capitalize;
}

@media (max-width: 992px) {
    /* Left Bottom SVG */
    .aboutimg::before,
    .surgensvg::before {
        width: 12rem;
        height: 12rem;
        left: -2rem;
        bottom: -1.5rem;
    }

    /* Right Bottom SVG */
    .aboutimg::after,
    .surgensvg::after {
        width: 11rem;
        height: 11rem;
        right: -2rem;
        bottom: -1.5rem;
    }

    /* Right Top SVG */
    .surgensvg .bg-top::before {
        width: 10rem;
        height: 10rem;
        top: -2rem;
        right: -1rem;
    }
}

@media (max-width: 576px) {
    /* Left Bottom SVG */
    .aboutimg::before,
    .surgensvg::before {
        width: 9rem;
        height: 9rem;
        left: -1rem;
        bottom: -1rem;
    }

    /* Right Bottom SVG */
    .aboutimg::after,
    .surgensvg::after {
        width: 8rem;
        height: 8rem;
        right: -3rem;
        bottom: -1rem;
        z-index: 0;
    }

    .aboutimg img,
    .surgensvg img {
        position: relative;
        z-index: 2;
    }
    /* Right Top SVG */
    .surgensvg .bg-top::before {
        width: 7.5rem;
        height: 7.5rem;
        top: -1.5rem;
        right: 0rem;
    }
    /* 🔥 HIDE right SVG ONLY inside delivery-content */
    .delivery-content .aboutimg::after,
    .delivery-content .surgensvg::after {
        content: none;
    }
}

@media (max-width: 992px) {
    .surgencounter .counter h3 {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    .surgencounter .counter small {
        font-size: 0.95rem !important;
    }

    .countermain {
        gap: 2rem !important;
        padding: 3rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .surgencounter .countermain {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem !important;
        padding: 2.5rem 0.5rem !important;
    }

    .surgencounter .counter h3 {
        font-size: 2rem !important;
        line-height: 1.1;
    }

    .surgencounter .counter small {
        font-size: 0.9rem !important;
        display: block;
    }
}

.contact::before,
.contact::after {
    content: "";
    height: 50%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.67) 0%,
        rgba(0, 0, 0, 0.67) 100%
    );
}
.contactmain p {
    font-family: "Manrope";
}
.contact-section .floating-appointment-box {
    background: transparent !important;
    border: 0 !important;
    position: relative;
    top: 50%;
    transform: translateY(15%) !important;
}
.appointment2.contactnew {
    height: 12rem !important;
}
.text-teal {
    color: var(--green);
}
.contact-left {
    background: #f6f6f6;
}
.contact-form-section {
    background: var(--white);
}
.contact-form-section .form-control {
    border-bottom: 1px solid #6d6868 !important;
    border-radius: 0;
}
@media (max-width: 576px) {
    .contact img {
        height: 19rem !important;
    }
    .contact::before,
    .contact::after {
        height: 19rem !important;
    }
    .floating-appointment-box,
    .contactbox {
        top: 50%;
        transform: translateY(1%) !important;
    }
    .appointment2.contactnew {
        height: 8rem !important;
    }
    .contact-icon {
        width: 3rem;
        height: 3rem;
        background: #e2f4ef;
        border-radius: 50%;
        font-size: 1rem;
        flex-shrink: 0;
    }
    .detailsnew p {
        font-family: var(--fraunces-font);
    }
}
/* blog */
.surgen.blog-hero::before,
.surgen.blog-hero::after {
    background: linear-gradient(90deg, #988f75 30%, rgba(76, 75, 68, 0) 70%);
}
.blogs-area .blog {
    border-radius: 2rem 2rem 0 0;
}
.blogs-area h6 { 
    font-family: var(--fraunces-font);
}
.blogs-area .list .blog-img {
    height: 17rem;
    overflow: hidden;
}
.blogs-area .list .blog-descrip{
         display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: calc(1.5em * 3);
 
}
@media (min-width: 579px) and (max-width: 991px) {
    .blogs-area .list .blog-descrip {
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3); /* 3 lines * line-height */
        line-height: 1.5;
    }
}

/* Mobile */
@media (max-width: 578px) {
    .blogs-area .list .blog-descrip {
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3); /* Changed from 4 to 3 to match clamp */
        line-height: 1.5;
        word-break: break-word;
    }
}

/* Large Desktop */
@media (min-width: 992px) and (max-width: 1200px) {
    .blogs-area .list .blog-descrip {
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3);
        line-height: 1.5;
    }
}

/* Extra Large Desktop */
@media (min-width: 1201px) {
    .blogs-area .list .blog-descrip {
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3);
        line-height: 1.5;
    }
}
.blogs-area .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs-area .realted .blog-img img {
    height: 15rem;
    width: 100%;
    object-fit: cover;
}
.blogpost {
    color: var(--pink);
}
.blogpost.share{
    color: var(--green);
}
.thick-icon {
    text-shadow:
        0 0 1px currentColor,
        0 0 1px currentColor;
}
.blog-dropdown {
    border: 1px solid var(--text-grey-2) !important;
}

.blog-dropdown:focus,
.blog-dropdown:focus-visible {
    border-color: var(--text-grey-2) !important;
}

.blog-dropdown.show,
.blog-dropdown:active {
    border-color: var(--text-grey-2) !important;
    box-shadow: none !important;
}
.blogs-area h6 {
    font-family: "Manrope";
}
/* blogdetails */
.blogsocial ul.sociallist li a {
    color: var(--pink);
    background-color: var(--light-pink);
}
.blog-thumb {
    width: 80px;
    /* height: 80px; */
    object-fit: cover;
}
.blog-details-new {
    background: linear-gradient(141deg, #ffe0ed 27.65%, var(--white) 147.45%);
}
.blog-card {
    position: relative;
}
.arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-btn:hover {
    transform: translateY(-3px);
}

.carrer::before,
.carrer::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: rgba(0, 0, 0, 0.575);
    overflow-x: hidden;
}
.career-input {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--text-grey-2);
    background: rgba(255, 255, 255, 0.15);
}
.career-input input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.carrer-area h6 {
    font-family: var(--fraunces-font);
}
.carrer-img {
    height: 17rem;
}
.career-arrow .slider-text .icon-box {
    height: 2rem !important;
}
.detail-tag {
    background: var(--light-grey-bg);
    color: var(--pink);
}
.carrer-icon i {
    color: var(--pink);
}

.error-code {
    font-size: 8rem;
    font-family: "Manrope";
}
.privacy::before,
.privacy::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: var(--green);
    opacity: 0.9;
    overflow-x: hidden;
}

.sidebar-card {
    padding: 24px;
}
.sidebar-card a:hover {
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-underline-offset: 0.5rem;
    text-decoration-thickness: 2px;
}
.sidebar-card a:active {
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-underline-offset: 0.5rem;
    text-decoration-thickness: 2px;
}

.privacy-content h2 {
    font-family: "Manrope";
}
.Appointform .delivery .form-card {
    background: var(--grey-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.3rem;
    padding: 2rem;
}
.Appointform .delivery .form-card label {
    font-family: var(--fraunces-font);
}
/* .surgencounter .delivery-counter .counter::before {
    counter-increment: chapter;
    content: "0" counter(chapter);
    position: absolute;
    top: 10%;
    left: 100%;
    transform: translate(-40%, -55%);
    color: transparent;
    -webkit-text-stroke: 1px var(--pink);
    text-stroke: 1px var(--pink);
    opacity: 0.25;
    pointer-events: none;
    white-space: nowrap;
} */
.Bookings p {
    font-family: var(--fraunces-font);
}
.surgen.delivery-hero::before,
.surgen.delivery-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        269deg,
        rgba(177, 182, 180, 0) 0.38%,
        #faebbd 98.45%
    );
}
/* .choice-cards {
    width: 200px;
} */
@media (min-width: 1200px) {
    .choice-cards {
        width: 200px;
        max-width: none;
    }
}
@media (min-width: 1200px) and (max-width: 1600px) {
    .choice-cards {
        width: 200px;
        max-width: none;
    }
}
/* Tablet (3 cards per row) */
@media (min-width: 771px) and (max-width: 990px) {
    .choice-cards {
        width: 670px;
        max-width: none;
    }
}
@media (min-width: 540px) and (max-width: 770px) {
    .choice-cards {
        width: 520px;
        max-width: none;
    }
}
@media (min-width: 460px) and (max-width: 556px) {
    .choice-cards {
        width: 390px;
        max-width: none;
    }
}
/* Mobile (2 cards per row) */
/* @media (max-width: 576px) {
    .choice-cards {
        width: 420px;
        max-width: none;
       
    }
} */
.crousal-delevry-btn {
    background: linear-gradient(
        180deg,
        #ed2e7d 50%,
        rgba(255, 255, 255, 0) 160.71%
    );
    font-family: var(--fraunces-font);
}
.new-crousal p,
.new-crousal h6 {
    font-family: var(--fraunces-font);
}
/* ---------- ONLY FOR THIS CAROUSEL ---------- */

#testimonials-carousel-new .owl-nav {
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

#testimonials-carousel-new .owl-nav button {
    width: 40px;
    height: 40px;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

#testimonials-carousel-new .line-track {
    width: 80px;
    height: 3px;
    background: var(--grey);
    border-radius: 10px;
    position: relative;
}

#testimonials-carousel-new .moving-line {
    width: 40px;
    height: 3px;
    background: var(--black);
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.2s ease;
}
/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    #testimonials-carousel-new .owl-nav {
        gap: 0.5rem;
    }

    #testimonials-carousel-new .owl-nav button {
        width: 35px;
        height: 35px;
    }

    #testimonials-carousel-new .line-track {
        width: 60px;
        height: 3px;
    }

    #testimonials-carousel-new .moving-line {
        width: 30px;
        height: 3px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    #testimonials-carousel-new .owl-nav {
        display: none;
    }

    #testimonials-carousel-new .owl-nav button {
        display: none;
    }

    #testimonials-carousel-new .line-track {
        display: none;
    }

    #testimonials-carousel-new .moving-line {
        display: none;
    }
}
.new-crousal {
    margin-left: 1rem;
}
.crousal-img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .crousal-img {
        width: 40%;
        height: auto;
    }
}

.carrer-tab .nav .nav-link.themebtn {
    background: transparent;
    color: inherit;
    padding: 0.7rem 1.5rem;
    border-radius: var(--bs-border-radius-pill);
    transition: 0.3s ease;
}

.carrer-tab .nav .nav-link.active.themebtn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.7rem 1.5rem;
    background: var(--pink);
    color: var(--white);
    transition: 0.5s ease-in-out;
    z-index: 1;
    border-radius: var(--bs-border-radius-pill);
}
/* @media (max-width: 576px) {
    .carrer-tab .nav .nav-link.active.themebtn {
        padding: 0.3rem 1rem !important;
    }
} */
.page-link {
    font-weight: 500;
}

.page-item.active .page-link {
    background-color: #6c757d;
}

.yogacirclebox {
    background: url(../images/yogacircle.svg) no-repeat center right / contain;
    height: 100%;
    width: 100%;
    text-align: center;
}
.icon2 {
    width: 4rem;
    height: 4rem;
}

.gradientbg {
    background: linear-gradient(
        0deg,
        rgb(0 0 0 / 76%) 8%,
        rgba(102, 102, 102, 0) 50%
    );
}
.imgtestimonials .owl-item.center .imgtestimonialsbox {
    transform: scale(1);
    transition: all 0.4s ease-out;
    margin: 0;
}
.imgtestimonials .owl-item .imgtestimonialsbox {
    /* -webkit-transform: scale3d(.93, 0.80, 1); */
    /* transform: scale3d(.93, 0.80, 1); */
    transform: scale(0.8);
    margin: 0 -6%;
    transition: all 0.4s ease-out;
}
.imgtestimonialsbox {
    height: 15rem;
}

.testimonial-area .imgtestimonials .owl-nav {
    left: 35%;
    bottom: -1rem;
    transform: translate(40%, 100%);
}
.imgtestimonials #testimonials-carousel-new .line-track {
    width: 100px;
}
.testimonial-area .imgtestimonials .owl-nav button {
    margin-right: 0;
}
.awardabox {
    height: 25rem;
}
.awardstabs,
.eventstabs {
    font-family: "Fraunces", serif;
    font-size: 20px;
    color: #535353;
}
.awardstabs button,
.eventstabs button {
    margin: 0 0.5rem;
}
.awardstabs .active {
    color: var(--black);
    font-size: 24px;
    border-bottom: solid 1px var(--pink);
    line-height: 28px;
}
.eventstabs button {
    border: solid 1px var(--bs-gray-200);
    padding: 0.8rem 1.5rem;
    border-radius: var(--bs-border-radius-pill);
    color: var(--black);
}
.eventstabs .active {
    color: var(--white);
    border-color: solid 1px var(--pink);
    background: var(--pink);
}
.shadow1 {
    box-shadow: 0 4px 23.6px 0 rgba(0, 0, 0, 0.03);
}

.eventlistbanner {
    background: linear-gradient(
        94deg,
        rgba(0, 0, 0, 0.8) 0.35%,
        rgba(237, 46, 125, 0.8) 131.89%
    );
    backdrop-filter: blur(3.950000047683716px);
}
.rounded-32 {
    border-radius: 32px;
}
.eventdetail-area .eventlistbanner {
    width: 55%;
    background: linear-gradient(
        94deg,
        rgba(0, 0, 0) 0.35%,
        rgba(237, 46, 125) 131.89%
    );
}

@media (max-width: 568px) {
    .event-hero img {
        height: 400px;
        width: 100% !important;
    }

    .eventlistbanner {
        max-width: 85%;
        backdrop-filter: blur(6px);
    }
    .eventlistbanner h1 {
        font-size: 1.2rem;
    }
    .awardstabs,
    .eventstabs {
        font-size: 0.8rem !important;
    }
}
@media (max-width: 576px) {
    .event-area .eventstabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        margin-bottom: 10px !important;
        padding-left: 10px;
    }
    .eventdetail-area img {
        width: 100% !important;
        height: 260px;
        object-fit: cover;
    }
    .eventstabs button {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 10px 15px;
    }
    .eventdetail-area .position-absolute {
        position: absolute !important;
        top: 10% !important;
        right: 10% !important;
        height: 100%;
    }

    .eventdetail-area .eventlistbanner {
        padding: 20px !important;
        border-radius: 20px;
        width: 100%;
        height: auto;
        align-self: flex-start;
    }
    .eventdetail-area .eventlistbanner h1 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    .blog-details h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 976px) {
    .event-area .eventstabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        margin-bottom: 10px !important;
        padding-left: 10px;
    }
    .eventdetail-area img {
        width: 100% !important;
        height: 260px;
        object-fit: cover;
    }
    .eventstabs button {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 10px 15px;
    }
    .eventdetail-area .position-absolute {
        position: absolute !important;
        top: 10% !important;
        /* right: 10% !important; */
        height: 100%;
    }

    .eventdetail-area .eventlistbanner {
        padding: 20px !important;
        border-radius: 20px;
        width: 100%;
        height: auto;
        align-self: flex-start;
    }
    .eventdetail-area .eventlistbanner h1 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    .blog-details h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1480px) {
    .imgtestimonialsbox {
        height: 13rem;
    }
}
.specialties-img {
    box-shadow: 0 0 10px rgba(165, 165, 165, 0.98);
    /* border: 4px solid var(--graylighter); */
    transition:
        background 0.3s ease,
        border 0.3s ease,
        border-radius 0.3s ease,
        box-shadow 0.3s ease,
        transform var(--e-transform-transition-duration, 0.4s) ease;
}
a.card:hover .specialties-img {
    transform: scale(1.08);
}
.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    background-color: var(--pink);
}

.package-img {
    height: 200px;
    object-fit: cover;
}
.package-body {
    min-height: 150px;
}
.package-body h6 {
    font-family: var(--fraunces-font);
}
.ribbon-badge {
    display: inline-block;
    background: #2fae97;
    color: #fff;
    padding: 9px 50px 9px 27px;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}
.ribbon-badge {
    transform: rotate(-8deg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.grid-full {
    grid-column: 1 / -1;
}

.grid-item img {
    width: 100%;
    display: block;
    height: 18.75rem;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
}
.yoga .icon img {
    padding: 0.8rem;
    border-radius: 50%;
    outline: 1px solid var(--pink);
    outline-offset: 2px;
}
@media (max-width: 568px) {
    .yoga .icon img {
        padding: 0.7rem;
        margin-left: 7px;
    }
}
@media (max-width: 568px) {
    .yoga-hero .display-3 {
        font-size: 2rem;
    }
}

.yoga-card {
    border: 1px solid #ed2e7d1f;
}
.yoga-section .form-label {
    font-family: var(--fraunces-font);
}
.yoga-section-top {
    background: linear-gradient(
        90deg,
        var(--pink) 0%,
        var(--light-pink) 130.68%
    );
}
.surgen.yoga-hero::before,
.surgen.yoga-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        269deg,
        rgba(177, 182, 180, 0) 55.38%,
        #f1edee 66.45%
    );
    filter: blur(18px);
}
.surgen.tpa-hero::before,
.surgen.tpa-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        269deg,
        rgba(177, 182, 180, 0) 55.38%,
        #241f36 76.45%
    );
}
/* Left decoration */
.benefits::before {
    content: "";
    position: absolute;
    mix-blend-mode: color-burn;
    opacity: 0.6;
    z-index: -1;
}
.benefits .surgenbox .icon::after {
    background-color: var(--white) !important;
}

.benefits .featurebox {
    background-color: #f5f2f2 !important;
    height: 200px;
}
.benefits .featurebox .icon {
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.benefits .icon {
    width: 5rem;
    height: 5rem;
}
.benefits .surgenbox h6 {
    font-family: "Manrope";
}

@media (min-width: 582px) and (max-width: 982px) {
    .benefits-feature {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem !important;
    }
    .benefits .featurebox.choice-cards {
        width: 280px;
        max-width: none;
    }
}
.healthcare {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 75%,
        #ffdeec70 100%
    );
}

@media (max-width: 568px) {
    .thirdparty h1 {
        font-size: 1.5rem !important;
    }
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8rem;
    row-gap: 6rem;
}

.logo-card {
    border: 1px solid #f3cfd4;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
@media (max-width: 968px) {
    .logo-grid {
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem !important;
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem !important;
    }
}
.tpa-list-card {
    padding: 24px;
    height: 463px;
    overflow: hidden;
    border: 1px solid #ed2e7d1f;
}

.tpa-list {
    height: 100%;
    overflow-y: auto;
}
.tpa-list::-webkit-scrollbar {
    width: 6px;
}

.tpa-list::-webkit-scrollbar-thumb {
    background-color: var(--bs-gray-700);
    border-radius: 10px;
}
.tpa-list li {
    padding: 0.6rem 0;
}

.tpa-list li:last-child {
    border-bottom: none;
}

.surgen.bookscan::before,
.surgen.bookscan::after {
    background: linear-gradient(
        91deg,
        #dbe5e9 47.88%,
        #646e6b00 75.09%
    ) !important;
}
.bookscan p {
    font-family: " Fraunces";
}

/* Button must be relative */
.bookscan-cont .dropdown-toggle-custom {
    position: relative;
}

/* Arrow base */
.bookscan-cont .dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
    transition: transform 0.25s ease;
}
.bookscan-cont button {
    font-family: var(--fraunces-font) !important;
}
/* Arrow when dropdown OPEN */
.bookscan-cont button[aria-expanded="true"] .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.contact.delevirydetails::before,
.contact.delevirydetails::after {
    height: 100%;
    width: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.425) 0%,
        rgba(0, 0, 0, 0.349) 100%
    );
}
.our-story.delevirydetails::before {
    top: 0;
    left: -3rem;
    width: 10rem;
    height: 10rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='98' height='192' viewBox='0 0 98 192' fill='none'%3E%3Cpath d='M53.4526 19.1872C135.453 58.3842 78.2138 191.751 78.2138 191.751C78.2138 191.751 -45.3201 173.674 -81.197 125.39C-114.074 81.142 -113.016 36.4689 -72.1428 13.1371C-37.3164 -6.74302 5.92906 -3.52957 53.4526 19.1872Z' fill='%23FFDFEA' fill-opacity='0.4'/%3E%3C/svg%3E");
}

/* Right Blob */
.our-story.delevirydetails::after {
    top: 12rem;
    right: -2rem;
    width: 10rem;
    height: 10rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='162' height='192' viewBox='0 0 162 192' fill='none'%3E%3Cpath d='M157.909 19.1872C239.909 58.3842 182.67 191.751 182.67 191.751C182.67 191.751 59.1365 173.674 23.2595 125.39C-9.61792 81.142 -8.55938 36.4689 32.3137 13.1371C67.1401 -6.74302 110.386 -3.52957 157.909 19.1872Z' fill='%23FFDFEA' fill-opacity='0.4'/%3E%3C/svg%3E");
}
.benefits .deliverydetails .surgenbox .icon::after {
    background-color: transparent !important;
}
.benefits .deliverydetails .featurebox {
    background-color: #f2e6e6 !important;
    height: 190px;
}
.benefits .deliverydetails .featurebox:hover .icon {
    color: var(--light-pink);
    box-shadow: none;
}
.deliverydetails .featurebox h6 {
    font-family: "Fraunces;";
}
.benefits .deliverydetails .icon {
    width: 6rem;
    height: 6rem;
}
.benefits .deliverydetails .surgenbox .icon::after {
    background-color: transparent !important;
}
.surgenbox .deliverydetails .icon::after {
    background: transparent !important;
}
.deliverydetails .featurebox .icon::after {
    background: transparent !important;
}
.surgenbox .deliverydetails .icon {
    border: none !important;
}
.eventstabs.deliverydetailstabs button {
    padding: 0.7rem 1.5rem;
    border-radius: var(--bs-border-radius-pill);
    background-color: var(--grey-bg) !important;
    border: none;
    color: gray;
    font-size: 1rem;
}
.eventstabs.deliverydetailstabs button.active,
.eventstabs.deliverydetailstabs button.active:focus,
.eventstabs.deliverydetailstabs button.active:hover {
    color: var(--white) !important;
    background-color: var(--pink) !important;
    border-color: var(--pink) !important;
}

@media (max-width: 766px) {
    /* Fix parent container */
    .ailments .eventstabs {
        flex-direction: row !important; /* stop column */
        justify-content: center;
    }

    /* Fix pink box */
    .ailments .tabspecial {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        margin: 0 auto;
        padding: 6px 10px;
        border-radius: 50px;
    }

    /* Fix buttons */
    .ailments .tabspecial button {
        font-size: 13px;
        padding: 6px 14px;
        text-align: center;
        white-space: nowrap;
    }
}
.deleviryaccord {
    .accordion {
        .border-pink {
            border-color: #f2b6c6 !important;
        }

        .accordion-item {
            overflow: hidden;
        }

        .accordion-button {
            box-shadow: none;
            border-radius: inherit;

            &:not(.collapsed) {
                background-color: #fff;
            }
        }
    }
}

/* responsive heights */
@media (max-width: 576px) {
    #details-carousel .specialt-img {
        height: 180px !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    #details-carousel .specialt-img {
        height: 100px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1972px) {
    #details-carousel .specialt-img {
        height: 154px !important;
    }
}

.eventstabs.deliverydetailstabs .tabspecial button {
    padding: 0.7rem 1.5rem;
    border-radius: var(--bs-border-radius-pill);
    background-color: transparent !important;
    border: none;
    color: gray;
    font-size: 1rem;
}
.eventstabs.deliverydetailstabs .tabspecial button.active {
    background: var(--pink) !important;
    color: var(--white);
}

.surgery-tabs.specialtiestabnew .nav-link.active {
    background: var(--pink);
    color: var(--white);
}

.surgery-tabs.specialtiestabnew .nav-link.active .arrow {
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}
.specialtiestabnew {
    height: 320px;
    overflow-y: auto;
}
.specialtiestabnew::-webkit-scrollbar {
    width: 5px;
}

.specialtiestabnew::-webkit-scrollbar-thumb {
    background-color: var(--pink);
    border-radius: 10px;
    margin: 3px;
}
.blog-details .blog-part img {
    width: 100%;
}
.blog-details .leftimg img {
    width: 100%;
}
.blog-details .leftimg h2,
.blog-details .leftimg h3,
.blog-details .leftimg h5,
.blog-details .leftimg h6
 {
    font-size: 1.6rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
    display: block;
}
.blog-details .leftimg ul 
 {
   padding-left: 17px;
   margin-bottom: 5px;
}
.blog-details .leftimg  li
 {
   padding-left: 2px;
   margin-bottom: 5px;
}
.doc-details li {
    position: relative;
    padding-left: 2.3rem;
}

.doc-details li::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 0.2rem;

    width: 22px;
    height: 22px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M10.9989 21.9983C17.0741 21.9983 21.9989 17.0735 21.9989 10.9983C21.9989 4.92308 17.0741 -0.00170898 10.9989 -0.00170898C4.92369 -0.00170898 -0.00109863 4.92308 -0.00109863 10.9983C-0.00109863 17.0735 4.92369 21.9983 10.9989 21.9983Z' fill='%231AAB91' fill-opacity='0.22'/%3E%3Cpath d='M5.6957 10.3546L10.0031 11.7355L11.643 16.3015L16.1122 6.40008L5.6957 10.3546Z' fill='%232E3ECD'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    border-radius: 50%;
}

.img-grid .img-box,
.img-grid .half-img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.img-grid .half-img {
    flex: 1;
}
.img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#details-carousel .item {
    height: 100%;
}
.img-grid .img-box {
    height: 42.9375rem !important;
    margin-bottom: 0 !important;
}
.img-grid .half-img {
    height: 20.9375rem !important;
}
@media (max-width: 576px) {
    .img-grid .img-box {
        height: 19.5rem !important;
        margin-bottom: 0 !important;
    }
}
@media (min-width: 697px) and (max-width: 996px) {
    .img-grid .img-box {
        height: 22.75rem !important;
    }
}
@media (min-width: 998px) and (max-width: 1200px) {
    .img-grid .img-box {
        height: 28.5rem !important;
    }
}

@media (min-width: 1200px) and (max-width: 1472px) {
    .img-grid .img-box {
        height: 37.25rem !important;
    }
}

@media (max-width: 576px) {
    .img-grid .half-img {
        height: 11.25rem !important;
        margin-top: -56px !important;
    }
}
@media (min-width: 997px) and (max-width: 1200px) {
    .img-grid .half-img {
        height: 14.75rem !important;
    }
}
@media (min-width: 697px) and (max-width: 996px) {
    .img-grid .half-img {
        height: 10.75rem !important;
    }
}
@media (min-width: 1200px) and (max-width: 1472px) {
    .img-grid .half-img {
        height: 18.5rem !important;
    }
}

.home-dropdown .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    min-width: 260px;
    padding: 0;
}
.home-dropdown .dropdown-menu li {
    position: relative;
    padding: 8px 0;
}

/* Create small centered dotted line */
.home-dropdown .dropdown-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* control border length here */
    border-bottom: 1px dotted #ccc; /* thin dotted line */
}

.home-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.home-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 10px;
}
.specities-form .form-label {
    font-family: var(--fraunces-font);
    font-weight: 500;
}
/* dropdown spacing */
.filter-dropdown .dropdown-menu {
    padding: 6px;
    min-width: 260px;
    overflow-x: hidden;
    position: absolute !important;
    inset: auto 0 0 auto !important;
    transform: translateY(100%) !important;
}
.filter-dropdown {
    position: relative;
}
.filter-dropdown button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-dropdown .selected-text {
    flex: 1 !important;
    min-width: 0; /* 🔥 THIS IS THE MAGIC FIX */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* search input inside any dropdown */
.filter-dropdown .dropdown-menu input.form-control {
    width: 100%;
    margin: 0;
    left: auto !important;
    right: 0 !important;
    border: 2px solid var(--pink);
    border-radius: 6px;
    padding: 6px 10px;
    outline: none;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-dropdown .dropdown-menu.menu1 {
    padding: 6px;
    min-width: 260px;
    overflow-x: hidden;
    left: 0 !important;
    right: 0 !important;
    /* transform: none !important; */
    /* position: relative !important;  */
    position: absolute !important;
    /* inset: auto 0 0 auto !important;
    transform: translateY(100%) !important; */
}
/* focus effect */
.filter-dropdown .dropdown-menu input.form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.15rem rgba(255, 0, 128, 0.15);
}

@media (max-width: 578px) {
    .blogs-area .filter-dropdown .dropdown-menu {
        padding: 6px;
        min-width: 260px;
        overflow-x: hidden;
        left: 0 !important;
        right: 0 !important;
        /* transform: none !important; */
        /* position: relative !important;  */
        position: absolute !important;
        /* inset: auto 0 0 auto !important;
    transform: translateY(100%) !important; */
    }
}
@media (max-width: 390px) {
    .filter-dropdown .selected-text {
        font-size: 0.8rem !important;
    }
}
.subscribebox input {
    font-size: 16px !important;
    -webkit-appearance: none;
    box-shadow: none;
}
@media (max-width: 991px) {
    .navbar-nav li a.dropdown-toggle::after {
        width: 5px;
        height: 5px;
        top: 40%;
        right: 2% !important;
    }
}

/* @media (max-width: 991px) {
    #doctorsMegaMenu {
        display: flex !important;
        align-items: center;
        width: 100%;
    }

    #doctorsMegaMenu::after {
        margin-right: auto !important;
    }
} */

/* @media (min-width: 1008px) and (max-width: 1389px) {
.home-dropdown .selected-text{
font-size: 0.9rem !important;
}
}
.dropdown-toggle::after {
    transition: 0.3s ease;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg);
} */

.page-link {
    border: none;
    margin: 0 5px;
    color: var(--green); /* green */
}

.page-item.active .page-link {
    background-color: #ff4d79; /* pink */
    color: #fff;
}

.page-link:hover {
    background-color: var(--green);
    color: #fff;
}
.copy-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}
.award-card {
    height: 18.8rem !important;
}
.award-card:hover {
    transform: translate(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.why-choose p {
    font-size: 14px;
    line-height: 22px;
    text-align: justify !important;
}
/* @media (max-width: 1580px) {
    .award-height {
        height: 19rem !important;
    }
} */

/* .award-height {
    height: 25rem !important;
} */
.award-height h6 {
    font-size: 14px;
    line-height: 1.4;

    min-height: 40px;
}
.award-height .border-new {
    border: 1px solid #efeeee;
}
.our-story .text-content p {
    text-align: justify;
}
.featurebox.feature-about {
    height: 11.4rem !important;
}

.maternity-section {
    background: #fff7f9;
    padding: 60px 0;
}

.maternity-section .content-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.maternity-section .content-box::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0px;
    height: 100%;
    width: 4px;
    background: #e91e63;
    border-radius: 10px;
}

.maternity-section .content-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.maternity-section .info-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fde3ea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.maternity-section .info-box h5 {
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 15px;
}

.maternity-section .info-box ul {
    padding-left: 0;
    list-style: none;
}

.maternity-section .info-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
}

.maternity-section .info-box li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e91e63;
    font-size: 14px;
}
.sticky-social {
  position: fixed;
  right: 50px;
  bottom: 40px;
  z-index: 9999;
}

.sticky-social ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-social .social-icon {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  /* background-color: var(--green); */
  background-color: green;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shake 2s infinite;
  cursor: pointer;
}

.sticky-social a i {
  color: var(--white);
  font-size: 35px;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-12deg);
  }
  20% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 998px) {
  .sticky-social {
   display: none;
  }


}
.founder .founder-img{
 height: 22rem;
}
.founder .founder-content p{
    text-align: justify;
}
.founder .founder-img img{
object-fit: cover;
}
.fotter-bottom-img{
    height: 4.7rem;
    object-fit: cover;
}
@media(max-width:578px) {
 .fotter-bottom-img{
    height: 4rem;
 }  
}
#myFacilitySwiper {
    position: relative;
}

#myFacilitySwiper .owl-nav {
    display: block !important;
}

#myFacilitySwiper .owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    border-radius: var(--bs-border-radius-pill);
    color: var(--black);
    border: solid 1px var(--light-pink);
    font-size: 1.2rem;
}

#myFacilitySwiper .owl-nav .owl-prev {
    left: 0;
}

#myFacilitySwiper .owl-nav .owl-next {
    right: 0;
}
.carrer-new-img{
        height: 6.7rem;
    object-fit: cover;
}
.blog-enquire{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}
.blog-enquire .bg-white{
    border: 1px solid #f3d7e3;
}
.blog-enquire .text-pink{
    color: var(--pink) !important;
}

.blog-enquire .form-control{
    border: 1px solid #e8dce2;
    padding: 10px 20px;
    font-size: 15px;
    transition: 0.3s;
}

.blog-enquire textarea.form-control{
    border-radius: 20px !important;
}

.blog-enquire .form-control:focus{
    border-color: var(--pink) !important;
    box-shadow: 0 0 0 4px rgba(233,30,99,0.12) !important;
}

.blog-enquire .form-label{
    margin-top: 10px;
    font-size: 15px;
}
.blog-card .blog-title :hover{
    color: var(--pink) !important;
}
.enquire-form{
    border: 1px solid #f1d9e4;
}
.blog-card .blog-details-thumb{
    height: 14rem;
}
.enquire-form .form-control{
    padding: 8px 15px;
    border-color: #ececec;
    font-size: 12px;
    box-shadow: none !important;
}

.enquire-form .form-control:focus{
    border-color: var(--pink);
}

.text-pink{
    color: var(--pink);
}


.app-box {
    border-radius: 30px;
    padding: 5px;
    overflow: hidden;
    position: relative;
}


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

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: 0.4s ease;
}

.store-btn i {
    font-size: 30px;
}

.store-btn small {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.store-btn h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.android-btn {
    background: var(--black);
    color: #fff;
}

.ios-btn {
    background: var(--black);
    color: #fff;
}

.store-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.mobile-mockup img {
    max-height: 500px;
    object-fit: contain;
}

@media(max-width:591px){
    .app-content h2{
        font-size:36px;
    }

    .download-btns{
    display: flex !important;
    gap: 10px;
        flex-wrap: nowrap;
    }

    .store-btn{
        width:100%;
        justify-content:center;
    }
}
#teams-carousel {
    position: relative;
}
#teams-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#teams-carousel .owl-nav button {
     position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--white);
    border-radius: var(--bs-border-radius-pill);
    color: var(--black);
    border: solid 1px var(--light-pink);
    font-size: 1.2rem;
}
#teams-carousel .owl-nav .owl-prev {
    left: 0;
}

#teams-carousel .owl-nav .owl-next {
    right: 0;
}

.mobile-bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 4px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    z-index: 9999;
}
.mobile-bottom-nav .nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-size: 10px;
    font-weight: 700;
}
.mobile-bottom-nav .nav-item i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background-color: var(--light-pink);
    border-radius: 50%;
    color: var(--pink);
    margin-bottom: 9px;
    margin-top: -25px;
    box-shadow: 0 4px 12px rgba(232, 62, 141, 0.384);
}

.mobile-bottom-nav .nav-item:hover{
    color: var(--pink);
}

.mobile-bottom-nav .nav-item:hover i{
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(232,62,140,.45);
}

.mobile-bottom-nav .nav-item.active{
    color: var(--pink);
}

.mobile-bottom-nav .nav-item.active i{
    background: var(--pink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(232,62,140,.45);
}

.mobile-bottom-nav .nav-item:active i{
    transform: scale(.95);
}
@media (min-width: 992px){
    .mobile-bottom-nav{
        display:none;
    }
}