:root {
    --primary-blue: #1e3a6d;
    --accent-purple: #7b4bb7;
    --glass-white: #ffffffd9;
}

.main-header {
    position: fixed;
    width: 100%;
    background: var(--glass-white);
    backdrop-filter: blur(8px);
    z-index: 999;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-logo img {
    height: 65px;
}

.left-menu a,
.right-menu a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
}

.call-btn {
    background: #7b4bb7;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
}

/* ================= MOBILE MENU ================= */

.mobile-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-blue);
    margin-left: auto;
    /* icon right side */
}

/* Slide Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    transition: right 0.35s ease;
    z-index: 1001;
    padding: 25px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.mobile-menu-header {
    text-align: right;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Menu List */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    padding: 8px 0;
}

/* Submenu */
.mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 8px;
}

.mobile-submenu li a {
    font-weight: 500;
    font-size: 14px;
}

/* Call Button */
.mobile-call-btn {
    background: var(--accent-purple);
    color: white !important;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
}

/* ================= HERO SECTION ================= */

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    color: #fff;
}

.hero-content h1 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* Paragraph */
.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: var(--accent-purple);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hero-stats div {
    flex: 1;
}

.hero-stats h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.hero-stats span {
    font-size: 12px;
    line-height: 1.4;
}

/* ================= DESKTOP ================= */

@media (min-width: 992px) {

    .hero-content h1 {
        font-size: 60px;
        font-weight: 500;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 750px;
        margin: 0 auto 35px;
    }

    .hero-stats {
        justify-content: center;
        gap: 100px;
    }


    .hero-stats h3 {
        font-size: 40px;
    }

    .hero-stats span {
        font-size: 16px;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 0;
    background: #f5f7fb;
}

.about-image-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

.about-glass-card {
    position: absolute;
    left: 42%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 85%;
    padding: 57px 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-glass-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1e3a6d;
    margin-bottom: 6px;
}

.about-glass-card h5 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a6d;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

@media (max-width: 991px) {

    .about-section {
        padding: 60px 20px;
    }

    .about-image-box {
        border-radius: 30px;
    }

    .about-image-box img {
        border-radius: 30px;
    }

    .about-glass-card {
        width: 92%;
        padding: 22px 20px;
        bottom: 20px;
        border-radius: 20px;
    }

    .about-glass-card h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .about-glass-card h5 {
        font-size: 14px;
    }

    .about-content {
        margin-top: 50px;
    }

    .about-content h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }
}

/* ================= TREATMENT SECTION ================= */

.treatment-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-weight: 700;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    font-size: 26px;
}

.section-title span {
    width: 4px;
    height: 26px;
    background: #3f3d8f;
    margin-right: 14px;
}


.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.treatment-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid #f1f1f1;
}

.treatment-card:hover {
    transform: translateY(-6px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #7b4bb7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle img {
    width: 36px;
}

.treatment-card p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    line-height: 1.4;
}

.view-more-btn {
    display: inline-block;
    margin-top: 30px;
    background: #7b4bb7;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.appointment-box {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
    padding: 60px;
    color: #fff;
}

.appointment-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.appointment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.appointment-content {
    position: relative;
    z-index: 3;
    max-width: 420px;
}

.appointment-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 26px;
}

.appointment-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.appointment-content h4 {
    margin-top: 25px;
    font-size: 16px;
}

.appointment-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.appointment-btn {
    background: #7b4bb7;
    padding: 12px 28px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

@media(max-width:991px) {

    .treatment-section {
        padding: 60px 15px;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .treatment-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
    }

    .icon-circle img {
        width: 28px;
    }

    .treatment-card p {
        font-size: 14px;
    }

    .appointment-box {
        margin-top: 40px;
        padding: 35px 25px;
        border-radius: 25px;
    }

    .appointment-content h3 {
        font-size: 20px;
    }

    .appointment-content h2 {
        font-size: 24px;
    }

}

/* ================= ASSOCIATION SECTION ================= */
.association-section {
    padding: 90px 0;
    background: #f2f5f8;
}

.association-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #3f3d8f;
}

