@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Roboto:wght@400;500;600&display=swap');

:root {
    --main-color: #c39bc3;
    --dark-main-color: #b05bb0;
    --cosmetic-color: #620d62;
    --white: #fff;
    --text: #333;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    padding-top: 90px;
}

/* ================= HEADER ================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    height: 100px;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 135px;   
    width: auto;
    object-fit: contain;
}


.main-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.main-menu a:hover {
    color: #6f116f;
}


.btn-main {
    background: #6f116f;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #580d58;
}


.dropdown-custom {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu-custom a:last-child {
    border-bottom: none;
}

.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    top: 100%;
}


.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .logo img {
        height: 110px;
    }

    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .main-menu {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 0;
        margin: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 15px 15px;
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu a,
    .dropdown-toggle-custom {
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #eee;
        display: block;
        font-size: 15px;
    }

    .dropdown-menu-custom {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        background: #f8f8f8;
        border-radius: 0;
    }

    .dropdown-menu-custom.active {
        display: block;
    }

    .dropdown-menu-custom a {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ================= HERO SECTION ================= */

.hero-section {
    padding-top: 0;
}

/* SLIDE */
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
}

/* DARK PURPLE OVERLAY */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(143, 88, 166, 0.75);  */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin: 20px 0;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-content .btn-main {
    background: #6f116f;
    padding: 14px 30px;
    border-radius: 10px;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    .hero-slide {
        min-height: 650px;
        background-position: center;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: auto;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content .btn-main {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Counter section */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stat-box {
    position: relative;
    padding: 30px 15px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #620d62;
    margin: 0;
    line-height: 1.2;
}

.stat-text {
    font-size: 16px;
    margin-top: 8px;
    color: #222;
    font-weight: 500;
    line-height: 1.4;
}


@media(max-width:991px) {

    .stat-box {
        padding: 25px 10px;
    }

    .stat-number {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .stats-section {
        padding: 40px 0;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 13px;
        margin-top: 6px;
    }

    .stats-section .row>div {
        margin-bottom: 20px;
    }

}

/*************** Doctor Section ******************************/
.doctor-section {
    background: #f8f9fb;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.doctor-image {
    border-radius: 30px;
    width: 100%;
    height: auto;
}

.doctor-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    max-width: 80%;
}

.doctor-card h3 {
    color: #620d62;
    font-weight: 700;
    margin-bottom: 5px;
}

.doctor-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-title {
    font-size: 38px;
    font-weight: 700;
    color: #620d62;
    margin-bottom: 15px;
}

.doctor-desc {
    color: #000000;
    margin-bottom: 20px;
    text-align: justify;
}

.doctor-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.doctor-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.doctor-list li::before {
    content: "✚";
    position: absolute;
    left: 0;
    top: 0;
    color: #b3002d;
    font-weight: bold;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #620d62;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-readmore span {
    background: #fff;
    color: #b3002d;
    border-radius: 50%;
    padding: 5px 10px;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .doctor-title {
        font-size: 28px;
    }

    .doctor-card {
        max-width: 90%;
        padding: 15px;
    }

}


/* MOBILE FIX */
@media(max-width:576px) {

    .doctor-section {
        padding: 40px 0;
    }

    .doctor-image-wrapper {
        border-radius: 20px;
        overflow: visible;
    }

    .doctor-image {
        border-radius: 20px;
    }

    /* remove absolute positioning */
    .doctor-card {

        position: relative;

        bottom: auto;
        left: auto;

        margin-top: -40px;

        margin-left: auto;
        margin-right: auto;

        max-width: 90%;

        padding: 15px;

        border-radius: 15px;

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        backdrop-filter: blur(10px);

    }

    .doctor-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .doctor-desc {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-readmore {
        padding: 10px 18px;
        font-size: 14px;
    }

}

/* SECTION */
.membership-section {

    padding: 60px 0;

    background: #fff;

}


/* TITLE */
.membership-title {

    font-size: 40px;

    font-weight: 700;

    color: #620d62;

    margin-bottom: 40px;

}


/* CARD */
.membership-card {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 14px;

    padding: 20px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* IMAGE */
.membership-card img {

    max-height: 60px;

}


/* DESKTOP GRID */
.membership-grid {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 20px;

}


/* MOBILE SLIDER */
.membership-slider {

    display: none;

}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px) {

    .membership-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}


/* MOBILE */
@media(max-width:576px) {

    /* hide grid */
    .membership-grid {

        display: none;

    }

    /* show slider */
    .membership-slider {

        display: block;

        overflow: hidden;

    }

    /* track */
    .membership-track {

        display: flex;

        gap: 15px;

        width: max-content;

        animation: scrollMembership 25s linear infinite;

    }

    /* card */
    .membership-card {

        min-width: 130px;

        height: 85px;

        padding: 15px;

    }

    /* image */
    .membership-card img {

        max-height: 45px;

    }

}


/* INFINITE SMOOTH SCROLL */
@keyframes scrollMembership {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(-50%);

    }

}


/* ================= SECTION WRAPPER ================= */
.risk-section {
    padding: 80px 0;
    background: #620d62;
    color: #fff;

}

.risk-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;

}

.risk-desc-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #f1f5f9;

}

.risk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;

}

