html, body{
    width:100%;
    overflow-x:hidden !important;
}

.header-carousel{
    width:100%;
    overflow:hidden;
}

.header-carousel-item{
    width:100%;
    max-width:100%;
    height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.header-carousel .row{
    margin-left:0 !important;
    margin-right:0 !important;
}

.owl-stage-outer,
.owl-stage,
.owl-item{
    overflow:hidden !important;
}


.reviews-section {
    background: #dff3df;
}

.review-item {
    padding: 15px;
}

.review-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    min-height: 170px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* speech bubble arrow */
.review-box::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 30px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.review-stars {
    display: flex;
    align-items: center;   /* ⭐ same line vertically */
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-stars .stars {
    color: #f4b400;
    font-size: 16px;
    line-height: 1;
}

.google-icon {
    height: 25px;
    width: auto !important;
}

.review-box p {
    font-size: 14px;
    color: #333;
}

.review-box a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.review-user {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.bg-purple {
    background: #7e57c2;
}
.bg-blue {
    background: #1e88e5;
}
.bg-brown {
    background: #8d6e63;
}



.matrix-info-section {
    background: #6fbf8e; /* green background */
}

.matrix-outer {
    padding: 20px;
}

.matrix-inner {
    background: #ffffff;
    border-radius: 60px;
    padding: 30px 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.matrix-inner p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .matrix-inner {
        border-radius: 30px;
        padding: 25px 20px;
    }

    .matrix-inner p {
        font-size: 15px;
    }
}


.about-section h2 {
    font-size: 32px;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

/* Video box */
.video-box iframe {
    border-radius: 6px;
}

/* Ratings */
.rating-item img {
    height: 40px;
}

.stars {
    color: #f4b400;
    font-size: 20px;
    line-height: 1;
}

/* Right green box */
.about-green-box {
    background: linear-gradient(135deg, #7cc88f, #66b88b);
    color: #fff;
    padding: 30px;
    border-radius: 40px;
}

.about-green-box h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.about-green-box ul {
    padding-left: 18px;
    margin: 0;
}

.about-green-box ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
    .about-green-box {
        border-radius: 25px;
        padding: 25px;
    }
}


.therapies-title {
    font-size: 34px;
    font-weight: 500;
    color: #6fbf8e;
}

.therapies-logo-carousel {
    margin-top: 30px;
}

.therapy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.therapy-logo img {
    max-height: 60px;
    width: auto;
    opacity: 0.9;
    transition: 0.3s;
}

.therapy-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .therapy-logo img {
        max-height: 45px;
    }
}



/* Card */
.therapy-card {
    background: #dff3df;
    border-radius: 25px;
    padding: 110px 20px 25px; /* top padding zyada */
    text-align: center;
    position: relative;
    height: 100%;
}

/* Circle holder */
.therapy-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #e0e0e0;

    /* 🔥 MOST IMPORTANT */
    overflow: hidden;

    /* 🔥 Circle upar uthaya */
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fill inside circle */
.therapy-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;   /* 🔥 image circle fill kare */
}

/* Text */
.therapy-card p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: #000;
}
.therapy-image {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Mobile responsive */
@media (max-width: 768px) {
    .therapy-image {
        width: 120px;
        height: 120px;
        top: -50px;
    }

    .therapy-card {
        padding-top: 95px;
    }
}

.dr-section {
    background: #ffffff;
}

/* Top card */
.dr-card {
    background: #dff3df;
    border-radius: 40px;
    padding: 40px;
}

/* Image circle */
.dr-image-wrapper {
    position: relative;
    display: inline-block;
}

.dr-image-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #7cc88f;
}

.dr-image-circle img {
    width: 90%;
    height: 90%;
    margin-top: 27px;
    margin-right: 37px;

}

/* Name badge */
.dr-name {
    background: #ffffff;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
}
/* FEATURE CARD */
.feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    height: 100%;
    overflow: hidden;
    border: 2px solid #dff3df;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* TOP ICON AREA */
.feature-icon {
    background: #dff3df;
    border-radius: 16px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
}

/* TEXT AREA */
.feature-content {
    padding: 10px 18px 22px;
    text-align: left;
}

.feature-content h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: #6aa883;
    margin: 0;
    line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
    .feature-icon {
        height: 140px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .dr-card {
        padding: 25px;
    }

    .dr-image-circle {
        width: 200px;
        height: 200px;
    }
}
.footer-section {
    background: #dff3df;
    border-radius: 30px;
    padding: 35px 40px;
    margin-top: 60px;
}

.footer-section h6 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #2f5f3a;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    color: #2f2f2f;
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-divider {
    border-left: 1px solid #b7d9bf;
    height: 100%;
}

.footer-contact p {
    margin-bottom: 6px;
}

.footer-contact strong {
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-divider {
        display: none;
    }
    .footer-section {
        padding: 25px;
    }
}
.footer-btn a {
    background: var(--bs-light) !important;
    color: var(--bs-primary)!important;
}



.disclaimer-section {
    background: #f5f5f5;
    padding: 35px 20px;
}

.disclaimer-box {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.disclaimer-box h6 {
    font-weight: 600;
    letter-spacing: 1px;
    color: #6fb28a;
    margin-bottom: 15px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.arrow{
    position: absolute;
    right: -19%;
    top: 81%;
}