.association-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.logo-item {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .logo-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .logo-item {
        padding: 20px 25px;
    }

    .logo-item img {
        max-width: 100px;
    }

}

/* ================= SECTION WRAPPER ================= */

.risk-section {
    padding: 80px 0;
    background: #25245c;
    color: #fff;
}

.risk-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 50px;
}

.risk-sub {
    text-align: center;
    max-width: 720px;
    margin: 12px auto 50px;
    color: #e2e8f0;
}

.risk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.risk-item {
    padding: 18px 22px;
    border-bottom: 1px solid rgb(255 255 255 / 81%);
    cursor: pointer;
    transition: 0.3s;
}

.risk-item h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.risk-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    display: none;
}

.risk-item.active,
.risk-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--color-secondary);
}

.risk-item.active .risk-desc,
.risk-item:hover .risk-desc {
    display: block;
}

.risk-image img {
    width: 100%;
    border-radius: 22px;
    background: #fff;
}

@media (max-width: 991px) {
    .risk-wrapper {
        grid-template-columns: 1fr;
    }

    .risk-title {
        font-size: 24px;

    }

}

/* =================  CARE SECTION ================= */

.who-care-section {
    padding: 100px 0;
    background: #ffff;
}

/* LEFT SIDE */
.who-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #3f3d8f;
    margin-bottom: 30px;
}

.who-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    max-width: 95%;
}

.who-image img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.who-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 50px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #dcdcdc;
}

.who-icon {
    width: 55px;
    height: 55px;
    /* background: #3f3d8f; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.who-icon::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 35px;
    background: rgba(63, 61, 143, 0.15);
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    top: -15px;
    left: -7px;
    z-index: -1;
}

/* .who-icon img {
    width: 26px;
    filter: brightness(0) invert(1);
} */

.who-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .who-care-section {
        padding: 60px 20px;
    }

    .who-left h2 {
        font-size: 28px;
    }

    .who-intro {
        font-size: 14px;
    }

    .who-image img {
        border-radius: 25px;
        margin-top: 20px;
    }

    .who-list {
        margin-top: 40px;
    }

    .who-card {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }

}



/* ===============================
   RECOVERY TIMELINE SECTION
================================ */
.recovery-timeline {
    background: #25245c;
    padding: 90px 0;
    color: #fff;
}

.timeline-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 80px;
}

.timeline-layout {
    display: grid;
    grid-template-columns: 1.2fr 80px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.timeline-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding: 120px 20px;
    position: relative;
}


.timeline-scroll::-webkit-scrollbar {
    width: 0;
}