.risk-list {
    width: 100%;
}


.risk-item {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;

}

.risk-item h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;

}

.risk-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #e2e8f0;
    display: none;

}

.risk-item.active {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid #ffffff;

}


.risk-item.active .risk-desc {
    display: block;

}


.risk-item:hover {
    background: rgba(255, 255, 255, 0.08);

}

.risk-image {
    width: 100%;
}

.risk-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    background: #fff;
    display: block;

}

/* ================= TABLET ================= */

@media (max-width: 991px) {
    .risk-section {
        padding: 60px 0;
    }

    .risk-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .risk-image {
        order: -1;
    }

}

@media (max-width: 576px) {

    .risk-section {
        padding: 50px 0;
    }

    .risk-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .risk-desc-main {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .risk-wrapper {
        gap: 20px;
    }

    .risk-item {
        padding: 16px 18px;
    }

    .risk-item h4 {
        font-size: 16px;
    }

    .risk-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .risk-image img {
        border-radius: 16px;
    }

}

/* News Section  */
.media-section {
    width: 100%;
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.media-slider {
    width: 100%;
    overflow: hidden;
}

.media-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    transition: transform 0.6s ease;
}

.media-logo {
    flex: 0 0 auto;
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
    .media-track {
        gap: 50px;
    }

    .media-logo {
        width: 120px;
        height: 60px;
    }

    .media-logo img {
        max-height: 45px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .media-track {
        gap: 40px;
    }

    .media-logo {
        width: 100px;
        height: 50px;
    }

    .media-logo img {
        max-height: 40px;
    }
}

/* News Section */

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f4f5f7;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-small {
    color: #7a2d91;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;

}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #620d62, #620d62);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.about-images {
    position: relative;
    padding-left: 60px;
}

.about-img-big {
    position: relative;
    z-index: 1;
}

.about-img-big img {
    width: 100%;
    border-radius: 40px;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 55%;
    z-index: 2;
}

.about-img-small img {
    width: 100%;
    border-radius: 30px;
    border: 8px solid #fff;
}

.about-badge {
    position: absolute;
    top: 80px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #620d62;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.about-badge span {
    font-size: 32px;
    font-weight: 700;
}

.about-badge p {
    margin: 0;
    font-size: 16px;
}

@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        margin-top: 50px;
        padding-left: 40px;
    }

    .about-img-small {
        width: 60%;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        left: 0;
    }

}

@media(max-width:576px) {

    .about-title {
        font-size: 30px;
    }

    .about-img-small {
        width: 70%;
        bottom: -20px;
    }

    .about-badge {
        width: 90px;
        height: 90px;
        top: -20px;
    }

    .about-badge span {
        font-size: 18px;
    }

    .about-badge p {
        font-size: 12px;
    }

}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background: #fff;
}

.transformation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transformation-small {
    color: #7a2d91;
    font-weight: 600;
}

.transformation-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.transformation-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}


.transformation-slider {
    position: relative;
}

.transformation-track-wrapper {
    overflow: hidden;
}

.transformation-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
}

.transformation-card {
    min-width: calc(50% - 10px);
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
}

.transformation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #7a2d91;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.left {
    left: -20px;
}

.slider-arrow.right {
    right: -20px;
}

@media(max-width:991px) {

    .transformation-wrapper {
        grid-template-columns: 1fr;
    }

    .transformation-card {
        min-width: 100%;
        height: 350px;
    }

    .slider-arrow {
        display: none;
    }

}

@media (max-width: 480px) {
    .transformation-section {
        padding: 30px 0;
    }

    .transformation-title {
        font-size: 25px;
    }

    .transformation-text {
        text-align: justify;
        margin-bottom: 0px;
    }
}

/* Journey SECTION */
.journey-section {
    background: #620d62;
    padding: 100px 20px;
    color: #fff;
    width: 100%;
}
.journey-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}


.journey-main-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 80px;
}

.journey-timeline {
    position: relative;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    margin-bottom: 80px;
}

.journey-left {
    text-align: right;
    padding-right: 40px;
}

