@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:root {

    /* Theme */
    --primary: #B68452;
    --primary-dark: #8D6237;
    --primary-light: #D8B58E;
    --secondary: #1F1B17;

    /* Background */
    --white: #ffffff;
    --bg: #FBF8F4;
    --bg-light: #F7F3EE;

    /* Text */
    --heading: #2B221C;
    --text: #5F554E;
    --light-text: #887F78;

    /* Border */
    --border: #E8DDD1;

    /* Shadows */
    --shadow: 0 12px 40px rgba(34, 25, 20, .08);

    /* Radius */
    --radius: 18px;

    /* Container */
    --container: 1320px;

}

body {

    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--bg);

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'EB Garamond', serif;
    color: var(--heading);
    font-weight: 600;

}


/*==========================
TOP BAR
==========================*/

header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.topbar {
    background: #faf5ef;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
}

.topbar .container {
    padding: 12px 15px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;

}

.topbar-left li {

    display: flex;
    align-items: center;
    gap: 8px;

}

.topbar-right {
    display: flex;
    justify-content: flex-end;

}

.topbar-right a {
    color: var(--heading);
    text-decoration: none;
    font-weight: 500;

}

.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: auto;
    height: 60px;
    transition: .35s;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: .35s;
    background: var(--bg);
}

.button-dark {
    background: var(--primary);
    color: #fff;
}


.btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}


/* banner section  */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #FBF8F4);
    padding: 30px 0 30px;

}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    right: -150px;
    top: -100px;
    background: #efe0ce;

}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    left: -120px;
    bottom: -100px;
    background: #f8f1e8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1;
}

.hero-content p {
    max-width: 520px;
    font-size: 15px;
    color: var(--text);
}


.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    background: var(--primary);
    color: #fff;
    padding: 18px 34px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;

}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-content: center;
}

.feature:not(:last-child) {
    border-right: 1px solid var(--border);
}

.feature i {
    font-size: 28px;
    color: var(--primary);

}

.feature h6 {
    font-size: 14px;
}

.feature small {
    color: var(--text);
    font-size: 11px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 450px;
    margin: auto;
}

.hero-image img {
    width: 100%;
    display: block;

}

/*--------------------------------*/

.section {
    width: 100%;
    padding: 50px 0;
}

/* heading */

.heading-block {
    margin-bottom: 30px;
}

.heading-lg {
    font-family: "EB Garamond", serif;
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--heading);
}

.section-tag{
    font-size:15px;
}


/*==================================
Appointment
==================================*/

.appointment-section {
    background: var(--bg);
}

/*--------------------*/

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 18px;
}

.info-card h5 {
    margin-bottom: 6px;
    font-size: 22px;
}

.info-card p {
    margin: 0;
    color: var(--text);
}

/*--------------------*/

.appointment-form {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 550px;
    margin: auto;
}

.appointment-form .form-control,
.appointment-form .form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--border);
    font-size: 14px;
    box-shadow: none;
    font-weight: 500;
}


.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: none;

}

.appointment-form .btn {
    height: 58px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--bg);
    border: none;
    font-weight: 600;

}

.inputcontainer{
    position:relative;
}

.error {
    color: red;
  font-size: 8px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.success {
    color: green;
}


/*==================================
VIDEO SECTION
==================================*/

.yt-section {
    background: var(--bg);
}

.video-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}

/*========================
MAIN VIDEO
========================*/

.video-player {
    background: #fff;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.video-player iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 20px;
    display: block;
}

/*========================
PLAYLIST
========================*/

.video-playlistcontainer {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.lengthflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.lengthflex p,
.lengthflex {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading);
}

.length {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.video-playlist {
    max-height: 480px;
    overflow-y: auto;
    margin-top: 1rem;
}

/* Scroll */

.video-playlist::-webkit-scrollbar {
    width: 5px;
}

.video-playlist::-webkit-scrollbar-track {
    background: #f3f3f3;
}

.video-playlist::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

/*========================
VIDEO ITEM
========================*/

.video-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    cursor: pointer;
    transition: .3s;
    border: 1px solid transparent;
    margin-bottom: 12px;
}

.video-item:last-child {
    margin-bottom: 0;
}

.video-item:hover {
    background: #faf7f2;
    border-color: var(--border);
}

.video-item.active {
    background: #faf7f2;
    border-color: var(--primary);
}

/*========================
IMAGE
========================*/