.timeline-scroll {
    scrollbar-width: none;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 95%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.timeline-row {
    position: relative;
    min-height: 90px;
    margin-bottom: 60px;
    opacity: 0.15;
    transition: 0.4s ease;
}

.timeline-row.active {
    opacity: 1;
}


.timeline-center {
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}


.timeline-icon img {
    width: 28px;
    height: 28px;
}

.timeline-right {
    padding-right: 80px;
}

.timeline-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.timeline-image {
    position: sticky;
    top: 120px;
}

.timeline-image img {
    width: 480px;
    height: 440px;
    object-fit: cover;
    border-radius: 26px;
}

@media (max-width: 992px) {
    .timeline-layout {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-center {
        left: 0;
        transform: translateY(-50%);
    }

    .timeline-right {
        padding-right: 0;
        padding-left: 80px;
    }

    .timeline-image {
        position: relative;
        margin-top: 40px;
    }
}


/* ===============================
   SUCCESS STORIES SECTION
================================ */

.success-stories {
    padding: 100px 0;
    background: #ffff;
    text-align: center;
}

.stories-title {
    font-size: 42px;
    font-weight: 800;
    color: #3f3d8f;
    margin-bottom: 10px;
}

.stories-subtitle {
    color: #555;
    margin-bottom: 70px;
    font-size: 16px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background: #fff;
    padding: 40px 35px 30px;
    border-radius: 25px;
    border: 1px solid #f3c4cf;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(179, 8, 56, 0.08);
}

.stars {
    color: #f5b50a;
    font-size: 22px;
    margin-bottom: 25px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.story-footer {
    background: #7b4bb7;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.avatar {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
}

.avatar.initials {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #25245c;
    font-size: 18px;
}

.story-footer h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.story-footer span {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 992px) {

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success-stories {
        padding: 60px 20px;
    }

    .stories-title {
        font-size: 28px;
    }

    .story-card {
        padding: 30px 25px;
    }

}

/* Whats Set Apart Section */
.sets-apart {
    background: #25245c;
    padding: 80px 0;
    color: #fff;
}

.apart-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.apart-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 50px;
    max-width: 90%;
}

.apart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apart-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.8;
    color: #e4e4f2;
}

.apart-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 6px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apart-image {
    position: relative;
}

.apart-image img {
    width: 100%;
    height: auto;
    border-radius: 45px;
    object-fit: cover;
}

.doctor-tag {
    position: absolute;
    bottom: 1px;
    right: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    padding: 49px 44px;
    border-radius: 18px;
    color: #fff;
}

.doctor-tag h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.doctor-tag span {
    font-size: 15px;
    opacity: 0.9;
}

@media (max-width: 992px) {

    .sets-apart {
        padding: 70px 20px;
    }

    .apart-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .apart-content h2 {
        font-size: 32px;
    }

    .apart-image img {
        border-radius: 28px;
    }

    .doctor-tag {
        right: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }
}


/* ===============================
   GLIMPSE AUTO SLIDER
================================ */

.glimpse-section {
    background: #f4f6f9;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}

.glimpse-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2c4c7a;
    margin-bottom: 20px;
}

.glimpse-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #3f3d8f;
}


.glimpse-slider {
    overflow: hidden;
    position: relative;
}

.glimpse-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: autoScroll 25s linear infinite;
}

.glimpse-card {
    min-width: 300px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.glimpse-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.4s ease;
}

.glimpse-card:hover img {
    transform: scale(1.05);
}

/* Smooth Infinite Scroll */
@keyframes autoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 992px) {
    .glimpse-heading {
        font-size: 30px;
    }

    .glimpse-card {
        min-width: 250px;
    }

    .glimpse-card img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .glimpse-card {
        min-width: 90%;
    }
}


/* ===============================
   DOCTOR CHOOSE SECTION
================================ */

.doctor-choose-section {
    background: #25245c;
    padding: 100px 0;
    color: #fff;
}

.doctor-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */

.doctor-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.doctor-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #d7d7f0;
    margin-bottom: 15px;
    text-align: justify;
}
.doctor-points,
.doctor-points ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.doctor-points li {
    list-style: none !important;
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #e4e4ff;
}

.doctor-points li::marker {
    content: "" !important;
}

.doctor-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
}

.doctor-points li::after {
    content: "✔";
    position: absolute;
    left: 1px;
    top: 1px;
    font-size: 14px;
    font-weight: 700;
    color: #25245c;
}
.doctor-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    color: #000;
}

.doctor-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #25245c;
}

.doctor-form-box input,
.doctor-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.doctor-form-box textarea {
    height: 120px;
    resize: none;
}

.doctor-form-box button {
    width: 100%;
    padding: 14px;
    background: #7b4bb7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.doctor-form-box button:hover {
    background: #25245c;
}


@media (max-width: 992px) {

    .doctor-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .doctor-content h2 {
        font-size: 30px;
    }

    .doctor-form-box {
        padding: 30px;
    }
}


/* ===============================
   BLOG SECTION
================================ */

.blog-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: #3f3d8f;
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 70px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.calendar-icon {
    font-size: 16px;
}

.blog-btn-wrap {
    margin-top: 50px;
}

.blog-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #7b4bb7;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: #25245c;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}


/* ===============================
   VIDEO SECTION
================================ */