.journey-left h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.journey-center {
    display: flex;
    justify-content: center;
    position: relative;
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.journey-icon::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.journey-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.journey-right {
    padding-left: 40px;
}

.journey-right p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.journey-mobile-title {
    display: none;
}

@media(max-width:991px) {

    .journey-main-title {
        font-size: 26px;
        text-align: left;
        margin-bottom: 40px;
    }
    .journey-timeline::before {
        display: none;
    }

    .journey-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .journey-left {
        display: none;
    }

    .journey-center {
        flex-shrink: 0;
    }
    .journey-icon {
        width: 60px;
        height: 60px;
    }
    .journey-icon::before {
        width: 90px;
        height: 90px;
    }
    .journey-right {
        padding-left: 0;
    }
    .journey-mobile-title {
        display: block;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }
    .journey-right p {
        font-size: 15px;
    }
}
/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
    background: #f4f5f7;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-subtitle {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.google-stars {
    color: #f4b400;
    font-size: 22px;
    margin: 10px 0;
}

.testimonialSwiper {
    width: 100%;
    padding: 0px 0;
}

.testimonialSwiper .swiper-wrapper {
    align-items: center;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    width: 420px;
    max-width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
    opacity: 0.6;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6ab04c;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-header h6 {
    font-size: 18px;
    margin: 0;
}

.stars {
    color: #f4b400;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

/* ================= ARROWS ================= */

.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 55px;
    height: 55px;
    background: #6a1b9a;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 26px;
    }

    .testimonial-card {
        width: 90%;
        padding: 22px;
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 42px;
        height: 42px;
    }
}

/* ================= WHY DOCTOR SECTION ================= */

.why-doctor-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.doctor-image-box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.doctor-image-box img {
    width: 100%;
    display: block;
    border-radius: 25px;
}

.doctor-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255,255,255,0.96);
    padding: 20px;
    border-radius: 15px;
    max-width: 80%;
}

.doctor-info h4 {
    margin: 0;
    font-size: 20px;
    color: #620d62;
}

.doctor-info p {
    margin: 6px 0;
    font-weight: 500;
}

.doctor-info small {
    font-size: 13px;
    color: #555;
}


.why-content {
    padding-left: 40px;
}

.why-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #620d62;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.why-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #620d62;
    font-weight: bold;
}

.counter-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.counter-box h3 {
    font-size: 38px;
    color: #620d62;
    margin: 0;
}

.counter-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

@media (max-width: 768px) {

    .why-doctor-section {
        padding: 40px 15px;
        background: #ffffff; 
    }
    .doctor-image-box {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }

    .doctor-image-box img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        display: block;
    }

    .doctor-image-box::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(98, 13, 98, 0.25); 
        border-radius: 20px;
    }

    .doctor-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(6px);
        padding: 15px;
        border-radius: 12px;
        z-index: 2;
    }

    .doctor-info h4 {
        font-size: 18px;
        color: #620d62; 
        margin-bottom: 5px;
    }

    .doctor-info p {
        font-size: 14px;
        margin-bottom: 5px;
        color: #333;
    }

    .doctor-info small {
        font-size: 12px;
        color: #555;
    }

    .why-content {
        margin-top: 30px;
        padding-left: 0;
    }

    .why-content h2 {
        font-size: 22px;
        line-height: 1.3;
        color: #620d62; 
        margin-bottom: 20px;
    }

    .why-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 28px;
        color: #333;
    }

    .why-list li:before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        color: #620d62; 
        font-weight: bold;
    }

    .counter-wrapper {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        gap: 10px;
    }

    .counter-box {
        text-align: center;
        flex: 1;
    }

    .counter-box h3 {
        font-size: 20px;
        color: #620d62; 
        margin: 0;
    }

    .counter-box p {
        font-size: 11px;
        margin-top: 5px;
        line-height: 1.3;
        color: #444;
    }
}


/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-header h5 {
    color: #620d62;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #620d62;
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 25px 30px;
    transition: 0.3s ease;
    color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: #ffffff;
    color: #620d62;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 60px 15px;
    }

    .faq-header h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-item {
        padding: 18px 20px;
    }

}


/* ================= CONSULT SECTION ================= */

.consult-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.consult-container {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.consult-image {
    flex: 1;
}
.consult-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.consult-form-area {
    flex: 1;
    padding: 60px 50px;
    background: #ffffff;
}

.consult-tag {
    background: #620d62;
    color: #fff;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.consult-form-area h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #620d62;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #620d62;
    background: #ffffff;
    font-size: 15px;
}

.consult-form textarea {
    height: 120px;
    resize: none;
}

.consult-form button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #620d62;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.consult-form button:hover {
    background: #c298c6;
    color: #fff;
}

