
.medical-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    /* border-left: 5px solid #0056b3; */
    overflow: hidden;
}

.medical-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.content-side { flex: 1; min-width: 300px; }
.image-side { flex: 1; display: flex; justify-content: center; }

.feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    object-fit: cover;
}

.section-title { color: #3C0145; font-size: 2.2rem; margin-bottom: 20px; font-family: 'Segoe UI', sans-serif; }
.subsection-title { color: #3C0145; font-size: 1.4rem; margin-top: 30px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.section-desc { color: #3C0145; line-height: 1.8; font-size: 1.1rem; }

.medical-list {
    list-style: none; padding: 0; display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px;
}
.medical-list li {
    background: white; padding: 12px 15px; border-left: 4px solid #3C0145;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); display: flex; align-items: center;
    gap: 10px; font-weight: 500;
}


.animate-text-left {
    opacity: 0;
    transform: translateX(-50px); 
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
}

.animate-image-classic {
    opacity: 0;
    transform: scale(0.95); 
    transition: all 1.2s ease-out;
    transition-delay: 0.3s; 
}


.scroll-trigger.is-visible .animate-text-left {
    opacity: 1;
    transform: translateX(0);
}

.scroll-trigger.is-visible .animate-image-classic {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 900px) {
    .medical-layout { flex-direction: column; }
    .image-side { order: -1; width: 100%; margin-bottom: 30px; }
    .feature-img { max-width: 100%; }
}












/* Section Base */
.pancreatic-list-section {
    padding: 50px 20px;
    background-color: #f3f4f6;
    font-family: 'Segoe UI', sans-serif;
    color: #3C0145;
}

.plist-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.plist-header {
    text-align: center;
    margin-bottom: 60px;
}

.plist-badge {
    display: inline-block;
    background: #fdf2ff;
    color: #3C0145;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid rgba(60, 1, 69, 0.1);
}

.plist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3C0145;
    margin: 0 0 15px 0;
}

.plist-line {
    width: 60px;
    height: 4px;
    background: #3C0145;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.plist-desc {
    font-size: 1.1rem;
    color: #3C0145;
    line-height: 1.6;
}

.plist-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plist-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-left: 5px solid #3C0145; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(60, 1, 69, 0.08);
}

.plist-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e2e8f0;
    margin-right: 30px;
    min-width: 50px;
}

.plist-item:hover .plist-number {
    color: rgba(60, 1, 69, 0.2);
}

/* Content */
.plist-content {
    flex: 1;
}

.plist-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3C0145;
}

.plist-content p {
    margin: 0;
    font-size: 1rem;
    color: #3C0145;
    line-height: 1.5;
}

/* Icon */
.plist-icon {
    width: 50px;
    height: 50px;
    background: #fdf2ff;
    color: #3C0145;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

/* Animation Classes */
.reveal-list {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal-list.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .plist-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px;
    }

    .plist-number {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .plist-icon {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .plist-title {
        font-size: 2rem;
    }
}















.split-criteria-section {
        padding: 100px 20px;
        background-color: #f8f9fa; /* Light Grey */
        font-family: 'Segoe UI', Roboto, sans-serif;
        color: #333;
        overflow: hidden;
    }

    .split-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

    /* Left Column */
    .split-content {
        flex: 1;
    }

    .split-badge {
        display: inline-block;
        background: #fdf2ff;
        color: #3C0145; /* Brand Purple */
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 50px;
        margin-bottom: 20px;
        border: 1px solid rgba(60, 1, 69, 0.1);
    }

    .split-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #3C0145;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .split-line {
        width: 80px;
        height: 5px;
        background: #3C0145;
        border-radius: 3px;
        margin-bottom: 25px;
    }

    .split-desc {
        font-size: 1.1rem;
        color: #3C0145;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    /* List Styling */
    .criteria-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .criteria-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: #fff;
        padding: 15px 20px;
        border-radius: 0px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        border: 1px solid #eef2f6;
        transition: transform 0.3s ease;
    }

    .criteria-list li:hover {
        transform: translateX(10px);
        /* border-color: #3C0145; */
        /* box-shadow: 0 10px 25px rgba(60, 1, 69, 0.08); */
    }

    .check-icon {
        background: #3C0145;
        color: #fff;
        width: 24px; height: 24px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.8rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .list-text strong {
        display: block;
        color: #3C0145;
        font-size: 1.05rem;
        margin-bottom: 3px;
    }

    .list-text span {
        font-size: 0.95rem;
        color: #666;
    }

    /* Doctor Note */
    .doctor-note {
        background: #fdf2ff;
        border-left: 4px solid #3C0145;
        padding: 15px 20px;
        color: #3C0145;
        font-weight: 600;
        border-radius: 0 8px 8px 0;
    }
    .doctor-note p { margin: 0; }

    /* Right Column (Image) */
    .split-image {
        flex: 1;
        position: relative;
    }

    .img-frame {
        position: relative;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 20px 20px 0 rgba(60, 1, 69, 0.1); 
    }

    .img-frame img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .img-frame:hover img {
        transform: scale(1.05);
    }

    /* Animation Classes */
    .reveal-split {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .reveal-split.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    .from-right { transform: translateX(50px); }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }
    .delay-600 { transition-delay: 0.6s; }
    .delay-700 { transition-delay: 0.7s; }

    /* Mobile Responsive */
    @media (max-width: 900px) {
        .split-container {
            flex-direction: column-reverse; 
            gap: 40px;
        }

        .split-title {
            font-size: 2.2rem;
        }

        .img-frame {
            box-shadow: 10px 10px 0 rgba(60, 1, 69, 0.1);
        }
    }











    .journal-types-section {
        padding: 100px 20px;
        background-color: #ffffff;
        font-family: 'Segoe UI', Roboto, sans-serif;
        color: #333;
    }

    .journal-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Header */
    .journal-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 60px auto;
    }

    .journal-badge {
        display: inline-block;
        background: #fdf2ff;
        color: #3C0145; 
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 4px;
        margin-bottom: 15px;
        border: 1px solid rgba(60, 1, 69, 0.1);
    }

    .journal-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 15px 0;
    }

    .journal-line {
        width: 60px;
        height: 4px;
        background: #3C0145;
        margin: 0 auto 20px auto;
        border-radius: 2px;
    }

    .journal-desc {
        font-size: 1.1rem;
        color: #3C0145;
        line-height: 1.6;
    }

    /* Stack Wrapper */
    .journal-stack {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Card Design */
    .journal-card {
        display: flex;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .journal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(60, 1, 69, 0.1); /* Purple shadow */
        border-color: #3C0145;
    }

    /* Image Side */
    .j-img-box {
        flex: 0 0 35%; /* Fixed width 35% */
        position: relative;
        overflow: hidden;
        min-height: 250px;
    }

    .j-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .journal-card:hover .j-img-box img {
        transform: scale(1.05);
    }

    /* Number Overlay */
    .j-number {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(60, 1, 69, 0.9);
        color: #fff;
        width: 40px; height: 40px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Content Side */
    .j-content {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .j-content h3 {
        margin: 0 0 15px 0;
        font-size: 1.6rem;
        font-weight: 700;
        color: #3C0145;
    }

    .j-intro {
        font-size: 1.05rem;
        color: #3C0145;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .j-content p {
        margin: 0 0 6px 0;
        font-size: 1rem;
        color: #3C0145;
        line-height: 1.6;
    }

    /* Highlight Box (Whipple) */
    .j-highlight {
        background: #fdf2ff;
        color: #3C0145;
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 0.95rem;
        border-left: 3px solid #3C0145;
        margin-top: 5px;
    }

    .j-benefits-list {
        margin: 10px 0 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .j-benefits-list li {
        font-size: 0.88rem;
        color: #3C0145;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .j-benefits-list li::before {
        content: '•';
        color: #3C0145;
        font-weight: bold;
        font-size: 1.5rem;
        line-height: 1rem;
    }

    .reveal-journal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .reveal-journal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }
    .delay-600 { transition-delay: 0.6s; }

    /* Mobile Responsive */
    @media (max-width: 900px) {
        .journal-card {
            flex-direction: column;
        }

        .j-img-box {
            height: 250px;
            flex: none;
        }

        .j-content {
            padding: 30px 25px;
        }

        .journal-title {
            font-size: 2rem;
        }
    }
















.why-choose-dark-section {
    padding: 100px 10px;
    background-color: #2E0A36; 
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.relative-z { position: relative; z-index: 2; }

.bg-glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.35;
}
.spot-1 { width: 400px; height: 400px; background: #59006b; top: -100px; left: -100px; }
/* .spot-2 { width: 500px; height: 500px; background: #d63384; bottom: -150px; right: -150px; } */

.why-split-layout {
    display: flex;
    align-items: center; 
    gap: 60px;
    margin-bottom: 60px;
}

.why-content-col {
    flex: 1.2; 
}

.why-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-dark-header {
    text-align: left;
    max-width: 100%;
    margin-bottom: 40px;
}

.dark-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.dark-title2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3C0145;
    margin-bottom: 20px;
    line-height: 1.15;
}

/* .neon-text {
    color: #ff80ab; 
    text-shadow: 0 0 25px rgba(255, 128, 171, 0.5);
}
.neon-text2 {
    color: #1A237E; 
    text-shadow: 0 0 25px #1A237E;
} */


.dark-lead {
    font-size: 1.1rem;
    color: #3C0145;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
}

.dark-features-grid.side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-dark-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-dark-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 128, 171, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.f-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d63384 0%, #59006b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
    transition: transform 0.3s ease;
}

/* .feature-dark-card:hover .f-icon-wrap { transform: scale(1.1) rotate(8deg); } */

.f-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.f-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.doctor-image-frame {
    position: relative;
    max-width: 500px;
    width: 100%;
    border-radius: 30px;
    padding: 10px; 
}

.doctor-img {
    width: 100%;
    height: auto;
    border-radius: 0px; 
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* The Glowing Border Behind the image */
/* .frame-glow {
    position: absolute;
    inset: 0; 
    border-radius: 30px;
    background: linear-gradient(135deg, #d63384, #59006b, #2E0A36);
    z-index: 1;
    filter: blur(20px); 
    opacity: 0.7;
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.doctor-image-frame:hover .frame-glow {
    opacity: 1;
    filter: blur(25px);
} */


.trust-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
    margin-top: 20px;
}

.trust-line { height: 1px; width: 80px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); }
.trust-icon { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #ff80ab; display: flex; align-items: center; gap: 10px; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .why-split-layout {
        flex-direction: column-reverse; 
        gap: 40px;
    }
    .why-dark-header { text-align: center; }
    .dark-title { font-size: 2.2rem; }
    .dark-title2 { font-size: 2.2rem; }
    .dark-lead { margin: 0 auto; }
    
    .dark-features-grid.side-grid {
        gap: 15px;
    }
    .feature-dark-card { padding: 20px; }
}

