/* ================================
   ONCOLOGY HERO SECTION
================================ */
.oncology-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon {
    z-index: 2;
}
.oncology-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.oncology-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(166, 1, 45, 0.65),
        rgba(166, 1, 45, 0.80)
    );
    z-index: 1;
}

.oncology-hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.oncology-hero-content h1 {
    color: white;
}
    
    .OverviewSection-img img {
    border-radius: 50px;
}
    
        .OverviewSection-Info h3 {
    font-size: 30px;
    font-weight: 500;
    color: #A6012D;
    font-style: italic;
}
            .OverviewSection-Info h5 {
                    font-size: 18px;
                    color: #A6012D;
                }
    
    .OverviewSection-Info p {
                    color: #808080;
                }
    
    .GlandCancer-img img {
    border-radius: 50px;
}
    
        .SymptomsSection-Info p {
            font-size: 18px;
            color: #3E3B3C;
        }
    .SymptomsSection-Info h4 {
            font-size: 20px;
            color: #A6012D;
        font-style: italic;
        }
    .SymptomsSection-img img {
            border-radius: 50px;
        }
    .list-unstyled {
    padding-left: 0;
    list-style: none;
}
.SymptomsSection-Info ul li {
    font-size: 16px;
    color: #3E3B3C;
    position: relative;
    padding-left: 20px;
}
    .SymptomsSection-Info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://dramitchakraborty.com/wp-content/uploads/2025/11/Vector-3-5.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}
    
    .cancer-services .service-card {
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    background: linear-gradient(153.43deg, rgba(166, 1, 45, 0.3) 0%, rgba(255, 255, 255, 0) 65.98%);
    border: 1px solid #A6012D82;
        min-height: 250px;
        border-radius: 30px;
}
    
    .ltinfo {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    color: #A6012D;
}

/* MOBILE */
@media (max-width: 768px) {
    .oncology-hero {
        height: 300px;
    }
    .oncology-hero-content h1 {
        font-size: 28px;
        padding: 0 10px;
    }
}

    
    /* ================================
   Recovery Timeline Section
================================ */


/* Wrapper */
.timeline-wrapper {
    position: relative;
}

/* Vertical Center Line */
.timeline-line {
    position: absolute;
    top: 24px;
    bottom: 50px;
    left: 50%;
    width: 3px;
    background: #ffffff61;
    transform: translateX(-50%);
}

/* Item */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
    .timeline-item:last-child {
    margin-bottom: 0;
}

/* Left Column */
.timeline-left h3 {
    font-size: 36px;
    font-weight: 600;
}

.timeline-left .sub {
    color: #BE953F;
    margin-top: 5px;
    font-size: 24px;
}




/* Right Column */
.timeline-right h4 {
    font-size: 24px;
    font-weight: 600;
}

.timeline-right p {
    margin-top: 5px;
    font-size: 15px;
    opacity: 0.9;
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 992px) {
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-line {
        display: none;
    }

    .timeline-icon {
        margin: 20px auto;
    }

    .timeline-left,
    .timeline-right {
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .timeline-title {
        font-size: 26px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }
    .stage-overlay {
    text-align: center;
}

    .timeline-item {
        gap: 20px;
    }
    .timeline-left h3 {
    font-size: 20px;
}
    .timeline-left .sub {
    font-size: 16px;
}
    
    .timeline-right h4 {
    font-size: 18px;
}
    
}



/* Swiper slides default small width */
.treat-slide {
    width: 200px;
    transition: width .45s ease;
}

.treat-slide.hovered {
    width: 365px !important;
}

/* Card styling */
.treat-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all .35s ease;
}

.treat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

/* On hover zoom image */
.treat-slide.hovered .treat-img {
    transform: scale(1.13);
}

/* Know More Button (top right) */
.know-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: white;
    color: #A3002A;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    gap: 6px;
    font-size: 14px;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.35s ease;
}

.treat-slide.hovered .know-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom content */
.treat-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.68), transparent);
    color: #ffff;
    text-align:left;
}

.treat-bottom h4 {
    font-size: 20px;
    margin: 0 0 6px;
}

.treat-bottom p {
    font-size: 14px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.35s ease;
}

.treat-slide.hovered .treat-bottom p {
    opacity: 1;
    height: auto;
    margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .treat-slide {
        width: 150px;
    }
    .treat-slide.hovered {
        width: 320px !important;
    }
}

    
    /* Shared Titles */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #A3002A;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 10px auto 25px;
    font-size: 16px;
    opacity: 0.85;
}

/* ================= DIAGNOSIS SECTION ================= */



.diagnosis-list {
    margin-top: 20px;
}

.diag-item {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.3s;
}

.diag-item h4 {
    margin: 0;
    font-size: 18px;
}

.diag-item .diag-desc {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.35s;
    margin-top: 5px;
}

/* Active Selection */
.diag-item.active {
    background: #FFFFFF26;
    border-bottom: 1px solid var(--system-support-colors-neutral, #D6D6D6)
}

.diag-item.active .diag-desc {
    opacity: 1;
    height: auto;
}

.diag-footer {
    margin-top: 20px;
    opacity: 0.85;
    font-style: italic;
}

/* Image box */
.diag-image-box img {
   width: 100%;
    border-radius: 39px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #A6012D;
}

/* ================= STAGING SECTION ================= */


.stage-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 330px;
    cursor: pointer;
}
    
    .staging-section {
    padding-top: 100px;
}

.stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.stage-card:hover .stage-img {
    transform: scale(1.12);
}

.stage-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.stage-overlay h3 {
   font-size: 30px;
    font-weight: 600;
}

.stage-overlay p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.stage-footer {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .diag-item h4 {
        font-size: 16px;
    }
    .section-title {
        font-size: 26px;
    }
    
        .stage-overlay h3 {
    font-size: 22px;
}
    .oncology-hero {
    margin-top: -12px;
}
    section.OverviewSection.padgClad {
        margin-top: -50px;
}
}

    .OutcomesStn p {
    color: #3E3B3C !important;
}
    .OutcomesStn h4 {
    color: #A6012D !important;
}