.video-item img {
    width: 115px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

/*========================
CONTENT
========================*/

.video-content {
    flex: 1;
}

.video-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-content p {
    margin: 0;
    font-size: 10px;
    color: var(--light-text);
}

.video-item.active h4 {
    color: var(--primary);
}

/*========================
ACTIVE INDICATOR
========================*/

.video-item.active::before {
    content: "";
    width: 4px;
    height: 60px;
    border-radius: 20px;
    background: var(--primary);
    margin-right: 4px;
}

/*========================
RESPONSIVE
========================*/

@media(max-width:991px) {

    .video-section {

        grid-template-columns: 1fr;

    }

    .video-playlist {

        max-height: 350px;

    }

}


/*==============================
SERVICES
==============================*/

.services-section {
    background: #fff;
}

.swiper-slide {
    height: auto;
    display: flex;
}


.cards {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: .35s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cards:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.cards-img img {
    width: 100%;
}

.cards-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.cards-category {
    display: inline-flex;
    align-self: flex-start;
    color: var(--primary);
    font-size: 12px;
}

.cards-content h3 {
    font-size: 18px;
}

.cards-content p {
    color: var(--text);
    font-size: 14px;
}


.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--heading);
    font-weight: 500;
    line-height: 1.5;
}

.service-benefits li:last-child {
    margin-bottom: 0;
}

.service-benefits li i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.service-content a {
    color: var(--heading);
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    border-color: transparent !important;
}

.cards-content a i {
    margin-left: 8px;
}

.cards-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

.cards-meta span {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--heading);
}

.cards-meta span:not(:last-child) {
    border-right: 1px solid var(--border);
}

.cards-meta span i {
    display: block;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 6px;
}


/*==========================
SWIPER PAGINATION
==========================*/

.service-pagination {
    position: relative;
    text-align: center;
    justify-content: center;
}

.service-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d8d3cd;
    opacity: 1;
    border-radius: 50%;
    transition: all .35s ease;
    margin: 0 5px !important;
}

.service-pagination .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 20px;
    background: var(--primary);
}

/* ---------------------------------------------------------------------------------------------------------------- */

.results-section {
    background: var(--bg);
}


.result-image {
    position: relative;
}


.result-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
}


.result-note {
    margin-top: 20px;
    padding: 14px;
    background: #fcf8f3;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    font-size: 12px;
    color: var(--text);
}

/* ---------------------------------------------------------------------------------------------------------------- */

.copyrightcontainer {
    background: var(--primary-dark);
    color: #fff;
}

.copy-right {
    width: 100%;
    height: 70px;
    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;
}

.bottom-cta{
    display:none;
}

.whatsapp-cta {
    position: fixed;
    bottom: 30px;
    right: 80px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
    z-index: 9999;
    transition: .3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-cta:hover {
    transform: translateY(-5px) scale(1.08);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.whatsapp-cta:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-cta::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .4);
    animation: ripple 2s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}



/* thankyou page */
.page-thank-you {
    width: 100%;
    min-height: 100vh;
    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(--primary-dark);
}

.thankyou-content-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-grey);
}


/* gallery section*/

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(24, 91, 173, 0.16);
    padding: 0.5rem;
}

.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  */

.flex-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.locationtext {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.locationtext:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.location-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.locationtext h6 {
    font-size: 2.4rem;
    color: var(--primary);
    font-weight: 600;
}

.locationtext p {
    color: var(--medium-grey);
}

.location-info {
    padding: 18px;
    background: var(--light-bg);
    border-radius: 14px;
}

.location-info p {
    margin: 8px 0;
}

.location-iframe iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: 250px;
    border-radius: 14px;
}

.location-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.location-btn:hover {
    opacity: .9;
}


@media(max-width:992px) {

    .flex-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .flex-container {
        grid-template-columns: 1fr;
    }

}


/* dr section  */

.doctor-section {
    background: #faf8f5;
}

.doctor-image img {
    width: 100%;
    height: 450px;
    border-radius: 26px;
    object-fit: cover;
    display: block;
}


.doctor-quote {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.doctor-quote p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: #444;
}

.doctor-quote h6 {
    color: var(--primary);
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
}

.doctor-info h5 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.doctor-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-info li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.5;
}


.doctor-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.doctor-membership {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.doctor-membership span {
    background: #f4dfd5;
    color: #4d4d4d;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}


.emi-section {
    background: #fff;
}

.emi-card {
    max-width: 760px;
    margin: 30px auto 0;
    background: #fff;
    border: 1px solid #E9D9CE;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

.emi-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;

}

.emi-box {
    background: #F2D8CA;
    border-radius: 18px;
    padding: 28px 15px;
    text-align: center;
    transition: .3s;
}

.emi-box:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: #fff;
}

.emi-box h3 {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.emi-box span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.emi-card hr {
    margin: 35px 0 20px;
    opacity: .1;
}

.emi-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}


.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;
}