@media (max-width: 767px) {
    .dark-features-grid.side-grid {
        grid-template-columns: 1fr;
    }
    .doctor-image-frame { max-width: 500px; }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);      
    filter: blur(5px);                
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); 
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: calc(var(--delay) * 0.15s); 
}

.why-image-col.reveal-on-scroll {
    transition-duration: 1.2s; 
}






















/* --- Process Section Wrapper --- */
.process-dark-section {
    padding: 100px 10px;
    background-color: #F9F9F9; 
    position: relative;
    overflow: hidden;
    color: #3C0145;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; 
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #1A237E, transparent);
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}
.process-step:last-child::after { display: none; } 

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.p-text-col {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number-one {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3C0145 0%, #3C0145 60%, #460653 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2; 
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.p-text-col h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3C0145;
}

.p-text-col p {
    font-size: 1.05rem;
    color: #3C0145;
    line-height: 1.6;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.process-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #3C0145;
}
.process-list li::before {
    content: '•';
    color: #1A237E; 
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.p-img-col {
    flex: 1;
}

.process-img-frame {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease;
}

.process-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.process-step:hover .process-img-frame img {
    transform: scale(1.05);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .process-step, 
    .process-step:nth-child(even) {
        flex-direction: column-reverse; 
        gap: 30px;
        text-align: left;
    }
    
    .process-step::after { left: 20px; } 
    .step-number-one { font-size: 3rem; }
}













/* --- Recovery Section --- */
.recovery-dark-section {
    padding: 100px 10px;
    background-color: #2E0A36; 
    position: relative;
    color: #fff;
    text-align: center;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 50px;
}

.recovery-card {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    padding: 40px 30px;
    text-align: left; 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lift up and glow */
/* .recovery-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(214, 51, 132, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
} */

.recovery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d63384, #533f57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.recovery-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.recovery-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.recovery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recovery-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.recovery-list li i {
    color: #ff80ab;
    margin-top: 4px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .recovery-grid {
        grid-template-columns: 1fr; 
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}



.urgent-contact-section {
    padding: 100px 10px;
    background-color: #F8F9FC; 
    background-image: 
        radial-gradient(at 0% 0%, rgba(214, 51, 132, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(89, 0, 107, 0.08) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.urgent-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr; 
    gap: 70px;
    align-items: center;
}

.urgent-text-col .light-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3C0145; 
    margin-bottom: 20px;
}

/* .alert-accent {
    color: #1A237E; 
    position: relative;
    display: inline-block;
    font-weight: 800;
} */
/* Adds a cool underline effect */
/* .alert-accent::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; width: 100%; height: 6px;
    background: rgba(109, 3, 115, 0.337);
    z-index: -1;
    transform: skewX(-15deg);
} */

.light-lead {
    font-size: 1.1rem;
    color: #3C0145; 
    margin-bottom: 40px;
}

.symptoms-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.symptom-module {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 20px 30px;
    /* border-radius: 20px; */
    box-shadow: 0 10px 30px rgba(16, 7, 195, 0.04);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.symptom-module:hover {
    transform: translateX(15px) scale(1.02);
    /* box-shadow: 0 20px 40px rgba(214, 51, 132, 0.15); */
    /* border-color: rgba(214, 51, 132, 0.4); */
}

.s-icon-wrap {
    width: 55px; height: 55px;
    background: rgba(214, 51, 132, 0.1); 
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #3C0145; 
    transition: all 0.3s ease;
}

/* .symptom-module:hover .s-icon-wrap {
    background: linear-gradient(135deg, #4f045a, #830e95);
    color: #fff; 
    transform: rotate(10deg);
} */

.symptom-module h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3C0145;
}


.urgent-img-col {
    position: relative;
}

.img-glow-backdrop {
    position: absolute;
    top: 50%; left: 50%;
    width: 90%; height: 90%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #5e086b, #59006b);
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; 
    animation: blobPulse 8s ease-in-out infinite alternate;
}

.urgent-img-frame {
    position: relative;
    z-index: 2;
    /* border-radius: 40px 120px 40px 120px;  */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(46, 10, 54, 0.15);
    border: 5px solid #fff; 
    /* transform: rotate(-3deg);  */
    /* transition: transform 0.5s ease; */
}

.urgent-img-frame img {
    width: 100%; height: auto; display: block;
}

/* Hover on image section */
/* .urgent-img-col:hover .urgent-img-frame {
    transform: rotate(0deg) scale(1.03); 
} */

@keyframes blobPulse {
    0% { border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; }
    100% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .urgent-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .urgent-text-col { order: 2; } 
    .urgent-img-col { order: 1; max-width: 500px; margin: 0 auto; }
    .urgent-img-frame { transform: rotate(0); border-radius: 40px; }
}












.liver-amazing-section {
    padding: 90px 10px;
    background-color: #300636; 
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    z-index: 1;
}

.nebula-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: nebulaFloat 10s infinite alternate ease-in-out;
}
.nebula-1 { width: 600px; height: 600px; background: #4f46e5; top: -10%; left: -10%; } 
/* .nebula-2 { width: 500px; height: 500px; background: #ec4899; bottom: -10%; right: -10%; animation-delay: -5s; } Pink */

@keyframes nebulaFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.1); }
}

.amazing-split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.amazing-img-col {
    flex: 1;
    position: relative;
}

.radar-frame {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.6s ease;
}

/* .amazing-img-col:hover .radar-frame {
    transform: perspective(1000px) rotateY(0deg);
} */

.radar-frame img {
    width: 100%; height: auto; display: block;
    transition: scale 0.6s ease;
}

.radar-frame:hover img { scale: 1.05; }

.radar-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    z-index: 2;
    background-size: 100% 200%;
    pointer-events: none;
}

@keyframes radarSwipe {
    0% { background-position: 0% -100%; }
    100% { background-position: 0% 200%; }
}

