@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Marcellus", serif;
    font-family: "Jost", sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:root {
    --main-gradient: #F5C3C2;
    --text-color: #CC5990;
    --second-color: #fdfaf5;
    --brown-color: #65241e;
    --orange-color: #de6f22;
    --glass: rgba(255, 255, 255, 0.70);
    --muted: #6b6b6b;
    --radius: 14px;
    --container: 1100px;
    --red: #EC2028;
    --main-color: var(var--red);
    --darkcolor: #0b0907;
    --light-color: #fff;
    --btn-bg: var(--red);
    --color-light: var(--light-color);

    --shadow: 0 8px 30px rgba(13, 12, 11, 0.12);
}

body {
    background: linear-gradient(180deg, #ffefe6 0%, #ffe7d4 100%);
}

/* ---------------------------------------------------------------------------------------------------------------- */


.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


.fullwidth {
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

/* ---------------------------------------------------------------------------------------------------------------- */


h5.heading {
    width: 100%;
    font-size: 3rem;
    font-family: "Marcellus", serif;
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 5px;
}

h5.heading::before,
h5.heading::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    content: ' ';
}

h5.heading::before {
    width: 10px;
    background: #eb9b93;
}

h5.heading::after {
    left: 15px;
    width: 50px;
    background: var(--orange-color);
}

.paragraph {
    width: 100%;
    height: auto;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.paragraph p {
    font-size: 1.6rem;
}

/* ---------------------------------------------------------------------------------------------------------------- */

.cta-container {
    text-align: center;
    width: auto;
    height: auto;
    margin: 1.5rem 0 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--btn-bg);
    color: var(--light-color);
    border: none;
    border-bottom: 3px solid var(--light-color);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 192, 133, 0.18);
    font-size: 14px;
}

/* ---------------------------------------------------------------------------------------------------------------- */