@media (max-width: 992px) {

    .consult-container {
        flex-direction: column;
    }

    .consult-image img {
        height: 350px;
    }

    .consult-form-area {
        padding: 40px 25px;
    }

    .consult-form-area h2 {
        font-size: 24px;
    }

}


/* ================= FOOTER ================= */

.main-footer {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #e69a2e;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bdbdbd;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #620d62;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #620d62;
    color: #fff;
}

.footer-bottom {
    background: #000000;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
}

.footer-bottom a {
    color: #bdbdbd;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}
/* ================= MOBILE FOOTER FIX ================= */

@media (max-width: 768px) {

    .main-footer {
        padding: 40px 15px 120px;
    }

    /* Make grid properly 2 columns */
    .main-footer .row {
        display: flex;
        flex-wrap: wrap;
    }

    .main-footer .footer-col {
        width: 50%;
        margin-bottom: 25px;
    }

    /* First column full width */
    .main-footer .footer-col:first-child {
        width: 100%;
        text-align: center;
    }

    /* Logo center */
    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 130px;
        margin-bottom: 15px;
    }

    /* Center description text */
    .main-footer .footer-col:first-child p {
        text-align: center;
        font-size: 13px;
        padding: 0 10px;
    }

    /* Heading smaller */
    .footer-col h5 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-col ul li {
        font-size: 13px;
    }

    /* Contact column full width */
    .main-footer .footer-col:last-child {
        width: 100%;
    }

    /* Social center */
    .social-icons {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    /* Bottom bar center */
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ================= MOBILE BOTTOM BAR ================= */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
}

.mobile-bottom-bar a {
    width: 50%;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #620d62;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
}

.vertical-book-btn {
    position: fixed;
    right: -58px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #620d62;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .vertical-book-btn {
        right: -57px;
    }
}

/* ================= HERO SECTION  ================= */

.laser-hero {
    position: relative;
    background: #d8cfb5;
    overflow: hidden;
}
.laser-bg {
    position: relative;
    text-align: right;
}

.laser-bg img {
    width: 55%;
    height: 650px;
    object-fit: cover;
}
.laser-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
}
.laser-card {
    background: #F6F2E991;
    backdrop-filter: blur(0px);
    padding: 50px;
    border-radius: 25px;
}

.laser-line {
    width: 40px;
    height: 3px;
    background: #620d62;
    display: block;
    margin-bottom: 20px;
}

.laser-card h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.laser-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.laser-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #620d62;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.laser-btn:hover {
    background: #620d62;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .laser-bg img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

    .laser-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -400px;
        padding: 0 15px 18px;
    }

    .laser-card {
        padding: 30px;
        border-radius: 20px;
    }

    .laser-card h1 {
        font-size: 26px;
    }

    .laser-card p {
        font-size: 14px;
    }

    .laser-btn {
        width: 100%;
        text-align: center;
    }
}


/* ================= CONSULT SECTION ================= */

.consult-section {
    background: #ffff;
    padding: 100px 0;
}

.consult-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.consult-left {
    width: 60%;
    padding-top: 25px;
}

.consult-left h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111;
}

.consult-left p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}
.consult-right {
    width: 40%;
}

.consult-box {
    background: #ad79ad;
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.consult-box h3 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.consult-line {
    width: 60px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 0 auto 30px;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.consult-form textarea {
    height: 100px;
    resize: none;
}

.consult-form button {
    background: #620d62;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.consult-form button:hover {
    background: #620d62;
}

@media (max-width: 992px) {

    .consult-section {
    padding: 30px 0;
}
    .consult-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .consult-left,
    .consult-right {
        width: 100%;
    }

    .consult-left h2 {
        font-size: 25px;
    }

    .consult-box {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .consult-box h3 {
        font-size: 22px;
    }
}

/* ================= INFO SECTION ================= */
.info-section {
    background: #620d62;
    padding: 110px 0;
}

.info-wrapper {
    width: 75%;
    margin: auto;
    text-align: center;
}

.info-wrapper h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #fff;
}

.info-wrapper p {
    font-size: 17px;
    line-height: 1.9;
    color: #fff;
    max-width: 1000px;
    margin: auto;
}


@media (max-width: 992px) {

    .info-section {
        padding: 70px 0;
    }

    .info-wrapper {
        width: 90%;
    }

    .info-wrapper h2 {
        font-size: 25px;
    }

    .info-wrapper p {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }
}


/* ================= BREAST COST SECTION ================= */

.breast-cost-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.breast-cost-wrapper {
    width: 75%;
    margin: auto;
}

.breast-cost-wrapper h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #111;
}

.breast-cost-table {
    width: 100%;
    border-collapse: collapse;
}

.breast-cost-table thead {
    background: #620d62;
    color: #fff;
}

.breast-cost-table th {
    padding: 18px 25px;
    text-align: left;
    font-size: 18px;
}

.breast-cost-table td {
    padding: 18px 25px;
    font-size: 17px;
    color: #222;
}

.breast-cost-table tbody tr:nth-child(even) {
    background: #e9e9e9;
}

.breast-cost-table tbody tr:hover {
    background: #f2f2f2;
    transition: 0.3s ease;
}

@media (max-width: 992px) {

    .breast-cost-wrapper {
        width: 90%;
    }

    .breast-cost-wrapper h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .breast-cost-table th,
    .breast-cost-table td {
        font-size: 14px;
        padding: 12px 10px;
    }

    .table-responsive {
        overflow-x: auto;
    }
}

/* ================= BENEFITS SECTION ================= */

.benefits-section {
    background: #ffffff;
    padding: 80px 0;
}

.benefits-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #111;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-content {
    flex: 1;
}