.img-badge {
    position: absolute;
    bottom: 30px; left: 30px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; gap: 10px;
    z-index: 3;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.pulsing-dot { width: 8px; height: 8px; background: #e32611; border-radius: 50%; box-shadow: 0 0 10px #e32611; animation: pulseDot 2s infinite; }

@keyframes pulseDot { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }


.amazing-text-col { flex: 1.2; }

.amazing-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amazing-header p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 50px;
    line-height: 1.7;
}

.glass-card-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    border-radius: 0px;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover Gradient Border Effect */
/* .glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899, #6366f1);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRun 4s linear infinite;
} */

@keyframes borderRun { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

/* .glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(10px);
}
.glass-card:hover::before { opacity: 1; } */

.card-content-flex {
    display: flex; gap: 20px; align-items: flex-start;
}

.g-icon {
    min-width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}
.primary-icon { color: #818cf8; box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
.secondary-icon { color: #818cf8; box-shadow: 0 0 20px rgba(236, 72, 153, 0.2); }

.card-text h3 {
    font-size: 1.4rem; font-weight: 700; margin: 0 0 10px 0; color: #fff;
}
.card-text p {
    font-size: 0.95rem; color: #fff; margin: 0 0 15px 0; line-height: 1.5;
}

.highlight-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}
.tag-blue { color: #818cf8; border: 1px solid rgba(129, 140, 248, 0.3); }
.tag-pink { color: #f472b6; border: 1px solid rgba(244, 114, 182, 0.3); }


/* --- Responsive --- */
@media (max-width: 991px) {
    .amazing-split-layout { flex-direction: column; gap: 50px; }
    .radar-frame { transform: none; max-width: 600px; margin: 0 auto; }
    .amazing-header h2 { font-size: 2.8rem; text-align: center; }
    .amazing-header p { text-align: center; }
}
@media (max-width: 767px) {
    .amazing-header h2 { font-size: 2.2rem; }
    .card-content-flex { flex-direction: column; }
    .g-icon { margin-bottom: 10px; }
}       

















/* --- Unique Light Symptoms Section --- */
.symptoms-journal-section {
    padding: 120px 0;
    background-color: #ffffff;
    background-image: radial-gradient(circle at 1px 1px, #e5e7eb 1px, transparent 0);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
}

.journal-split-layout {
    display: flex;
    align-items: center;
    gap: 70px;
}

.journal-img-col {
    flex: 1;
    position: relative;
}

.img-backdrop-layer {
    position: absolute;
    top: 30px; left: -30px;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #f0f2f5, #e0e7ff);
    border-radius: 0px;
    z-index: 0;
}

.journal-img-frame {
    position: relative;
    z-index: 1;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.journal-img-frame img {
    width: 100%; height: auto; display: block;
}

.journal-img-col:hover .journal-img-frame {
    transform: translateY(-10px);
}

.journal-content-col {
    flex: 1.1;
}

.journal-header { margin-bottom: 40px; }

.journal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2E0A36;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Creative underline */
/* .journal-title::after {
    content: ''; position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(214, 51, 132, 0.1); 
    z-index: -1; transform: skewX(-20deg);
} */

.journal-lead {
    font-size: 1.1rem; color: #3C0145; line-height: 1.6;
}

.symptom-interactive-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.symptom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 18px 25px;
    border-radius: 0px;
    /* transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); */
    position: relative;
    overflow: hidden;
    cursor: default;
}

.symptom-row::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    /* background: linear-gradient(to bottom, #860999, #59006b);
    opacity: 0; transition: opacity 0.3s ease; */
}

.symptom-row:hover {
    background: #fdf4ff; 
    /* border-color: rgba(214, 51, 132, 0.2); */
    /* transform: translateX(10px); */
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.08);
    padding-left: 35px;
}

.symptom-row:hover::before { opacity: 1; }

.s-row-content { display: flex; align-items: center; gap: 15px; }

.s-row-icon {
    width: 0; overflow: hidden; opacity: 0;
    /* color: #860999; font-size: 1.2rem; */
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.symptom-row:hover .s-row-icon {
    width: auto; opacity: 1; transform: translateX(0);
    margin-right: 10px;
}

.symptom-row h4 {
    margin: 0; font-size: 1.1rem; font-weight: 700; color: #3C0145;
    transition: color 0.3s ease;
}
.symptom-row:hover h4 { color: #2E0A36; }

.s-row-arrow {
    color: #cbd5e1; font-size: 0.9rem; transition: all 0.3s ease;
}
/* .symptom-row:hover .s-row-arrow {
    color: #860999; transform: translateX(5px);
} */

.journal-alert-box {
    background: #fff0f3; 
    border-radius: 0px; 
    padding: 25px;
    display: flex; align-items: flex-start; gap: 20px;
    border-left: 4px solid #ff0707eb;
}
.alert-icon-wrapper {
    font-size: 1.8rem; color: #ff0707eb;
    animation: softPulse 2s infinite;
}
@keyframes softPulse { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }

.alert-text p {
    margin: 0; font-size: 1rem; color: #7f1d1d; line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .journal-split-layout { flex-direction: column; gap: 50px; }
    .journal-img-col { max-width: 600px; margin: 0 auto; }
    .img-backdrop-layer { top: 20px; left: -20px; }
}
@media (max-width: 767px) {
    .symptoms-journal-section { padding: 80px 10px; }
    .journal-title { font-size: 2.2rem; }
    .symptom-row { padding: 15px 20px; }
}

















.criteria-attractive-section {
    padding: 120px 10px;
    background-color: #F8F9FD; 
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
    z-index: 1;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15; 
    animation: floatBlob 15s infinite alternate ease-in-out;
}
.blob-purple {
    width: 600px; height: 600px;
    background: #3C0145;
    top: -10%; left: -10%;
}
.blob-indigo {
    width: 500px; height: 500px;
    background: #3C0145;
    bottom: -5%; right: -5%;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.05); }
}

.criteria-attr-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.criteria-attr-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3C0145);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.criteria-attr-lead {
    font-size: 1.15rem;
    color: #3C0145;
    opacity: 0.8;
    line-height: 1.7;
}

.criteria-attr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.c-attr-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    /* backdrop-filter: blur(15px); */
    /* -webkit-backdrop-filter: blur(15px); */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(30, 30, 119, 0.05);
}

/* Glowing Animated Border on Hover */
/* .c-attr-card::after {
    content: '';
    position: absolute;
    inset: 0; 
    border-radius: 24px;
    padding: 2px; 
    background: linear-gradient(135deg, #3C0145, #d63384, #1E1E77); 
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; 
    transition: opacity 0.4s ease;
    pointer-events: none;
} */

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* 
.c-attr-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 30, 119, 0.12);
} */

.c-attr-card:hover::after {
    opacity: 1; 
}

.c-attr-icon-wrap {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(60, 1, 69, 0.1), rgba(30, 30, 119, 0.1));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #3C0145;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(30, 30, 119, 0.05);
}

/* .c-attr-card:hover .c-attr-icon-wrap {
    background: linear-gradient(135deg, #3C0145, #1E1E77);
    color: #fff;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 25px rgba(30, 30, 119, 0.2);
} */

.c-attr-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3C0145;
    margin-bottom: 15px;
}