.video-section {
    background: #25245c;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.video-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.video-subtitle {
    font-size: 16px;
    color: #cfd3ff;
    margin-bottom: 70px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.video-card {
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.video-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.video-btn-wrap {
    margin-top: 60px;
}

.video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #25245c;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.video-btn:hover {
    background: #e4e4ff;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-title {
        font-size: 28px;
    }

    .video-card h3 {
        font-size: 16px;
    }
}


/* ===============================
   FAQ SECTION
================================ */

.faq-section {
    background: #ffffff;
    padding: 100px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image */

.faq-image img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #25245c;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #25245c;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: #7b4bb7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    background: #25245c;
}

.faq-item.active .faq-icon::before {
    content: "−";
}

.faq-item.active .faq-icon {
    font-size: 20px;
}

@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}


/* ================= CTA FINAL FIXED ================= */

.cta-final {
    padding: 0px 0;
    padding-bottom: 50px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.cta-box {
    width: 92%;
    max-width: 1400px;
    border-radius: 55px;
    padding: 2px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: url(https://dramitchakraborty.com/wp-content/uploads/2025/11/Content-1.webp) no-repeat center;
    background-size: cover;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-left {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.cta-left h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #25245c;
    margin-bottom: 30px;
}

.cta-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 550px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    background: #7b4bb7;
    color: #fff;
    padding: 20px 40px;
    border-radius: 70px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #1d1c47;
}

.arrow-circle {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-right {
    position: relative;
    z-index: 2;
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.cta-right img {
    width: 100%;
    max-width: 540px;
    object-fit: contain;
}

@media (max-width: 992px) {

    .cta-final {
        padding: 40px 0;
    }

    .cta-box {
        flex-direction: column;
        padding: 50px 25px 0 25px;
        text-align: center;
        border-radius: 35px;
    }

    .cta-left {
        max-width: 100%;
    }

    .cta-left h2 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .cta-left p {
        font-size: 15px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .cta-btn {
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 50px;
        gap: 15px;
    }

    .arrow-circle {
        width: 38px;
        height: 38px;
    }

    .cta-right {
        width: 100%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .cta-right img {
        max-width: 260px;
    }
}

/* =========================
   MAIN FOOTER
========================= */

.main-footer {
    background: #25245c;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}


.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgb(255 255 255 / 43%);
}

.footer-top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    width: 170px;
    filter: brightness(0) invert(1);
}

.footer-heading h3 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}


.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 30px;
    border: 1px solid #ffffff;
    border-radius: 60px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #ffffff;
    color: #25245c;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #25245c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-circle i {
    font-size: 14px;
}


.footer-links {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-grid h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    margin-bottom: 14px;
    font-size: 14px;
    color: #dcdcdc;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-grid ul li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-grid p {
    font-size: 14px;
    color: #dcdcdc;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-links i {
    margin-right: 10px;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 48%);
    padding: 25px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #cfcfcf;
}

.footer-bottom-flex p {
    margin: 0;
    cursor: pointer;
}

.footer-bottom-flex p:hover {
    color: #ffffff;
}


@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

/* Tablet */
@media (max-width: 992px) {

    .footer-top-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-heading h3 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .footer-top {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-btn {
        width: 100%;
        max-width: 260px;
        justify-content: space-between;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid h4 {
        font-size: 15px;
    }

    .footer-grid ul li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px;
    }
}

/* =========================
   SERVICE HERO SECTION
========================= */

.service-hero {
    position: relative;
    padding: 130px 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    height: 550px;

}

.service-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right,
            rgba(255,255,255,0.96) 40%,
            rgba(255,255,255,0.7) 60%,
            rgba(255,255,255,0.2) 80%,
            transparent 100%); */
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.service-breadcrumb {
    font-size: 16px;
    margin-bottom: 25px;
}

.service-breadcrumb a {
    color: #000;
    text-decoration: none;
}

.service-breadcrumb .active {
    color: #7b4bb7;
    font-weight: 700;
}

.service-breadcrumb span {
    margin: 0 8px;
}

.service-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #25245c;
}

.service-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25245c;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
}