.img {
    max-width: 991px;
    width: 100%;
    height: auto;
    margin: auto;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------------------------------------------------------------- */



header {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ffecec;
    background: var(--light-color);
}

.main-menu {
    width: 100%;
    background-color: transparent;
}

nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

img.logo {
    width: 150px;
    height: auto;
}

.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.cta-box {
    display: inline-block;
}

.cta-box .popupclick {
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--light-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-bottom: 3px solid var(--light-color);
}

.cta-box .popupclick:hover {
    color: var(--btn-bg);
    background-color: var(--light-color);
    transform: translateY(-2px);
}


/* banner section  */

.bannerimg {
    width: 100%;
    height: auto;
}

.mainbanner {
    width: 100%;
    height: auto;
    line-height: 0;
    display: block;
}


/* ---------------------------------------------------------------------------------------------------------------- */

.main-form-container {
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 30px 0px;
    padding-bottom: 0px;
}

.flex-box {
    flex: 1;
}

.form-box {
    padding: 24px;
    border-radius: 15px;
    background: var(--second-color);
    box-shadow: var(--shadow);
}

.main-form-container h5.heading {
    margin-bottom: 0rem;
    font-size: 3rem;
    text-align: left;
    color: black;
}

.main-form-container h5.heading::before {
    left: calc(0% - 0%);
    transform: translateX(0%);
}

.error {
    color: red;
    font-size: 14px;
}

.success {
    color: green;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    z-index: 99999;
}

.formcontainer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.formcontainer h5.heading {
    font-size: 2.5rem;
}

.formcontainer .form-group {
    flex: 1;
    flex-basis: calc(25% - 1rem);
    position: relative;
}

.formcontainer .form-group input,
.formcontainer .form-group .form-select {
    width: 100%;
    height: 40px;
    outline: none;
    padding-left: 1rem;
    font-size: 1.5rem;
    background: rgba(167, 163, 159, 0.12);
    margin-bottom: 0.5rem;
    border: 1px solid var(--brown-color);
    border-radius: 5px;
}

.formcontainer .form-group input:focus {
    border: 1px solid var(--orange-color);
    background: rgba(255, 214, 173, 0.12);
}

.formcontainer .form-group button {
    width: 100%;
    height: 40px;
    background-color: var(--btn-bg);
    color: var(--light-color);
    border-bottom: 3px solid var(--light-color);
    border: none;
    outline: none;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    animation: colorchange 3s ease-in-out infinite;
}

@keyframes colorchange {
    0% {
        color: black;
    }

    50% {
        color: var(--brown-color);
    }

    75% {
        color: var(--second-color);
    }

    100% {
        color: black;
    }

}

/* ---------------------------------------------------------------------------------------------------------------- */


.gallery-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto;
    margin-bottom: 10px;
    gap: 10px;
    position: relative;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
.gallery-container::-webkit-scrollbar {
    width: 5px;
}

.gallery-container::-webkit-scrollbar-track {
    background: ar(--main-color)
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background: ar(--main-color)
}

/* Firefox */
.gallery-container {
    scrollbar-color: var(--main-color) #f4f4f4;
    scrollbar-width: thin;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    background: var(--second-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.info-data {
    width: 100%;
    padding: 10px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-data span {
    font-size: 14px;
    color: var(--light-color);
}

/* ---------------------------------------------------------------------------------------------------------------- */

.serviceConatiner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.processbox {
    flex-basis: calc(25% - 1rem);
    align-self: stretch;
    position: relative;
}

.processbox .service-img img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.step-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-gradient);
    z-index: 222;
    display: grid;
    place-content: center;
    text-align: center;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.service-card {
    flex: 1;
    flex-basis: calc(25% - 1rem);
    height: auto;
    background: var(--main-gradient);
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: auto;
}

.service-img img {
    width: 100%;
    height: auto;
}

.card-text-content {
    width: 100%;
    height: auto;
    padding: 1rem;
    padding-bottom: 2rem;
    text-align: center;
    color: black;
}

.card-text-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.card-text-content p {
    font-size: 1.6rem;
    margin: 0.5rem 0;
}


/* -------------------------------------------------------------------------------------------------------------------  */

.about-doctor-flex {
    width: 100%;
    margin-top: 2rem;
}

.inner-doctor {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--second-color);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.inner-doctor :is(img, .dr-card-c) {
    flex: 1;
}


.inner-doctor img {
    width: 100%;
    object-fit: contain;
}


.treatment-content {
    width: 100%;
    height: auto;
    margin: auto;
}


/* ---------------------------------------------------------------------------------------------------------------- */


/* 0 */

.aboutdr {
    width: 100%;
    height: auto;
}

.aboutdr img {
    width: 100%;
    height: auto;
}

.aboutcontent {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;
    margin-top: -100px;
    position: relative;
    z-index: 9999999999999999;
}

.aboutdr-content {
    /* width: 49%; */
    flex: 1;
    height: auto;
    background-color: white;
    padding: 4rem 3rem;
    box-shadow: 2px 2px 3px 2px rgb(102, 102, 102);
}

.aboutdr-content img {
    width: 100%;
    margin-bottom: 10px;
}

.aboutdr-content h5 {
    font-size: 3rem;
    color: var(--main-color);
    font-family: "Marcellus", serif;
}

.aboutdr-content a {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--main-color);
    color: var(--second-color);
    font-size: 1.5rem;
    border-radius: 1rem;

}

.drvideo {
    width: 48%;
    height: 350px;
    background-color: white;
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}


.drvideo iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;

}

.drvideo .img {
    margin-bottom: 1rem;
}

.drvideos {
    width: 100%;
    margin-bottom: 1rem;
}

.drvideo a {
    width: 100%;
    padding: 1.5rem 4rem;
    background-color: var(--main-color);
    color: var(--second-color);
    text-align: center;
    font-size: 1.5rem;
    border-radius: 1rem;
}



/*  */



/*  */


.owl-carousel .owl-stage {
    display: flex;
}

.owl-prev,
.owl-next {
    position: absolute;
    content: ' ';
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    width: 30px;
    height: 30px;
    font-size: 15px !important;
    background-color: grey !important;
    color: var(--brown-color) !important;
}

.owl-next {
    left: auto !important;
    right: -15px;
}


.owl-theme .owl-dots .owl-dot span {
    width: 20px !important;
    height: 5px !important;
    background-color: grey !important;
}

.owl-theme .owl-dots .active span {
    width: 25px !important;
    transition: all 0.3s ease-in-out !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--brown-color) !important;
}


.owl-stage .center {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.owl-stage .owl-item {
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
}

.btn-flex {
    display: none;

}

.btn-flex button {
    padding: 5px 10px;
    font-size: 8px;
    background-color: var(--btn-bg);
    color: var(--light-color);
    border: none;
    border-bottom: 3px solid var(--light-color);
    outline: none;
    cursor: pointer;
    border-radius: 2px;
}



/* ---------------------------------------------------------------------------------------------------------------- */



.innerflex {
    flex: 1;
    flex-basis: 100%;
}

.faq-container {
    width: 100%;
    height: 100%;
}


.innerfaq-container {
    width: 100%;
    height: auto;
    background-color: white;
    margin-bottom: 1rem;
    padding: 10px;
}


.accordion__question {
    width: 100%;
    height: auto;
    padding: 10px;
    background: var(--main-color);
}

.innerfaq-container.active2 .accordion__question {
    border-bottom: 2px solid var(--red);
    transition: all 0.5s ease-in;
}


.accordion__question h3 {
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

}

.accordion__answer {
    width: 100%;
    height: auto;
    margin-top: 0px;
    padding: 1rem;
    padding-top: 0.5rem;
}

.accordion__answer p {
    font-size: 1.6rem;
}

.accordion:hover {
    cursor: pointer;
}

.accordion__answer {
    display: none;
}

.innerfaq-container.active2 .accordion__answer {
    display: block;
}

.accordion__answer ul li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.3rem;
}


/* ----------------------------------------------------------------------------------- */


/* Review slider */


.reviewmaincontainer {
    width: 100%;
    margin: 30px auto 30px auto;
}

.active.center .review-container {
    background: var(--red);
}

.active.center .review-container::after {
    background: white !important;
    color: black !important;
}