.c-attr-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.statement-banner {
    grid-column: span 3;
    background: linear-gradient(135deg, #271668, #3C0145, #552140);
    border-radius: 0px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(39, 22, 104, 0.3);
    position: relative;
    overflow: hidden;
}

.statement-banner::before {
     content: ''; position: absolute; inset: 0;
     background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
     background-size: 30px 30px; opacity: 0.3;
}

.statement-icon-box {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.statement-text h3 { margin: 0 0 8px 0; font-size: 2rem; font-weight: 800; color: #fff; }
.statement-text p { margin: 0; font-size: 1.15rem; color: rgba(255,255,255,0.9); font-weight: 500; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .criteria-attr-grid { grid-template-columns: repeat(2, 1fr); }
    .statement-banner { grid-column: span 2; }
    .criteria-attr-title { font-size: 2.5rem; }
}
@media (max-width: 767px) {
    .criteria-attractive-section { padding: 80px 10px; }
    .criteria-attr-grid { grid-template-columns: 1fr; gap: 25px; }
    .statement-banner { grid-column: span 1; flex-direction: column; text-align: center; padding: 35px 25px; }
    .criteria-attr-title { font-size: 2.2rem; }
}







.risk-section-liver {
    background: linear-gradient(135deg, #3C0145 0%,  #6a1b7a 100%);
    padding: 80px 20px;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; 
}

.risk-container-liver {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.risk-content-col-liver {
    flex: 1 1 500px;     
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.risk-image-col-liver {
    flex: 1 1 400px;    
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s; /* Slight delay */
}

.risk-heading-liver {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.risk-leadin-liver {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
}

.risk-list-grid-liver {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.risk-glass-item-liver {
    background: (rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.risk-glass-item-liver:hover {
    background: rgba(255, 255, 255, 0.15); 
    transform: translateY(-3px);
}

.risk-icon-circle-liver {
    width: 48px;
    height: 48px;
    background-color: #ffffff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.risk-icon-circle-liver svg {
    width: 24px;
    height: 24px;
    fill: color#3C0145; 
}

.risk-details-liver h3 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.risk-details-liver span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.risk-img-wrapper-liver {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}

.risk-img-wrapper-liver img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5; 
}

.animated-liver {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

@media (max-width: 900px) {
    .risk-container-liver {
        flex-direction: column;
        gap: 40px;
    }
    .risk-content-col-liver, .risk-image-col-liver {
        flex: 1 1 100%; 
        text-align: center;
    }
    .risk-leadin-liver {
        margin-left: auto;
        margin-right: auto;
    }
    .risk-list-grid-liver {
        text-align: left; 
    }
    .risk-img-wrapper-liver img {
         /* aspect-ratio: 16/9; 
         max-height: 400px; */
    }
}











.surgery-perfect-section {
    padding: 100px 10px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
}

.perfect-bg-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.08; 
    z-index: 0;
    animation: blobFloat 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-p-1 { width: 600px; height: 600px; background: #3C0145; top: -10%; right: -10%; }
.blob-p-2 { width: 500px; height: 500px; background: #1E1E77; bottom: 0%; left: -10%; animation-delay: -5s; }

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

.perfect-split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.perfect-img-col {
    flex: 0.9;
    position: relative;
}

.img-presentation-frame {
    position: relative;
    border-radius: 0px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(30, 30, 119, 0.1); 
    /* transform: rotate(-2deg); */
    transition: transform 0.5s ease;
}

/* .img-presentation-frame:hover {
    transform: rotate(0deg) scale(1.02);
} */

.img-inner-mask {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.img-inner-mask img {
    width: 100%; height: auto; display: block;
}

.img-float-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: #1E1E77;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 30, 119, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 10px;
    /* transform: rotate(2deg);  */
}

.perfect-content-col {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.perfect-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #3C0145;
    margin-bottom: 10px;
}
.perfect-header p {
    font-size: 1.1rem; color:#3C0145; margin-bottom: 40px;
}

.spec-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 0px;
    padding: 25px;
    display: flex;
    gap: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    overflow: hidden;
}

.spec-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #ddd; 
    transition: width 0.3s ease;
}

.spec-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(60, 1, 69, 0.08);
}
.spec-card:hover::before { width: 6px; }

.spec-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.spec-details h3 {
    margin: 0 0 8px 0; font-size: 1.2rem; font-weight: 700; color: #2E0A36;
}
.spec-details p {
    margin: 0 0 15px 0; font-size: 0.95rem; color: #3C0145; line-height: 1.5;
}

.spec-metrics {
    display: flex; gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.metric-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #3C0145;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
}

.spec-card.standard::before { background: #552140; }
.spec-card.standard .spec-icon { background: rgba(85, 33, 64, 0.1); color: #552140; }

.spec-card.major::before { background: #3C0145; }
.spec-card.major .spec-icon { background: rgba(60, 1, 69, 0.1); color: #3C0145; }

.spec-card.advanced {
    background: linear-gradient(to right, #fff, #f4f4ff);
    border: 1px solid rgba(30, 30, 119, 0.1);
}
.spec-card.advanced::before { background: #3C0145; }
.spec-card.advanced .spec-icon { background: #3C0145; color: #fff; box-shadow: 0 5px 15px rgba(30, 30, 119, 0.3); }

/* --- Responsive --- */
@media (max-width: 991px) {
    .perfect-split-layout { flex-direction: column; }
    .perfect-img-col { max-width: 600px; margin: 0 auto; }
    .img-presentation-frame { transform: rotate(0deg); }
    .img-float-badge { transform: rotate(0deg); right: 0; }
}














/* --- Why Choose Profile Section --- */
.why-profile-section {
    padding: 100px 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
}

.why-profile-section::before {
    content: ''; position: absolute; top: -10%; right: -10%;
    width: 50%; height: 60%;
    background: radial-gradient(circle, rgba(30, 30, 119, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.profile-split {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative; z-index: 2;
}

.profile-img-col {
    flex: 0.8;
    position: relative;
}

.profile-frame-back {
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, #3C0145, #1E1E77); 
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow { 0% { opacity: 0.3; } 100% { opacity: 0.6; } }

.profile-frame-front {
    border-radius: 0px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 20px 50px rgba(30, 30, 119, 0.2);
    position: relative;
}

.profile-frame-front img {
    width: 100%; height: auto; display: block;
    transition: transform 0.5s ease;
}
.profile-img-col:hover img { transform: scale(1.05); }

.exp-badge {
    position: absolute;
    bottom: 30px; right: -30px;
    background: linear-gradient(135deg, #1E1E77, #3C0145);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 10px 30px rgba(30, 30, 119, 0.3);
    text-align: center;
}
.exp-badge h4 { margin: 0; font-size: 1.8rem; font-weight: 800; }
.exp-badge span { font-size: 0.9rem; }


.profile-text-col { flex: 1; }

.profile-header h2 {
    font-size: 2.5rem; font-weight: 600; color: #3C0145; margin-bottom: 40px;
}
.highlight-text { color: #1E1E77; }

.proof-points-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px; 
    margin-bottom: 50px;
}

.proof-item {
    display: flex; align-items: flex-start; gap: 15px;
}

.proof-marker {
    width: 35px; height: 35px;
    background: rgba(30, 30, 119, 0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #3C0145; font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.proof-item:hover .proof-marker {
    background: #3C0145; color: #fff; transform: scale(1.1);
    box-shadow: 0 0 15px rgba(30, 30, 119, 0.3);
}

.proof-item p {
    margin: 0; font-size: 1.05rem; color: #552140; font-weight: 600; line-height: 1.4;
    transition: color 0.3s ease;
}
.proof-item:hover p { color: #3C0145; }

.recognition-banner {
    background: linear-gradient(90deg, #3C0145, #1E1E77); 
    padding: 25px 35px;
    border-radius: 0px;
    color: #fff !important;
    display: flex; align-items: center; gap: 20px;
    box-shadow: 0 15px 40px rgba(30, 30, 119, 0.2);
    position: relative; overflow: hidden;
}

.recognition-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shineMove 5s infinite linear;
}
@keyframes shineMove { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }

.recog-icon { font-size: 2rem; color: #FFD700; }
.recognition-banner p { margin: 0; font-size: 1.15rem; font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .profile-split { flex-direction: column; }
    .profile-img-col { max-width: 500px; margin-bottom: 40px; }
    .exp-badge { right: 0; bottom: -20px; }
    .profile-header h2 { font-size: 2.5rem; text-align: center; }
}
@media (max-width: 767px) {
    .why-profile-section { padding: 80px 10px; }
    .proof-points-list { grid-template-columns: 1fr; gap: 20px; }
    .recognition-banner { flex-direction: column; text-align: center; padding: 30px; }
    .profile-header h2 { font-size: 2.2rem; }
}








.dark-journey-section {
    padding: 120px 0;
    background-color: #220229; 
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    z-index: 1;
}

.dark-journey-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(214, 51, 132, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 51, 132, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: -1; opacity: 0.7;
}

.dj-header { max-width: 800px; margin: 0 auto 70px auto; text-align: center; }
.dj-title {
    font-size: 2.5rem; font-weight: 600; margin-bottom: 20px;
    background: linear-gradient(to right, #c53fd9, #5f066c, #c53fd9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.diagnostic-split {
    display: flex; align-items: flex-start; gap: 60px; margin-bottom: 150px;
}

.diag-timeline-col { flex: 1; position: relative; padding-left: 30px; }

.diag-timeline-col::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, #3C0145, #1E1E77, transparent);
    box-shadow: 0 0 15px rgba(214, 51, 132, 0.5);
}

.timeline-node {
    position: relative; margin-bottom: 50px;
}

.node-point {
    position: absolute; left: -38px; top: 0;
    width: 20px; height: 20px; background: #d63384;
    border-radius: 50%; border: 3px solid #0F0518;
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.8);
}

.node-content {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    padding: 25px; border-radius: 16px;
    backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.timeline-node:hover .node-content {
    background: rgba(255,255,255,0.07); border-color: rgba(214, 51, 132, 0.4);
    transform: translateX(10px);
}

.node-content h3 { margin: 0 0 10px 0; font-size: 1.3rem; color: #ff80ab; }
.node-content p { margin: 0; font-size: 0.95rem; color: #aaa; line-height: 1.6; }

.tech-pills-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.tech-pill {
    font-size: 0.8rem; font-weight: 700; color: #fff;
    padding: 6px 15px; border-radius: 30px;
    background: rgba(30, 30, 119, 0.3); border: 1px solid #1E1E77;
    box-shadow: 0 0 10px rgba(30, 30, 119, 0.2);
}

.diag-img-col { flex: 0.9; position: relative; }
.holo-frame {
    padding: 5px; border-radius: 24px;
    background: linear-gradient(135deg, #d63384, #1E1E77); 
    box-shadow: 0 20px 60px rgba(214, 51, 132, 0.2);
    animation: borderPulse 4s infinite alternate;
}
@keyframes borderPulse { 0% { opacity: 0.8; } 100% { opacity: 1; box-shadow: 0 20px 80px rgba(214, 51, 132, 0.4); } }

.holo-img-inner {
    background: #000; border-radius: 20px; overflow: hidden;
    position: relative;
}
.holo-img-inner img { width: 100%; height: auto; display: block; opacity: 0.9; mix-blend-mode: screen; }
.holo-img-inner::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.05) 3px);
    pointer-events: none;
}


.surgery-hub-container { position: relative; }
.hub-header { text-align: center; margin-bottom: 60px; }
.hub-header h2 { font-size: 2.5rem; color: #fff; }

.hub-grid {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 1.5fr) 1fr;
    gap: 30px; align-items: center;
}

.hub-center-img { position: relative; z-index: 2; }
.center-img-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: #00c6ff; filter: blur(100px); opacity: 0.2; z-index: -1;
}
.center-img-frame {
    border-radius: 50%; 
    overflow: hidden; border: 4px solid rgba(128, 3, 134, 0.3);
    box-shadow: 0 0 50px rgba(97, 2, 138, 0.1);
    aspect-ratio: 1 / 1; 
}
.center-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.hub-cards-col { display: flex; flex-direction: column; gap: 30px; }

.hud-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px; border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 20px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}

.hud-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}
.hud-card:hover::before { left: 100%; }

.hud-card:hover {
    background: rgba(255,255,255,0.07); transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-color: rgba(0, 198, 255, 0.4);
}

.hud-icon {
    font-size: 2rem; color: #202fd0; 
    text-shadow: 0 0 15px oklab(40.266999999999996% 0.10899 -0.17217 / 0.5);
}
.hud-text h4 { margin: 0 0 5px 0; font-size: 1.2rem; color: #fff; }
.hud-text p { margin: 0; font-size: 0.9rem; color: #aaa; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .diagnostic-split { flex-direction: column-reverse; gap: 40px; }
    .diag-img-col { max-width: 500px; margin: 0 auto; }
    .hub-grid { grid-template-columns: 1fr;  max-width: 600px; margin: 0 auto; }
    .hub-center-img { order: -1; margin-bottom: 30px; } 
    .hub-cards-col { flex-direction: row; flex-wrap: wrap; } 
    .hud-card { flex: 1 1 45%; } 
    .center-img-frame { border-radius: 24px; aspect-ratio: auto; height: 300px; } 
}
@media (max-width: 767px) {
    .dj-title { font-size: 2.2rem; }
    .diag-timeline-col { padding-left: 20px; }
    .node-point { left: -29px; width: 16px; height: 16px; }
    .hud-card { flex: 1 1 100%; } 
}












.recovery-section {
    padding: 120px 0;
    background-color: #FDFBFF; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
    position: relative;
    overflow: hidden;
}

.rec-blob {
    position: absolute; top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(60, 1, 69, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.rec-container { position: relative; z-index: 2; }

.rec-header {
    text-align: center; max-width: 800px; margin: 0 auto 70px auto;
}
.rec-title {
    font-size: 2.5rem; font-weight: 600; color: #3C0145; margin-bottom: 20px;
}
.rec-lead { font-size: 1.1rem; color: #666; }

.rec-split {
    display: flex; align-items: center; gap: 70px; margin-bottom: 100px;
}

.rec-img-col {
    flex: 1;
    position: relative;
    height: 600px; 
}

.rec-img-main {
    position: absolute; top: 0; left: 0;
    width: 85%; height: 85%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(60, 1, 69, 0.15);
}
.rec-img-main img { width: 100%; height: 100%; object-fit: cover; }

.rec-img-float {
    position: absolute; bottom: 0; right: 0;
    width: 50%; height: 45%;
    border-radius: 24px;
    overflow: hidden;
    border: 5px solid #FDFBFF; 
    box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
}
.rec-img-float img { width: 100%; height: 100%; object-fit: cover; }

.rec-content-col { flex: 1; }

.recovery-step-list {
    display: flex; flex-direction: column; gap: 30px;
}

.rec-step-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 0px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(60, 1, 69, 0.05);
    display: flex; gap: 20px;
    transition: transform 0.3s ease;
}
.rec-step-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(60, 1, 69, 0.1); }

.rs-icon {
    width: 50px; height: 50px;
    background: #F4F0F6; color: #3C0145;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.rs-text h3 { margin: 0 0 8px 0; font-size: 1.2rem; font-weight: 700; color: #3C0145; }
.rs-text p { margin: 0; font-size: 0.95rem; color: #3C0145; line-height: 1.5; }
.rs-text ul { margin: 8px 0 0 0; padding-left: 20px; color: #3C0145; font-size: 0.9rem; }

.warning-zone {
    background: #F8F9FA;
    border-left: 6px solid #3C0145;
    border-radius: 0px;
    padding: 50px;
    position: relative;
}

.warning-header {
    display: flex; align-items: center; gap: 15px; margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
    padding-bottom: 20px;
}
.warning-icon-lg { font-size: 2rem; color: #3C0145; animation: pulseRed 2s infinite; }
.warning-header h3 { margin: 0; font-size: 1.8rem; color: #3C0145; }

@keyframes pulseRed { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.warning-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}

.warning-item {
    text-align: center;
    background: #fff;
    padding: 20px 10px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.05);
    transition: all 0.3s ease;
}
/* .warning-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(163, 11, 183, 0.15); } */

.w-icon {
    font-size: 1.8rem; color: #3C0145; margin-bottom: 10px;
}
.warning-item p {
    margin: 0; font-weight: 700; color: #3C0145; font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .rec-split { flex-direction: column; }
    .rec-img-col { width: 100%; height: 400px; max-width: 600px; }
    .warning-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .recovery-section { padding: 60px 0; }
    .rec-title { font-size: 2.2rem; }
    .warning-header { flex-direction: column; text-align: center; }
    .warning-grid { grid-template-columns: repeat(2, 1fr); }
    .rec-img-float { width: 45%; height: 50%; }
}























.gb-dark-section {
    padding: 100px 10px;
    background-color: #3C0145; 
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.gb-dark-section::before {
    content: ''; position: absolute; top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30, 30, 119, 0.3) 0%, transparent 70%);
    filter: blur(80px); z-index: 0;
}

.gb-container { position: relative; z-index: 2; }

.gb-definition-split {
    display: flex; align-items: center; gap: 60px;
    margin-bottom: 80px;
}

.gb-text-col { flex: 1; }
.gb-img-col { flex: 0.9; }

.gb-title {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 25px;
    color: #fff;
}
.gb-highlight { color: #d63384;  }

.gb-desc {
    font-size: 1.05rem; line-height: 1.7; color: #fff; margin-bottom: 20px;
}
.gb-desc strong { color: #fff; }

.gb-img-frame {
    border-radius: 0px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.gb-img-frame img { width: 100%; height: auto; display: block; opacity: 0.9; }

.gb-symptoms-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0px;
    padding: 50px;
}

.gb-symp-header { text-align: center; margin-bottom: 40px; }
.gb-symp-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }

.gb-symp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.symp-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

/* .symp-card:hover {
    background: rgba(214, 51, 132, 0.1); 
    transform: translateY(-5px);
} */

.symp-icon {
    font-size: 2rem; color: #d63384; margin-bottom: 15px;
}
.symp-card h4 {
    margin: 0 0 10px 0; font-size: 1.1rem; color: #fff;
}
.symp-card p {
    margin: 0; font-size: 0.9rem; color: #fff; line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .gb-definition-split { flex-direction: column; }
    .gb-img-col { width: 100%; max-width: 600px; }
    .gb-symp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .gb-dark-section { padding: 60px 10px; }
    .gb-title { font-size: 2.2rem; }
    .gb-symptoms-wrapper { padding: 30px 20px; }
    .gb-symp-grid { grid-template-columns: 1fr; }
}
























.risk-section {
    padding: 100px 0;
    background-color: #F8F9FA; 
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3C0145;
}

.risk-container { position: relative; z-index: 2; }

.risk-header {
    text-align: center; max-width: 800px; margin: 0 auto 60px auto;
}
.risk-title {
    font-size: 2.8rem; font-weight: 800; color: #3C0145; margin-bottom: 20px;
}
.risk-lead {
    font-size: 1.1rem; color: #3C0145;
}

.risk-split {
    display: flex; align-items: center; gap: 60px;
}

.risk-img-col {
    flex: 0.8;
    position: relative;
}
.risk-img-frame {
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 30, 119, 0.15);
    position: relative;
}
.risk-img-frame::before {
    content: ''; position: absolute; inset: 0;
    border: 4px solid rgba(255,255,255,0.2);
    border-radius: 24px; pointer-events: none; z-index: 2;
}
.risk-img-frame img { width: 100%; height: auto; display: block; }

.risk-content-col { flex: 1.2; }

.risk-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
}

.risk-card {
    background: #fff;
    padding: 25px;
    border-radius: px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
    align-items: flex-start;
}

/* .risk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 30, 119, 0.1);
    border-color: rgba(30, 30, 119, 0.1);
} */

.r-icon {
    width: 50px; height: 50px;
    background: #F4F0F6; 
    color: #3C0145;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* .risk-card:hover .r-icon {
    background: #3C0145; color: #fff;
} */

.risk-card h4 {
    font-size: 1.15rem; font-weight: 700; color: #3C0145; margin-bottom: 10px; line-height: 1.3;
}

.risk-tag {
    margin-top: auto;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 5px 10px; border-radius: 6px;
    background: rgba(30, 30, 119, 0.05); color: #1E1E77;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .risk-split { flex-direction: column; }
    .risk-img-col { width: 100%; max-width: 500px; }
    .risk-title { font-size: 2.4rem; }
}
@media (max-width: 767px) {
    .risk-section { padding: 60px 10px; }
    .risk-grid { grid-template-columns: 1fr; }
}






















.surgery-editorial-section {
    padding: 120px 0;
    background-color: #3C0145; 
    /* background-image: linear-gradient(135deg, #1a0520 0%, #2d0a2e 100%); */
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.luxury-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.glow-top-right { top: -20%; right: -10%; }
.glow-bottom-left { bottom: -20%; left: -10%; background: radial-gradient(circle, rgba(60, 1, 69, 0.3) 0%, transparent 70%); }

.se-container { position: relative; z-index: 2; }

.se-header { max-width: 800px; margin-bottom: 80px; }
.se-subtitle { 
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.6rem; 
    color: #d63384; font-weight: 800; margin-bottom: 15px; display: block;
}
.se-title { font-size: 2.8rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.se-lead { font-size: 1.15rem; color: #fff; max-width: 600px; }

.stages-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-bottom: 120px;
}

.luxury-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-top-color: #d63384;
}

.watermark-num {
    position: absolute; top: 10px; right: 20px;
    font-size: 5rem; font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.4s ease;
}
.luxury-card:hover .watermark-num { color: rgba(214, 51, 132, 0.1); }

.lc-content { position: relative; z-index: 2; }
.lc-content h4 { font-size: 1.4rem; margin-bottom: 15px; color: #fff; }
.lc-content p { font-size: 1rem; color: #bcaaa4; line-height: 1.6; }

.feature-split {
    display: flex; align-items: center; gap: 80px;
}

.se-img-col { flex: 1; position: relative; }

.se-img-mask {
    border-radius: 0px; 
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
    position: relative;
}
.se-img-mask img { width: 100%; height: auto; display: block; opacity: 0.9; }

.se-img-col::before {
    content: ''; position: absolute; top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 1px solid rgba(214, 51, 132, 0.3);
    border-radius: 0px;
    z-index: -1;
}

.se-text-col { flex: 1; }

.info-item { margin-bottom: 40px; }
.info-item:last-child { margin-bottom: 0; }

.info-icon {
    font-size: 1.8rem; color: #d63384; margin-bottom: 15px;
}
.info-item h3 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.info-item p { font-size: 1.05rem; color: #fff; line-height: 1.6; }

.se-link {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 20px;
    color: #fff; font-weight: 700; text-decoration: none;
    border-bottom: 2px solid #d63384; padding-bottom: 5px;
    transition: gap 0.3s ease;
}
.se-link:hover { gap: 15px; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .stages-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 80px; }
    .feature-split { flex-direction: column; gap: 50px; }
    .se-title { font-size: 2.5rem; }
}
@media (max-width: 767px) {
    .surgery-editorial-section { padding: 80px 10px; }
    .se-title { font-size: 2.2rem; }
    .se-img-mask { border-radius: 0px; }
    .se-img-col::before { border-radius: 0px; }
}





























.premium-surgery-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8fcfd, #eef2f3);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.surgery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 3rem;
    color: #3C0145; 
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -1px;
}

.sub-title {
    color: #3C0145;
    font-size: 1.2rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

.title-bar {
    width: 80px;
    height: 4px;
    background: #a111b7; 
    margin: 20px auto 0;
    border-radius: 2px;
}

.surgery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.cool-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border-bottom: 5px solid transparent;
}

.cool-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,60,100,0.15);
    border-bottom: 5px solid #970fac; 
}

.card-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cool-card:hover .card-image-wrapper img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 44, 76, 0.6), transparent);
    opacity: 0.6;
}

.card-details {
    padding: 30px;
    position: relative;
}

.card-icon {
    position: absolute;
    top: -25px;
    right: 30px;
    background: #3C0145;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(197, 7, 201, 0.4);
    z-index: 2;
}

.cool-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #3C0145;
}

.medical-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3C0145;
    background: rgba(0, 188, 212, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cool-card p {
    color: #3C0145;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .surgery-grid { grid-template-columns: 1fr; } 
}





















.doctor-expertise-section {
    padding: 100px 20px;
    background-color: #ffffff; 
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden; 
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    gap: 60px; 
}

.expertise-visual {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(230, 240, 250, 1); 
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border-left: 5px solid #00d4ff; 
}

.badge-icon {
    color: #ffb400; 
    font-size: 1.5rem;
}

.badge-text {
    color: #0a2540;
    font-weight: 700;
    font-size: 0.9rem;
}

.expertise-content {
    flex: 1;
}

.small-heading {
    color: #00d4ff; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    color: #0a2540; 
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.highlight {
    color: #0077b6; 
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #f8fcfd;
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(10px); 
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(10, 37, 64, 0.05); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0a2540;
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    background: #00d4ff;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.text-box h3 {
    font-size: 1.2rem;
    color: #0a2540;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.text-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .expertise-container {
        flex-direction: column; 
    }

    .expertise-visual {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .floating-badge {
        right: 10px; 
    }

    .main-heading {
        font-size: 2rem;
    }
}




























.dark-medical-section {
    padding: 100px 20px;
    background-color: #3C0145; 
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 20%);
    color: #3C0145;
    /* font-family: 'Segoe UI', Roboto, sans-serif; */
}

.dark-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dark-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.dark-subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.dark-text {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-name { color: #b92bce; font-weight: 700; }

.diagnosis-header { text-align: center; }

.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.glass-card {
    position: relative;
    height: auto; 
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgb(24, 24, 72);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(73, 3, 72, 0.3);
}

/* .glass-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
} */

.card-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.card-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; 
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background: linear-gradient(to top, #081b29 20%, rgba(8, 27, 41, 0.4) 80%); */
}

.glass-card:hover .card-bg-image img {
    opacity: 0.3;
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.glow-icon {
    color: #a71ebc;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.glass-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.glass-card p { font-size: 0.9rem; color: #fff; margin: 0; }

.treatment-note {
    text-align: center;
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    border-radius: 0px;
    color: #fff;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
}
.note-label { color: #aa20c0; font-weight: 700; ; }

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(216, 70, 221, 0.1), transparent);
    margin: 60px 0;
}

.benefits-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefits-content { flex: 3; }
.cost-card-wrapper { flex: 2; }

.neon-list { list-style: none; padding: 0; }
.neon-list li {
    display: flex; align-items: flex-start;
    gap: 15px; margin-bottom: 20px; color: #fff;
}
.check-icon {
    background: #890a9d; color: #fff;
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; flex-shrink: 0; margin-top: 2px;
}
.neon-list strong { color: #fff; display: block; margin-bottom: 4px; }

.cost-card {
    background: linear-gradient(135deg, #720b82 , #5d1568);
    border: 1px solid #1A237E;
    padding: 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cost-label {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1); color: #fff;
    font-size: 0.8rem; 
    text-transform: uppercase;
    padding: 5px 10px; 
    border-radius: 0px; 
    margin-bottom: 15px;
    font-weight: 700;
}

.cost-amount { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.currency { font-size: 1.2rem; font-weight: 400; color: #fff; vertical-align: middle; }

.cost-disclaimer { font-size: 0.85rem; color: #fff; margin-bottom: 20px; }

.quote-btn {
    display: inline-block;
    background: #622388;
     color: #fff;
    text-decoration: none; 
    font-weight: 700;
    padding: 12px 25px;
     border-radius: 50px;
    transition: all 0.3s;
}

.quote-btn:hover { background: #fff; color: #622388; transform: scale(1.05); }

/* Mobile */
@media (max-width: 900px) {
    .benefits-layout { flex-direction: column; }
    .cost-card-wrapper { width: 100%; }
}















.spleen-editorial-section {
    padding: 100px 20px;
    background-color: #3C0145; 
    color: #fff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.editorial-container {
    max-width: 1100px;
    margin: 0 auto;
}

.editorial-header {
    text-align: center;
    margin-bottom: 80px;
}

.editorial-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.highlight-text {
    color: #1A237E; 
    font-weight: 300;
}

.editorial-subtitle {
    color: #8da2b5;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.editorial-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; 
}

.editorial-row.reverse-layout {
    flex-direction: row-reverse;
}

.editorial-image {
    flex: 1;
    position: relative;
    border-radius: 0px;
}

.editorial-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

/* Cool Hover Zoom */
/* .editorial-row:hover .editorial-image img {
    transform: scale(1.02);
} */

/* The Glowing Box Behind the Image */
/* .image-accent {
    position: absolute;
    top: 20px;
    left: 20px; 
    width: 100%;
    height: 100%;
    border: 2px solid #de4ef4;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.5s ease;
}


.editorial-row:hover .image-accent {
    top: -10px;
    left: -10px;
    background: rgba(0, 212, 255, 0.05);
} */

/* Flip accent for reverse layout */
.reverse-layout .image-accent {
    left: auto; 
    right: 20px;
}
.reverse-layout:hover .image-accent {
    right: -10px;
}

.editorial-content {
    flex: 1;
    position: relative;
}

.number-watermark {
    position: absolute;
    top: -60px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.10); 
    z-index: 0;
    line-height: 1;
}

.editorial-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.editorial-content p {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.editorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.editorial-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #3C0145;
}

.editorial-list li::before {
    content: '•';
    color: #b93acc;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .editorial-row {
        flex-direction: column; 
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .editorial-row.reverse-layout {
        flex-direction: column; 
    }

    .editorial-image {
        width: 100%;
    }

    .image-accent {
        display: none; 
    }

    .editorial-title {
        font-size: 2.2rem;
    }
}


























.wide-stack-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.wide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.wide-header {
    text-align: center;
    margin-bottom: 80px;
}

.wide-title {
    font-size: 2.8rem;
    color: #3C0145;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.wide-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px; 
}

.wide-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 0px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease;
}

.wide-card:hover {
    transform: translateY(-5px);
}

.wide-card.reverse {
    flex-direction: row-reverse;
}

.wide-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.reverse .wide-content {
    padding-right: 0;
    padding-left: 40px;
}

.card-number {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 6rem;
    font-weight: 900;
    color: #f0f2f5; 
    z-index: -1;
    line-height: 1;
}

.wide-content h3 {
    font-size: 1.8rem;
    color: #3C0145;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.medical-term {
    display: block;
    color: #9a11b0; 
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.wide-content p {
    color: #3C0145;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.tags-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.condition-tag {
    background: #e06cf1;
    color: #3C0145;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}  

.wide-image {
    flex: 0.8; 
    position: relative;
}

.wide-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
    /* box-shadow: 20px 20px 0 #ba22d1;  */
    transition: all 0.3s ease;
}

/* .reverse .wide-image img {
    box-shadow: -20px 20px 0 #ba22d1; 
} */

/* Hover Effect on Image */
/* .wide-card:hover .wide-image img {
    transform: scale(1.02);
    box-shadow: 25px 25px 0 #3C0145; 
} */

/* .reverse:hover .wide-image img {
    box-shadow: -25px 25px 0 #3C0145;
} */

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .wide-card {
        flex-direction: column-reverse; 
        padding: 30px;
        text-align: center;
    }

    .wide-card.reverse {
        flex-direction: column-reverse;
    }

    .wide-content {
        padding: 0;
        margin-top: 30px;
    }

    .reverse .wide-content {
        padding: 0;
    }

    .card-number {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    .wide-image {
        width: 100%;
    }

    .wide-image img {
        height: 250px;
        box-shadow: 10px 10px 0 #00d4ff; 
    }
    
    .reverse .wide-image img {
        box-shadow: 10px 10px 0 #00d4ff;
    }
}






























.spleen-types-dark {
    padding: 100px 20px;
    background-color: #3C0145; 
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}
.types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.types-header {
    text-align: center;
    margin-bottom: 60px;
}

.types-title {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    /* text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); */
}
/* 
.neon-divider {
    width: 80px;
    height: 4px;
    background: #8f0aa3 ;
    margin: 0 auto;
    box-shadow: 0 0 15px #00d4ff;
    border-radius: 2px;
} */

/* --- EXPANDING PANELS WRAPPER --- */
.panels-wrapper {
    display: flex;
    height: 500px; 
    gap: 15px;
}

.surgery-panel {
    position: relative;
    flex: 1; 
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.surgery-panel:hover {
    flex: 3; 
    border-color: #b21dc9;
}

.panel-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.surgery-panel:hover .panel-bg {
    transform: scale(1.1);
}

.panel-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.10) 10%, rgba(0,0,0,0.10) 100%);
    z-index: 1;
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: white;
}

.panel-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(164, 14, 188, 0.5);
    position: absolute;
    top: -50px;
    left: 30px;
    transition: color 0.3s;
}

.surgery-panel:hover .panel-number {
    color: rgba(164, 14, 188, 0.5);
}

.panel-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    white-space: nowrap; 
}

.surgery-tag {
    display: inline-block;
    background: #b00aca;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    opacity: 0; 
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.panel-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cfd8dc;
    margin: 0;
    opacity: 0; 
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
    max-width: 400px;
}

.surgery-panel:hover .surgery-tag,
.surgery-panel:hover .panel-details p {
    opacity: 1;
    transform: translateY(0);
}

.surgery-panel:hover .panel-heading {
    color: #fff;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .panels-wrapper {
        flex-direction: column; 
        height: auto;
    }

    .surgery-panel {
        height: 250px; 
        flex: none; 
    }
    
    .surgery-panel:hover {
        flex: none;
    }

    .surgery-tag, 
    .panel-details p {
        opacity: 1;
        transform: translateY(0);
    }
    
    .panel-heading {
        white-space: normal;
    }
}






































.authority-section {
    padding: 100px 20px;
    background-color: #f8f9fa; 
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
}

.authority-container {
    max-width: 1100px;
    width: 100%;
}

.authority-card {
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    display: flex;
    overflow: hidden;
    min-height: 600px;
}

.authority-visual {
    flex: 0.8; 
    position: relative;
    background: #f0f4f8 ;
}

.authority-visual img {
    max-width: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.verified-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-weight: 700;
    color: #0f2c4c;
    font-size: 0.9rem;
}

.check-mark {
    background: #3C0145;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.authority-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-heading {
    display: block;
    color: #cc46e1;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 2.5rem;
    color: #3C0145;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.intro-text {
    color: #3C0145;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.expertise-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-theme { background: #e3f2fd; color: #1e88e5; }
.red-theme { background: #ffebee; color: #e53935; }
.green-theme { background: #e8f5e9; color: #43a047; }

.text-box h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3C0145;
}

.text-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #3C0145;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .authority-card {
        flex-direction: column; 
    }

    .authority-visual {
        height: 300px; 
        width: 500px;
    }

    .authority-content {
        padding: 40px 25px;
    }

    .main-heading {
        font-size: 2rem;
    }
}
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-up {
    transform: translateY(30px);
}

.slide-up {
    transform: translateY(50px);
}

.from-left {
    transform: translateX(-50px);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }















.purple-3d-section {
    padding: 100px 20px;
    /* Main Background Color #3C0145 */
    background: radial-gradient(circle at center, #4a0256 0%, #3C0145 100%);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.purple-3d-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
}

.purple-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.purple-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.purple-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.purple-line {
    width: 80px;
    height: 4px;
    background: #d500f9;
    margin: 0 auto 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px #d500f9;
}

.purple-desc {
    color: #fff; 
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-gold {
    color: #d631f0;
    font-weight: 700;
}

.purple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.purple-wrapper {
    height: 320px;
}

.purple-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(213, 0, 249, 0.3); 
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    background: rgba(60, 1, 69, 0.8); 
}

/* 3D Tilt on Hover */
/* .purple-wrapper:hover .purple-card {
    transform: rotateX(10deg) rotateY(-5deg) translateZ(20px);
    box-shadow: -10px 20px 30px rgba(60, 1, 69, 0.6);
    border-color: #d500f9;
} */

.purple-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    /* opacity: 0.15; */
    transition: all 0.5s ease;
}

/* .purple-wrapper:hover .purple-bg-img {
    opacity: 0.3;
    transform: scale(1.1);
} */

.purple-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(60, 1, 69, 0.3), rgba(60, 1, 69, 0.9));
}

.purple-icon {
    width: 60px; height: 60px;
    background: rgba(213, 0, 249, 0.15);
    color: #d500f9; 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(213, 0, 249, 0.2);
    transition: all 0.3s ease;
    transform: translateZ(30px); 
}
/* 
.purple-wrapper:hover .purple-icon {
    background: #d500f9;
    color: #fff;
    box-shadow: 0 0 30px rgba(213, 0, 249, 0.6);
} */

.purple-content h3 {
    font-size: 1.3rem; font-weight: 700; margin: 0 0 10px 0;
    color: #fff;
    transform: translateZ(20px);
}

.purple-content p {
    font-size: 0.9rem; line-height: 1.6; margin: 0;
    color: #fff;
    transform: translateZ(20px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .purple-wrapper:hover .purple-card {
        transform: translateY(-10px); 
    }
}

























.prep-section-light {
    padding: 100px 20px;
    background-color: #f9fbfd; 
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.prep-container {
    max-width: 1100px;
    margin: 0 auto;
}

.prep-header-light {
    text-align: center;
    margin-bottom: 70px;
}

.prep-label {
    color: #3C0145; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.prep-title-light {
    font-size: 2.8rem;
    color: #3C0145; 
    font-weight: 800;
    margin: 0 0 20px 0;
}

.purple-divider {
    width: 60px;
    height: 4px;
    background: #3C0145; 
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.prep-desc-light {
    color: #3C0145;
    font-size: 1.1rem;
}

.prep-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prep-step-card {
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.prep-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 1, 69, 0.1); 
    border-color: #3C0145;
}

.step-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prep-step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-number-three {
    position: absolute;
    bottom: -1px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3C0145; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-content {
    padding: 30px 25px;
    flex: 1;
}

.alert-badge {
    display: inline-block;
    background: #ffebee;
    color: #d32f2f; 
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.step-content h3 {
    font-size: 1.35rem;
    color: #3C0145;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.step-content p {
    font-size: 0.95rem;
    color: #3C0145;
    line-height: 1.5;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.step-list li::before {
    content: '›';
    color: #3C0145;
    font-size: 1.5rem;
    line-height: 0.8;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}





.proc-rec-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.proc-container {
    max-width: 1100px;
    margin: 0 auto;
}

.proc-header {
    text-align: center;
    margin-bottom: 60px;
}

.proc-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #3C0145; 
    margin: 0 0 15px 0;
}

.purple-line {
    width: 70px;
    height: 4px;
    background: #3C0145;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.proc-desc {
    color: #666;
    font-size: 1.1rem;
}

.proc-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.proc-col, .rec-col {
    flex: 1;
}

.procedure-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.proc-image {
    position: relative;
    height: 250px;
}

.proc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #3C0145;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(60, 1, 69, 0.4);
}

.proc-content {
    padding: 30px;
}

.proc-content h3 {
    font-size: 1.6rem;
    color: #3C0145;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.proc-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.proc-highlight {
    background: #f3e5f5;
    color: #3C0145;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
}

.recovery-wrapper h3 {
    font-size: 1.8rem;
    color: #3C0145;
    margin: 0 0 30px 0;
    font-weight: 800;
    border-left: 5px solid #3C0145;
    padding-left: 15px;
}

.stay-comparison {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.stay-box {
    flex: 1;
    background: #f9fbfd;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 0px;
    text-align: center;
    transition: transform 0.3s;
}

/* .stay-box:hover {    
    transform: translateY(-5px);
    border-color: #3C0145;
    background: #f3e5f5;
} */

.stay-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.stay-time {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3C0145;
    margin-bottom: 5px;
}

.stay-sub {
    font-size: 0.8rem;
    color: #999;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 20px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 10px;
    bottom: 30px;
    width: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.t-step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.t-icon {
    width: 20px;
    height: 20px;
    background: #3C0145;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; 
    padding: 20px; 
    box-shadow: 0 0 0 5px #fff; 
}

.t-content h4 {
    margin: 0 0 5px 0;
    color: #3C0145;
    font-size: 1.1rem;
    font-weight: 700;
}

.t-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .proc-grid {
        flex-direction: column;
    }
    
    .stay-comparison {
        flex-direction: row; 
    }
}















.ivc-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #3C0145;
    overflow: hidden; 
}

.ivc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ivc-text-col {
    flex: 1;
}

.ivc-label {
    display: inline-block;
    color: #3C0145; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(60, 1, 69, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
}

.ivc-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3C0145;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

/* .purple-bar {
    width: 80px;
    height: 5px;
    background: #3C0145;
    margin-bottom: 30px;
    border-radius: 3px;
} */

.ivc-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3C0145;
    margin-bottom: 15px;
}

/* .ivc-description strong {
    color: #3C0145;
} */

.conditions-intro-box {
    margin-top: 40px;
    background: linear-gradient(135deg, #3C0145, #5e026b); 
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(60, 1, 69, 0.2);
}

.box-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.box-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700; 
}

.box-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.ivc-image-col {
    flex: 1;
    position: relative;
}

.ivc-img-wrapper {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(60, 1, 69, 0.1); 
}

.ivc-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.ivc-img-wrapper:hover img {
    transform: scale(1.1);
}

.floating-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-icon {
    color: #ffd700; 
    font-size: 1.2rem;
}

.info-text {
    color: #3C0145;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .ivc-container {
        flex-direction: column; 
    }

    .ivc-title {
        font-size: 2.2rem;
    }

    .ivc-image-col {
        width: 100%;
        margin-top: 20px;
    }

    .floating-info {
        right: 20px;
        bottom: 20px;
    }
}








    


/* --- SECTION BASE --- */
.cine-ivc-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #3C0145, #3C0145);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    overflow: hidden;
}

.cine-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cine-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.cine-label {
    color: #b39ddb; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.cine-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
}

/* .neon-purple-line {
    width: 80px;
    height: 4px;
    background: #3C0145; 
    margin: 0 auto 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 20px #3C0145; 
} */

.cine-desc {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cine-stack {
    display: flex;
    flex-direction: column;
    gap: 100px; 
}

.cine-card {
    display: flex;
    align-items: center;
    position: relative;
}

.cine-card.reverse {
    flex-direction: row-reverse;
}

.cine-img-box {
    flex: 1.2; 
    position: relative;
    height: 450px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cine-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 1, 13, 0.8), transparent);
}

.reverse .img-overlay {
    background: linear-gradient(to left, rgba(10, 1, 13, 0.8), transparent);
}

.cine-card:hover .cine-img-box img {
    transform: scale(1.05);
}

.cine-txt-box {
    flex: 1;
    background: rgba(60, 1, 69, 0.9); 
    backdrop-filter: blur(10px);
    padding: 50px;
    opacity: 0.9;
    border-radius: 0px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    margin-left: -100px; 
    transition: transform 0.3s ease;
}

.reverse .cine-txt-box {
    margin-left: 0;
    margin-right: -100px; 
}

.cine-card:hover .cine-txt-box {
    transform: translateY(-10px);
    /* border-color: #7c4dff; */
}

.cine-icon {
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
}

.cine-txt-box h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-purple {
    color: #b39ddb;
    font-weight: 400;
}

.cine-txt-box p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .cine-card, .cine-card.reverse {
        flex-direction: column; 
    }

    .cine-img-box {
        width: 100%;
        height: 300px; 
    }

    .cine-txt-box, .reverse .cine-txt-box {
        width: 90%; 
        margin: 0 auto; 
        margin-top: -50px; 
        padding: 30px;
    }

    .cine-title {
        font-size: 2.2rem;
    }
    
    .cine-stack {
        gap: 60px;
    }
}















/* --- SECTION BASE --- */
.special-proc-section {
    padding: 100px 20px;
    background-color: #f9fbfd; 
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.special-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- HEADER --- */
.special-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.special-label {
    display: inline-block;
    color: #3C0145; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(60, 1, 69, 0.05);
    padding: 5px 15px;
    border-radius: 50px;
}

.special-title {
    font-size: 2.8rem;
    color: #3C0145;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.purple-divider {
    width: 60px;
    height: 4px;
    background: #3C0145;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.special-desc {
    font-size: 1.1rem;
    color: #3C0145;
    line-height: 1.6;
}

.proc-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.proc-card {
    display: flex;
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(60, 1, 69, 0.1); 
    border-color: #3C0145;
}

.proc-img {
    flex: 0.8; 
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.proc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proc-card:hover .proc-img img {
    transform: scale(1.05);
}

.proc-content {
    flex: 1.2; 
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proc-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(60, 1, 69, 0.05); 
    line-height: 1;
}

.proc-card:hover .proc-number {
    color: rgba(60, 1, 69, 0.1);
}

.proc-content h3 {
    font-size: 1.5rem;
    color: #3C0145;
    margin: 0 0 15px 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.proc-content p {
    font-size: 1rem;
    color: #3C0145;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.proc-content strong {
    color: #3C0145;
    font-weight: 700;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .proc-card {
        flex-direction: column;
    }

    .proc-img {
        height: 220px;
        flex: none;
    }

    .proc-content {
        padding: 30px 20px;
    }

    .special-title {
        font-size: 2.2rem;
    }
}









.zigzag-section {
    padding: 100px 20px;
    background-color: #3C0145; 
    background-image: radial-gradient(circle, #4a0256 0%, #240029 100%);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    overflow: hidden;
}

.zigzag-container {
    max-width: 1100px;
    margin: 0 auto;
}

.zigzag-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.zigzag-label {
    display: inline-block;
    color: #ffd700; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.zigzag-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.gold-separator {
    width: 100px;
    height: 4px;
    background: #ffd700;
    margin: 0 auto 30px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.zigzag-desc {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; 
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.zigzag-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.zigzag-row:hover .zigzag-image img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #b94dca; 
    border-radius: 0px;
    z-index: -1;
    transition: transform 0.4s ease;
}

.zigzag-row:hover .image-border {
    transform: translate(10px, 10px);
}

.reverse .image-border {
    left: auto; right: 20px; 
}
.reverse:hover .image-border {
    transform: translate(-10px, 10px);
}

.zigzag-content {
    flex: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(211, 54, 211, 0.1);
    color: #ce4de1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(218, 54, 236, 0.3);
}

.zigzag-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
}

.zigzag-content p {
    font-size: 1.05rem;
    color: #fff; 
    line-height: 1.7;
    margin: 0;
}

.zigzag-list {
    margin: 20px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.zigzag-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.zigzag-list li::before {
    content: '★';
    color: #ffd700;
    position: absolute;
    left: -20px;
    font-size: 0.9rem;
    top: 2px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .zigzag-row {
        flex-direction: column; 
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .zigzag-row.reverse {
        flex-direction: column; 
    }

    .zigzag-title {
        font-size: 2.2rem;
    }

    .image-border {
        display: none; 
    }
}






/* --- SECTION BASE --- */
.journey-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.journey-container {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-label {
    color: #3C0145; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.journey-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #3C0145;
}

.purple-dot {
    width: 10px;
    height: 10px;
    background: #3C0145;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    position: relative;
}

.purple-dot::before, .purple-dot::after {
    content: '';
    position: absolute;
    top: 4px;
    width: 50px;
    height: 2px;
    background: #e2e8f0;
}
.purple-dot::before { right: 20px; }
.purple-dot::after { left: 20px; }

.journey-desc {
    font-size: 1.1rem;
    color: #3C0145;
}

.journey-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.journey-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: #f8fafc; 
    border-radius: 0px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.journey-row:hover {
    transform: translateY(-5px);
    border-color: #3C0145;
    box-shadow: 0 20px 40px rgba(60, 1, 69, 0.08);
}


.journey-row.reverse {
    flex-direction: row-reverse;
    background: #fff; 
    border-color: #f1f5f9;
}


.journey-connector {
    height: 40px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #3C0145 0, #3C0145 5px, transparent 5px, transparent 10px);
    margin: 0 auto; 
}

.journey-content {
    flex: 1;
    position: relative;
}

.step-marker {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(60, 1, 69, 0.05); 
    position: absolute;
    top: -40px;
    left: 0;
    line-height: 1;
    z-index: 0;
}

.journey-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3C0145;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.journey-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3C0145;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.journey-list {
    margin: 0;
    padding-left: 20px;
    color: #3C0145;
    position: relative;
    z-index: 1;
}

.journey-list li {
    margin-bottom: 8px;
    list-style: disc;
}

.journey-note {
    background: #fdf2ff; 
    padding: 15px;
    border-radius: 10px;
    color: #3C0145;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.journey-note .icon {
    background: #3C0145;
    color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.journey-image {
    flex: 0.8;
    height: 250px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 15px 15px 0 rgba(60, 1, 69, 0.1); 
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-row:hover .journey-image img {
    transform: scale(1.05);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .journey-row {
        flex-direction: column-reverse; 
        gap: 20px;
        text-align: left;
        padding: 30px 20px;
    }

    .journey-row.reverse {
        flex-direction: column-reverse;
    }

    .journey-image {
        width: 100%;
        height: 200px;
        box-shadow: none; 
    }

    .step-marker {
        top: -30px;
        font-size: 3rem;
    }
}