.benefits-intro {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.benefits-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.benefits-list li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #222;
}

.benefits-closing {
    font-size: 16px;
    color: #444;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    width: 85%;
    height: 85%;
    background: #620d62;
    right: -25px;
    bottom: -25px;
    z-index: 1;
}

@media (max-width: 992px) {

    .benefits-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .benefits-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .benefits-content {
        order: 1; 
    }

    .benefits-image {
        order: 0; 
    }

    .benefits-intro,
    .benefits-closing {
        text-align: center;
    }

    .benefits-list li {
        font-size: 15px;
    }

    .image-accent {
        right: -10px;
        bottom: -10px;
        width: 90%;
        height: 90%;
    }
}
/* *********************Risk Section  *******************/
.risks-section {
    background: #f7f7f7;
    padding: 100px 0;
}

.risks-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #111;
}

.risks-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.risks-image {
    flex: 1;
    position: relative;
}

.risks-image img {
    width: 100%;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.risks-image .image-accent {
    position: absolute;
    width: 85%;
    height: 85%;
    background: #620d62;
    left: -25px;
    bottom: -25px;
    z-index: 1;
}

.risks-content {
    flex: 1;
}

.risks-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #333;
}

.risks-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.risks-list li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .risks-section {
        padding: 50px 0;
    }
    .risks-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .risks-wrapper {
        flex-direction: column;
        gap: 35px;
    }

    .risks-content {
        order: 1; 
    }

    .risks-image {
        order: 1; 
    }

    .risks-image .image-accent {
    position: absolute;
    width: 93%;
    height: 93%;
    background: #620d62;
    left: -16px;
    bottom: -12px;
    z-index: 1;
}
}

/* ================= SECTION BACKGROUND ================= */

.doctor-section {
    background: #f2f2f2;
    padding: 100px 0;
}

/* CENTER CONTAINER */
.doctor-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* MAIN BOX */
.doctor-box {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}


.doctor-left {
    width: 50%;
    background: #c58b8b;
    position: relative;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.doctor-header {
    position: absolute;
    top: 50px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.doctor-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.plus {
    background: #fff;
    color: #c58b8b;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
}

.top-badge {
    position: absolute;
    top: 110px;
    left: 60px;
    background: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 3;
}

.doctor-img {
    max-height: 550px;
    margin-top: 140px;
    position: relative;
    z-index: 2;
    display: block;
}

.bottom-badge {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    z-index: 3;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
}

.c1 {
    width: 140px;
    height: 140px;
    top: 150px;
    right: 80px;
}

.c2 {
    width: 180px;
    height: 180px;
    bottom: 100px;
    left: 60px;
}


.doctor-right {
    width: 50%;
    padding: 60px 20px;
    background: #f7f7f7;
}

.doctor-right input,
.doctor-right textarea,
.doctor-right select {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 22px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.doctor-right input:focus,
.doctor-right textarea:focus,
.doctor-right select:focus {
    border-color: #620d62;
    outline: none;
}

.doctor-right button {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: #620d62;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.doctor-right button:hover {
    background: #a95e5e;
}


@media (max-width: 992px) {

    .doctor-box {
        flex-direction: column;
    }

    .doctor-left,
    .doctor-right {
        width: 100%;
    }

    .doctor-right {
        padding: 40px 25px;
    }

    .doctor-img {
        margin-top: 100px;
        max-height: 420px;
    }

    .bottom-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
    }

    .circle {
        display: none;
    }
}