.review-container {
    width: 99%;
    height: 300px;
    background: white;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #c6c6c6;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.review-container::after {
    position: absolute;
    top: 10px;
    left: 10px;
    content: '⭐5/5';
    width: 50px;
    height: 20px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--red);
    color: white;
    border-radius: 5px;
}

.active.center .review-container::after {
    color: white;
}


.star-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1rem 0;
}

.active.center .review-container .review-content {
    color: white;
}

.review-content {
    width: 100%;
    height: auto;
    color: rgb(0, 0, 0);
    text-align: center;
}

.review-content h6 {
    font-size: 2rem;
    text-transform: capitalize;
    font-family: "Marcellus", serif;
}

.review-content p {
    font-size: 1.5rem;
    padding: 5px;
    position: relative;

}

/* ------------------------------------------------------------------------------------------------------- */

.cta-section {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: auto;
    background: rgba(255, 244, 234, 0.12);
    border: 2px solid var(--orange-color);
    padding: 20px;
    border-radius: 20px;
    text-align: center;

}

.cta-section h5.heading {
    margin-bottom: 0rem;
    padding-bottom: 0rem;

}

.cta-section h5.heading::after,
.cta-section h5.heading::before {
    display: none;
}

.cta-flex {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .paragraph p {
    margin-bottom: 0px;
}

.cta-flex .cta-container {
    margin-top: 0px;
}


/* ----------------------------------------------------------------------------------------------------- */
.copy-right {
    width: 100%;
    height: 60px;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.copy-right span {
    display: block;
    font-size: 1rem;
    width: 100%;
}

.footer-mobile {
    display: none;
}


.scroll {
    position: fixed;
    bottom: 50px;
    right: 5%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--red);
    color: var(--second-color);
    display: none;
    overflow: hidden;
    cursor: pointer;

}

.scroll div i {
    font-size: 1.4rem;
    color: var(--second-color);
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}

.whatsapp-widget {
    width: 300px;
    height: auto;
    position: fixed;
    bottom: 5%;
    left: 5%;
    z-index: 999999999999;
    overflow: hidden;
}

.whatsapp-widget-inner {
    width: 100%;
    height: 150px;
    box-sizing: 2px 2px 2px 2px #c6c6c6;
    margin-bottom: 10px;
    background: #0a5f54;
    border-radius: 10px;
    display: none;
    position: relative;
    animation: whatsappanimation 0.5s linear;
    padding: 20px;
}

.aboutbrand {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.brand-img {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: white;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandname {
    width: auto;
    height: auto;
    color: white;
}

.brandname h3 {
    font-size: 15px;
    font-weight: 600;
}

.brandname p {
    font-size: 10px;
}

.buttonlink {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.buttonlink a {
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    color: grey;
}

.buttonlink a i {
    color: #4dc247;
    font-size: 18px;
}


@keyframes whatsappanimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 50;

    }

    100% {
        opacity: 100;
        transform: translateY(0%);
    }
}


.whatsapp-widget-inner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    content: ' ';
    cursor: pointer;
}

.whatsapp-widget-inner .close svg {
    font-size: 15px;
    color: white;
}

.whatsappbutton {
    width: auto;
    height: auto;
}

.whatsappbutton button {
    padding: 10px 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4dc247;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}

.whatsappbutton button i {
    font-size: 20px;
}


/* thankyou page */
.page-thank-you {
    width: 100%;
    min-height: 100vh;
    background: #fafaf0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
}

.thankyou-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.thankyou-content-box {
    max-width: 650px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.thankyou-content-box img {
    width: 90px;
    margin-bottom: 10px;
}

.thankyou-content-box h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--brown-color);
}

.thankyou-content-box p {
    font-size: 16px;
    line-height: 1.6;
}

.thankyou-block {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.text-block-box {
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.locationtext {
    margin-bottom: 10px;
}

.color1 {
    background: linear-gradient(135deg, #ff4b4b, #c62828);
}

.color2 {
    background: linear-gradient(135deg, #2d2d2d, #111);
}

.text-block-box h2 {
    font-size: 20px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-block-box p {
    margin: 0;
    font-size: 15px;
}

.text-block-box a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.text-block-box .cta-container {
    text-align: start;
}

/* mobile */

@media(max-width:768px) {

    .thankyou-content-box h1 {
        font-size: 2.5rem;
    }

    .thankyou-block {
        grid-template-columns: 1fr;
    }

    .text-block-box {
        padding: 25px;
    }

}

/* gallery section*/

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-img {
    grid-row: span 2;
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .big-img {
        grid-row: span 1;
        grid-column: span 2;
    }
}

/* map  */


.footerflex {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 30px;
    padding: 4rem;
    border-radius: 2rem;
    background: var(--second-color);
}

.contact-box {
    flex: 1;
}



.map-box,
.mapiframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    margin-top: 10px;
}

.map-text-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;

}

.address-block {
    width: 100%;
    display: flex;
    gap: 1rem;
}

.address-block svg {
    font-size: 2rem;
    color: var(--main-color);
    flex-shrink: 0;
}

.address-block .paragraph {
    margin-top: 0;
}