.service-btn span {
    background: #fff;
    color: #25245c;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 992px) {

    .service-hero {
        padding: 100px 0;
        background-position: center;
        height: 431px;
    }

    /* .service-overlay {
        background: rgba(255,255,255,0.92);
    } */

    .service-content h1 {
        font-size: 32px;
    }

    .service-content p {
        font-size: 16px;
    }

    .desktop-only {
        display: none;
    }
}


/* =========================
   ABOUT DOCTOR SECTION
========================= */

.about-doctor-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.doctor-points {
    padding-left: 20px;
    list-style-type: disc;   
}

.doctor-points li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.doctor-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.doctor-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #ffffff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #7b4bb7;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    color: #000000;
    font-weight: 600;
}


@media (max-width: 992px) {

    .about-doctor-section {
        padding: 60px 0;
    }
    .about-doctor-section .row {
        flex-direction: column;
    }

    .about-content {
        text-align: left;
        margin-bottom: 30px;
    }

    .about-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .doctor-image {
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
    }

    .doctor-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 15px;
    }

    .doctor-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        margin-top: 15px;
    }

    .stat-box {
        flex: 1;
        padding: 15px 10px;
        border-radius: 12px;
    }

    .stat-box h3 {
        font-size: 20px;
    }

    .stat-box p {
        font-size: 12px;
    }

    .doctor-points {
        padding-left: 18px;
    }

    .doctor-points li {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* ===============================
   HIPEC INFO SECTION
================================ */

.hipec-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.hipec-info-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #25245c;
}

.hipec-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 20px;
    text-align: left; 
    font-weight: 500;
}

@media (max-width: 992px) {

    .hipec-info-section {
        padding: 60px 20px;
    }

    .hipec-info-section h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .hipec-content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }
}


/* ===============================
   HIPEC CANDIDATE SECTION
================================ */

.hipec-candidate-section {
    background: #25245c;
    padding: 100px 0;
    color: #ffffff;
}

.candidate-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.candidate-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.candidate-content ul {
    padding-left: 20px;
    list-style: disc;
}

.candidate-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #f1f1f1;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .hipec-candidate-section {
        padding: 60px 20px;
    }

    .candidate-content h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .candidate-content ul li {
        font-size: 14px;
    }

    .candidate-image {
        margin-bottom: 25px;
    }
}

/* ===============================
   HIPEC TYPES SECTION
================================ */

.hipec-types-section {
    background: #ffffff;
    padding: 100px 0;
}

.types-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.types-content ul {
    padding-left: 20px;
    list-style: disc;
}

.types-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Image */
.types-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .hipec-types-section {
        padding: 60px 20px;
    }

    .types-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .types-content ul li {
        font-size: 14px;
    }

    .types-image {
        margin-top: 15px;
    }

    .types-content {
    margin-top: 30px;
}
}


/* ===============================
   CONTACT HERO SECTION
================================ */

.contact-hero {
    position: relative;
    background: url('/assets/images/banner.jpeg') no-repeat center;
    background-size: cover;
    padding: 155px 0 80px;    
    color: #fff;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgb(123 75 183 / 63%);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-contact {
    font-size: 16px;
}

.breadcrumb-contact a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-contact span {
    margin: 0 8px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-content h1 {
        font-size: 32px;
    }
}


/* ===============================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.contact-left {
    padding-right: 40px;
}

.contact-subtitle {
    font-weight: 600;
    color: #25245c;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid #7b4bb7;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}

.contact-form-wrapper button {
    width: 100%;
    padding: 15px;
    background: #7b4bb7;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-form-wrapper button:hover {
    background: #25245c;
}

/* RIGHT BOX */
.contact-info-box {
    background: #7b4bb7;
    color: #fff;
    padding: 50px;
    border-radius: 4px;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-label {
    font-size: 17px;
    /* opacity: 0.8; */
    font-weight: 700;
}

.info-value {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-box hr {
    border: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.7); 
    margin: 25px 0;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #7b4bb7;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 992px) {
    .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-left h2 {
        font-size: 30px;
    }

    .contact-info-box {
        padding: 30px;
    }
}