/* Preloader Background */
/* #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner */
/* .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #5d0039;
    /* Your theme color */
    /* border-radius: 50%;
    animation: spin 1s linear infinite;
} */ 

/* Animation */
/* @keyframes spin {
    100% {
        transform: rotate(360deg);
    }
} */ 


.topbar {
    background: #ffffff;
    color: #5d0039;
    font-size: 14px;
    padding: 8px 0;

}

.topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media(max-width:768px) {
    .topbar {
        font-size: 12px;
    }

    .topbar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}


/* Navbar background */
.custom-navbar {
    background: #5d0039;
    padding: 12px 0;

}

.navbar-brand h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0;
}

h5 {
    color: white;
    font-family: serif;
}

/* Nav links */
.nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    color: white;
}

.nav-link:hover {
    color: #ffffff;
    border: #ffffff;
    border-radius: 16px;
    /* background:#5d0039;
    color:#ffffff;
       border:1px solid #ffffff; */
}

/* Appointment button */
.appointment-btn {
    background: #ffffff;
    color: #000000;
    padding: 10px 22px;
    /* border-radius:25px; */
    font-weight: 600;
    border: none;
}

.appointment-btn:hover {
    background: #5d0039;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* Mobile alignment */
@media(max-width:991px) {
    .navbar-collapse {
        background: #9c9797;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
    }
}


.nav-link.active {
    color: #c8a46b;
    font-weight: 700;
}


/* HERO BACKGROUND */
.hero-section {
    background: #f3ecec;
    padding: 10px 0 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(91, 89, 90, 0.6);

}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* .hero-section{
    background:
        linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
        url("../img/backface.webp") center/cover no-repeat;
} */

/* Text Styling */
.hero-text h1 {
    font-size: 64px;
    font-weight: 300;
    color: #7a4053;
    font-family: serif;
    /* padding-left: 10%; */
}

.hero-text span {
    font-style: italic;
}

.subtitle {
    font-size: 24px;
    margin: 20px 0;
    color: #222;
    font-family: serif;
}

/* Button */
.hero-btn {
    background: #7a4053;
    color: #fff;
    padding: 10px 22px;
    border-radius: 0;
}

.hero-btn:hover {
    background: #5d0039;
    color: #fff;
}

/* Image */
.hero-img {
    max-width: 100%;
    height: auto;
    padding-left: 20%;
}

/* Booking Bar */
.booking-bar {
    background: #7a4053;
    padding: 25px;
    margin-top: -60px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Inputs */
.booking-bar .form-control,
.booking-bar .form-select {
    border-radius: 0;
    height: 50px;
}

/* Book Button */
.book-btn {
    background: #fff;
    color: #7a4053;
    height: 50px;
    font-weight: 600;
    border-radius: 0;
}

.book-btn:hover {
    background: #eee;
}

/* Responsive */
@media(max-width:991px) {
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .booking-bar {
        margin-top: 30px;
    }
}


/* Section Background */
.about-section {
    background: #efe8e8;
    padding: 80px 0;
}

/* Image */
.about-img {
    width: 100%;
    max-width: 520px;
    border-radius: 2px;
}

/* Image Hover Zoom Container */
.img-hover-zoom {
    overflow: hidden;
    display: inline-block;
}

/* Smooth animation */
.img-hover-zoom img {
    transition: transform 0.5s ease;
}

/* Zoom Effect */
.img-hover-zoom:hover img {
    transform: scale(1.1);
}


/* Text */
.about-text h2 {
    color: #7a4053;
    font-size: 42px;
    font-family: serif;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Button */
.read-btn {
    background: #7a4053;
    color: #fff;
    padding: 10px 24px;
    border-radius: 0;
}

.read-btn:hover {
    background: #5d0039;
    color: #fff;
}

/* Responsive */
@media(max-width:991px) {
    .about-text {
        text-align: center;
    }
}

/* Section */
.choose-section {
    background: #f5efef;
    padding: 80px 0;
}

/* Title */
.choose-title {
    font-size: 40px;
    color: #7a4053;
    font-family: serif;
    margin-bottom: 15px;
}

.choose-desc {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Card Base */
.choose-card {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.choose-card img {
    width: 100%;
    display: block;
}

.card-text {
    padding: 15px 18px;
}

.card-text h5 {
    color: #7a4053;
    font-weight: 600;
}

.card-text p {
    color: #666;
    font-size: 14px;
}

/* Overlay Card */
.overlay-card {
    position: relative;
}

.overlay-card img {
    width: 100%;
    display: block;
}

/* Overlay text box */
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #7a4053;
    color: #fff;
    padding: 18px;
}

.overlay-text h5 {
    margin-bottom: 6px;
}

/* Responsive */
@media(max-width:991px) {
    .choose-title {
        text-align: center;
    }
}




/* Consultation */
.consult-wrapper {
    background: #8d4a63;
    padding: 100px 0 0;
}

.consult-card {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(50px);
}

.consult-card h2 {
    font-family: 'Playfair Display', serif;
    color: #8d4a63;
    font-weight: 700;
}

.consult-card p {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.email-box {
    border-radius: 3px 0 0 3px;
    height: 45px;
}

.submit-btn {
    background: #8d4a63;
    color: #fff;
    border: none;
    height: 45px;
    border-radius: 0 3px 3px 0;
}

.submit-btn:hover {
    background: #6e384e;
}

.subtitle {
    letter-spacing: 2px;
    font-size: 12px;
    color: #b68a3a;
    font-weight: 500;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.desc {
    max-width: 700px;
    margin: 15px auto 40px;
    color: #777;
}

/* Cards */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-bottom {
    background: #eae6df;
    padding: 18px;
}

.card-bottom h5 {
    font-weight: 600;
}

.view-btn {
    border: 1px solid #b68a3a;
    border-radius: 25px;
    font-size: 14px;
    margin-top: 8px;
    color: #b68a3a;
}

.view-btn:hover {
    background: #5d0039;
    color: #fff;
}

/* Hide controls on mobile */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50%;
    padding: 15px;
}

#serviceCarousel .carousel-item {
    transition: transform 0.6s ease;
}

#serviceCarousel .carousel-item .col-md-4 {
    display: inline-block;
}


.swiper-button-next,
.swiper-button-prev {
    color: #5d0039;
}

/* Default card look */
.swiper-slide .service-card {
    transition: all 0.35s ease;
    transform: scale(0.9);
    opacity: 0.6;
}

/* Center (active) card highlight */
.swiper-slide-active .service-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.commitment-section {
    background: #f5f2ed;
}

.main-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.main-title span {
    color: #b88a5a;
}

.subtitle {
    color: #777;
    margin-bottom: 30px;
    max-width: 450px;
}

.feature-box {
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #5d0039;
    font-size: 18px;
}



.feature-box h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #5d0039;
}

.feature-box p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Images */
.image-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.img-large {
    width: 55%;
    border-radius: 20px;
    object-fit: cover;
}

.img-small {
    width: 40%;
    border-radius: 20px;
    object-fit: cover;
    margin-top: 40px;
}

/* review section */

.testimonial-section {
    background: #ffffff;
}

.small-title {
    color: #b08a4a;
    letter-spacing: 1px;
}

.main-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-card {
    background: #f1ebe4;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-nav button {
    border: 1px solid #b08a4a;
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.testimonial-nav button:hover {
    background: #5d0039;
    color: #fff;
}

.testimonial-section {
    background: #f8f5f2;
}

.small-title {
    color: #5d0039;
    letter-spacing: 1px;
    font-weight: 600;
}

.main-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-card {
    background: #dbc6b0;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Arrow Styling */
.testimonial-nav {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid #5d0039;
    background: #fff;
    color: #333;
    transition: 0.3s;
}

.arrow-btn:hover {
    background: #5d0039;
    color: #fff;
    border-color: #5d0039;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.arrow-btn i {
    font-size: 18px;
}

.arrow-btn:hover {
    background: #5d0039;
    color: #fff;
    border-color: #5d0039;
}

/* Active golden style like image */
.active-arrow {
    border: 1px solid #5d0039;
    color: #5d0039;
}

.star-rating i {
    color: #f4b400;
    /* Gold color */
    font-size: 14px;
    margin-right: 2px;
}



/* 
book section */

.cta-section {
    background: #efe8e8;
    position: relative;
    overflow: hidden;
    padding: 75px 0;
}

.cta-overlay {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* Images */
.cta-img {
    position: absolute;
    /* bottom: 0; */
    width: 350px;

    object-fit: contain;
}

.left-img {
    left: -150px;
    width: 40%;

}

.right-img {
    right: -150px;
    transform: scaleX(-1);
    /* mirror effect */
    width: 40%;
    padding-bottom: 0px;
}

/* Center Content */
.cta-content {
    color: #fff;
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.small-text {
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #5d0039;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: #5d0039;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {

    background: #ffffff;
    color: #000000;

}

/* FAQ section */

.faq-section {
    background: #ffffff;
}

.faq-small {
    color: #5d0039;
    letter-spacing: 1px;
    font-weight: 600;
}

.faq-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-btn {
    background: #5d0039;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    border: none;
}

.contact-btn:hover {

    background: #ffffff;
    color: #5d0039;
    border: 1px solid #5d0039;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: #e9e4dc;
    border-radius: 9px !important;
    font-weight: 500;
    padding: 18px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgb(237, 235, 235);
    color: #000000;
}

.custom-accordion .accordion-body {
    background: #5d0039;
    color: #fff;
    border-top: none;
}



/* Footer */
.main-footer {
    background: #5d0039;
    color: #fff;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-list a {
    color: #f1dfe6;
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    font-size: 14px;
}


/* about section  */
.vision-section {
    background: #ffffff;
}

.intro-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vision-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #5d0039;
    margin-bottom: 20px;
}

.vision-section p {
    color: #222222;
    line-height: 1.8;
    font-size: 15px;
}

/* Video styling */
.video-box {
    border-radius: 10px;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
}


.medical-section {
    background: #f5f2ed;
}

.feature-item h5 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #5d0039;
}

.feature-item p {
    color: #000000;
    line-height: 1.8;
    font-size: 15px;
}

.icon-bbox {
    min-width: 50px;
    /* prevents too small */
    height: 45px;
    padding: 0 15px;
    /* flexible width */
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #5d0039;
    font-size: 18px;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .icon-bbox {
        min-width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 10px;
    }
}

.icon-box i {
    font-size: 32px;
    color: #5d0039;
}

.image-wrapper img {
    border-radius: 12px;

}

/* treatements page */

.section-subtitle{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#9a7b5f;
    margin-bottom:10px;
}

.section-title{
    font-family:'Playfair Display', serif;
    font-size:52px;
    margin-bottom:40px;
}

.view-all-btn{
    background:#5d0039;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    font-size:14px;
    border:none;
}

.view-all-btn:hover{
    background:#ffffff;
    color: #000;
    border:1px solid #5d0039;
}

.service-card{
    background:#efe7de;
    border:1px solid #d8cfc6;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.service-title{
    font-family:'Playfair Display', serif;
    font-size:28px;
    margin-bottom:0;
}

.service-icon{
    font-size:30px;
    margin-right:15px;
    color:#8b5e3c;
}

.service-desc{
    font-size:14px;
    color:#5d0039;
    margin-bottom:10px;
}

.detail-btn{
    border:1px solid #5d0039;
    background:transparent;
    color:#5d0039;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
}

.detail-btn:hover{
    background:#5d0039;
    color:#fff;
}

.plus-circle{
    width:28px;
    height:28px;
    border-radius:50%;
    border:1px solid #cbb9aa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    color:#5d0039;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


/* Section */
.derma-section{
    padding:10px 0;
}

/* Small label */
.small-label{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    background:rgba(93,0,57,0.08);
    color:#5d0039;
    padding:6px 14px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:20px;
}

/* Heading */
.main-heading{
    font-family:'Playfair Display', serif;
    font-size:48px;
    color:#5d0039;
    line-height:1.2;
    margin-bottom:20px;
}

/* Paragraph */
.section-text{
    font-size:15px;
    color:#6a4b59;
    max-width:520px;
    margin-bottom:35px;
}

/* Bullet list */
.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:12px;
    font-size:15px;
    color:#5a3a48;
}

.feature-list i{
    color:#5d0039;
    margin-right:8px;
}

/* Image Card */
.image-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    
}

.image-card img{
    width:100%;
    border-radius:30px;

}

/* Consultation Overlay */
.consult-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:linear-gradient(135deg, rgba(93,0,57,0.85), rgba(93,0,57,0.6));
    color:#fff;
    padding:25px;
    border-radius:20px;
    width:70%;
    backdrop-filter: blur(6px);
}

.consult-box i{
    font-size:22px;
    margin-bottom:10px;
    display:block;
}

.consult-box h5{
    font-family:'Playfair Display', serif;
    font-size:24px;
    margin:0;
}

/* Responsive */
@media(max-width:991px){
    .main-heading{
        font-size:36px;
    }
    .consult-box{
        width:85%;
        bottom:20px;
        left:20px;
    }
}
/* Section Background */
.clinic-section{
    background: var(--bg);
    padding: 80px 0;
}

/* Left Image */
.image-wrappers{
        position: relative;
    max-width: 600px;   /* Reduce image width */
    margin: auto;       /* Center it */
}

.image-wrappers img{
    width: 100%;
    border-radius: 25px;
}

/* Doctor Info Card */
.doctor-card{
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(93, 0, 57, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    color: #fff;
}

.doctor-card h4{
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.doctor-card small{
    opacity: .9;
}

/* Tag Label */
.small-tag{
    display: inline-block;
    background: #e8dcd3;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--theme);
    margin-bottom: 20px;
}

/* Heading */
.clinic-content h2{
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5d0039;
    margin-bottom: 20px;
}

/* Description */
.clinic-content p{
    color: #5d0039;
    margin-bottom: 30px;
}

/* Feature List */
.feature-item{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.feature-icon{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--theme);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Button */
.btn-theme{
    background: var(--theme);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    transition: .3s;
}

.btn-theme:hover{
    background: #7a004b;
}

/* Responsive */
@media(max-width:991px){
    .clinic-content h2{
        font-size: 36px;
    }
    .doctor-card{
        position: relative;
        margin-top: 20px;
    }
}

.image-wrappers {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.image-wrappers img {
    width: 100%;
    border-radius: 25px;
    display: block;
}

/* Overlay Card */
.doctor-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(93, 0, 57, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 20px;
    border-radius: 18px;
}

.doctor-card h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.doctor-card small {
    font-size: 14px;
    opacity: 0.9;
}

/* ✅ Tablet */
@media (max-width: 991px) {
    .doctor-card {
        padding: 16px;
        bottom: 15px;
    }
}

/* ✅ Mobile */
@media (max-width: 576px) {
    .doctor-card {
        position: relative;   /* Moves below image */
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 15px;
        border-radius: 15px;
    }

    .doctor-card h4 {
        font-size: 18px;
    }

    .doctor-card small {
        font-size: 13px;
    }
}

.benefits-section{
  padding:10px 0;
  padding-bottom: 30px;
  background:var(--bg);
}

/* Heading */
.section-tag{
  background:#e9ded7;
  padding:6px 15px;
  border-radius:30px;
  font-size:13px;
  color:var(--theme);
}

.main-heading{
  font-size:52px;
  font-family:'Playfair Display', serif;
  color:#4b2b2b;
  margin-top:20px;
}

/* Cards */
.card-box{
  background:#e7dbd1;
  border-radius:25px;
  height:100%;
  position:relative;
}

/* Image Card */
.image-card{
  overflow:hidden;
  height: auto;
}

.image-card img{
  border-radius:25px;
  height:70%;
  object-fit:cover;
}

.image-overlay{
  position:absolute;
  bottom:25px;
  left:25px;
  color:#5d0039;
}

.image-overlay i{
  font-size:24px;
  color:#5d0039;
}

.image-overlay p{
  margin-top:10px;
  font-weight:500;
}

/* Badge Icon */
.badge-icon{
  width:70px;
  height:70px;
  margin:auto;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--theme);
  font-size:28px;
}

/* Checklist */
.check-list{
  list-style:none;
  padding:0;
}

.check-list li{
  font-size:14px;
  margin-bottom:8px;
}

.check-list i{
  color:var(--theme);
  margin-right:6px;
}

/* Stats Row */
.stats-row{
  display:flex;
  justify-content:space-between;
}

.stats-row h3{
  color:var(--theme);
  margin:0;
}

.stats-row span{
  font-size:13px;
  color:#555;
}

/* Rating */
.rating-card h2{
  color:var(--theme);
  font-size:40px;
}

.stars i{
  color:#c08b5c;
}

/* Responsive */
@media(max-width:991px){
  .main-heading{
    font-size:38px;
  }
}

 .treatment-journey {
            background-color: #ffffff; /* Light beige like screenshot */
            padding: 60px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .journey-title {
            color: #5d0039; /* Warm brown */
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 50px;
            letter-spacing: 1px;
        }
        
        .journey-step {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
            border: 1px solid #f0e8d9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid #5d0039;
        }
        
        .journey-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #5d0039;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step-title {
            color: black;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .step-desc {
            color: black;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .journey-title {
                font-size: 2rem;
            }
            
            .journey-step {
                margin-bottom: 20px;
            }
        }

        /* contact section */

        .contact-section {
  background-color: #ffffff;
}

.contact-title {
  font-size: 60px;
  color: #5a3b2e;
  font-family: 'Playfair Display', serif;
}

.contact-wrapper {
  background: #e7dccf;
  padding: 50px;
  border-radius: 30px;
}

.contact-wrapper h2 {
  font-family: 'Playfair Display', serif;
  color: #5a3b2e;
}

.form-control {
  border-radius: 12px;
  border: none;
  padding: 12px;
  background: #f5eee7;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #a67c52;
}

.submit-btn {
  background: #ffffff;
  color: #000000;
  border-radius: 30px;
  padding: 12px;
  font-weight: 500;
  border: 1px solid #5d0039;
}

.submit-btn:hover {
  background: #5d0039;
  color: #ffffff;
}

.image-box {
  position: relative;
}

.image-box img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}

.clinic-hours {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #5d0039;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  font-size: 14px;
}

.map-rectangle-section {
  background-color: #f4eee7;
}

.map-rectangle {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px; /* Rectangle with soft edges */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  color: #5a3b2e;
  font-size: 36px;
  margin-bottom: 10px;
}

.map-header p {
  color: #777;
  font-size: 15px;
}

.map-wrapper iframe {
  border-radius: 20px; /* Inner rectangle */
  width: 100%;
}

/* 
ace page */

.meso-section {
  background: #f4f6f8;
  padding: 80px 0;
}

.meso-title {
  color: #5d0039; /* Orange heading */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.meso-text {
  color: #5c6b7a;
  line-height: 1.8;
  font-size: 15px;
}

/* Icon Style */


.sub-text {
  color: #4e5c6a;
  font-weight: 500;
}

/* Image */
.meso-img {
  max-width: 50%;
  height: 30%;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 991px) {
  .meso-text {
    font-size: 14px;
  }
}