/* --- Button Flex & Icon Alignments --- */
.hero-cta-wrapper .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.cta-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-cta-wrapper .btn:hover .cta-icon {
    transform: scale(1.1);
}

/* --- Centered Premium Hero Wrapper --- */
.premium-breadcrumb-hero {
    background: url('../img/home-3/service/service-1.jpg') center center / cover no-repeat;
    min-height: 320px;
    /* Gives a visually balanced short-height feel */
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 13, 66, 0.95) 0%, rgba(26, 22, 84, 0.88) 100%);
    z-index: 1;
}

/* --- Typography System --- */
.hero-mini-badge {
    background: rgba(198, 8, 93, 0.15);
    color: #ffb1dd;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid rgba(198, 8, 93, 0.3);
}

.main-breadcrumb-heading {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.accent-text-pink {
    color: #ffb1dd;
}

.hero-desc {
    color: #d1cfe2;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CTA Buttons Look & Feel --- */
.btn-submit-pink {
    background-color: #c6085d;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 1px solid #c6085d;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-submit-pink:hover {
    background-color: #a8054d;
    border-color: #a8054d;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(198, 8, 93, 0.35);
    transform: translateY(-1px);
}

.hero-outline-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-outline-btn:hover {
    background-color: #ffffff;
    color: #100d42 !important;
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* --- Media Queries For Perfect Responsiveness --- */
@media (max-width: 991px) {
    .premium-breadcrumb-hero {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .main-breadcrumb-heading {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .premium-breadcrumb-hero {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .main-breadcrumb-heading {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    /* Stacks buttons perfectly on compact mobile views */
    .hero-cta-wrapper {
        flex-direction: column !important;
    }


}

.faq-section {
    background-color: #ffffff;
    /* Solid Premium White Background */
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.faq-section.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* --- Top Header styling --- */
.faq-badge {
    display: inline-block;
    background: rgba(16, 13, 66, 0.05);
    color: #100d42;
    /* Deep Indigo */
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
}

.faq-title {
    color: #100d42;
    /* Deep Indigo Header */
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    max-width: 620px;
    color: #535171;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Premium Accordion styling --- */
.custom-faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(16, 13, 66, 0.08);
    border-radius: 14px !important;
    /* Premium soft curves */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 13, 66, 0.02);
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
    border-color: rgba(198, 8, 93, 0.25);
    /* Soft Magenta Hover */
    box-shadow: 0 10px 25px rgba(16, 13, 66, 0.04);
}

.custom-faq-accordion .accordion-button {
    background-color: #ffffff;
    color: #100d42;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 13px 10px;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    position: relative;
}

/* Active State Accordion Header */
.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #c6085d;
    /* Changes to Magenta on open */
    background-color: rgba(198, 8, 93, 0.02);
    /* Very soft pink tint inside header */
}

/* --- Clean Plus (+) & Minus (-) Indicator Engine --- */
.custom-faq-accordion .accordion-button::after {
    background-image: none !important;
    /* Removes Bootstrap Default Arrow */
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: #100d42;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

/* State change to Minus (-) when Expanded */
.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: #c6085d;
    font-size: 22px;
}

/* Accordion Inner Content */
.custom-faq-accordion .accordion-body {
    padding: 0px 24px 20px 24px;
    color: #535171;
    font-size: 0.9rem;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Active State Content Background adjustment */
.custom-faq-accordion .accordion-collapse.show .accordion-body {
    background-color: rgba(198, 8, 93, 0.02);
    /* Continuation of soft pink tint inside content */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 767px) {
    .faq-section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .faq-title {
        font-size: 26px;
    }

    .custom-faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 10px 13px;
    }

    .custom-faq-accordion .accordion-body {
        padding: 0px 20px 20px 20px;
        font-size: 0.88rem;
    }
}

.appointment-map-section {
    background-color: #f8fafc;
    /* Premium Light Grey/Blue Base Grid */
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.appointment-map-section.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* --- Left Column Card Structure --- */
.doctor-details-card {
    background: #ffffff;
    border: 1px solid rgba(16, 13, 66, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(16, 13, 66, 0.03);
}

.appointment-badge {
    background: rgba(198, 8, 93, 0.06);
    color: #c6085d;
    /* Brand Magenta Color */
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
}

.doctor-name {
    color: #100d42;
    /* Signature Deep Indigo */
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.doctor-designation {
    color: #c6085d;
    /* Brand Accent tone */
    font-size: 15px;
    font-weight: 600;
}

/* Hospital Identity block */
.hospital-banner-box {
    background: rgba(16, 13, 66, 0.02);
    border-left: 3px solid #100d42;
    padding: 10px 16px;
    border-radius: 4px 12px 12px 4px;
}

.hospital-name {
    color: #100d42;
    font-size: 16px;
    font-weight: 700;
}

.hospital-sub {
    color: #64748b;
    font-size: 0.8rem;
}

/* --- Info Detail List Engine --- */
.info-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 13, 66, 0.04);
    color: #100d42;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(16, 13, 66, 0.02);
}

.info-text-block {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 2px;
}

.info-value {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.5;
}

.link-hover {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-hover:hover {
    color: #c6085d;
}

/* Bottom CTA Web Trigger */
.visit-website-btn {
    background: linear-gradient(135deg, #100d42, #c6085d);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #100d42;
}

.visit-website-btn:hover {
    background: #c6085d;
    border-color: #c6085d;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(198, 8, 93, 0.25);
    transform: translateY(-1px);
}

/* --- Right Column Map Frame Architecture --- */
.google-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 13, 66, 0.08);
    box-shadow: 0 10px 30px rgba(16, 13, 66, 0.03);
}

.google-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Device Specific Breakpoint Adaptability --- */
@media (max-width: 991px) {
    .doctor-name {
        font-size: 26px;
    }

    .google-map-wrapper iframe {
        min-height: 350px !important;
    }
}

@media (max-width: 575px) {
    .appointment-map-section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .doctor-details-card {
        padding: 20px;
    }

    .doctor-name {
        font-size: 22px;
    }

    .info-value {
        font-size: 0.88rem;
    }
}



.premium-testimonial-section {
    background-color: #eec4d612;
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- Title Styles --- */
.testimonial-badge {
    display: inline-block;
    background: rgba(198, 8, 93, 0.06);
    color: #c6085d;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.testimonial-main-title {
    color: #100d42;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.testimonial-subtitle {
    max-width: 650px;
    color: #535171;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Bento Card Architecture --- */
.bento-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(16, 13, 66, 0.06);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 12px 40px rgba(16, 13, 66, 0.03), 0 2px 8px rgba(16, 13, 66, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-quote {
    color: rgba(198, 8, 93, 0.12);
}

.star-icon {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-feedback {
    color: #100d42;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 400;
}

.card-divider {
    border-top: 1px solid rgba(16, 13, 66, 0.08);
    opacity: 1;
}

/* --- Bio Block --- */
.patient-avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: rgba(198, 8, 93, 0.08);
    color: #c6085d;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(198, 8, 93, 0.15);
}

.patient-name {
    color: #100d42;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.patient-meta {
    color: #8c8aa7;
    font-size: 0.82rem;
    display: block;
}

.bento-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 8, 93, 0.2);
    box-shadow: 0 20px 45px rgba(16, 13, 66, 0.06);
}

/* --- Premium Swiper Pagination Customization --- */
.testimonialSwiper {
    position: relative;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(16, 13, 66, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 5px;
    background: #c6085d !important;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
}

@media (max-width: 991px) {
    .testimonial-main-title {
        font-size: 32px;
    }

    .bento-testimonial-card {
        padding: 28px;
    }
}

.appointment-video-section {
    background-color: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- Premium Compact Form Styling --- */
.appointment-form-card {
    background: #ffffff;
    padding: 30px;
    /* Reduced from 40px for a more compact structural block */
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(16, 13, 66, 0.05), 0 2px 8px rgba(16, 13, 66, 0.02);
    border: 1px solid rgba(16, 13, 66, 0.05);
}

.form-main-title {
    color: #100d42;
    font-size: 26px;
    /* Slightly scaled down */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.form-subtitle {
    color: #535171;
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.form-custom-label {
    color: #100d42;
    font-weight: 600;
    font-size: 0.82rem;
    /* Crisp, slightly smaller layout */
    margin-bottom: 4px;
}

.premium-input {
    border: 1px solid rgba(16, 13, 66, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    /* Reduced internal padding to preserve vertical canvas space */
    font-size: 0.92rem;
    color: #100d42;
    background-color: #fafafb;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: #c6085d;
    box-shadow: 0 0 0 4px rgba(198, 8, 93, 0.08);
    background-color: #ffffff;
    outline: none;
}

.btn-premium-action {
    background: linear-gradient(135deg, #100d42, #c6085d);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    /* Balanced operational space */
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(198, 8, 93, 0.15);
}

.btn-premium-action:hover {
    background-color: #100d42;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 13, 66, 0.2);
}

/* --- Cinema Video System Framework --- */
.video-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(16, 13, 66, 0.08);
    text-decoration: none;
    background-color: #0b092b;
}

.appointment-video-card {
    aspect-ratio: 4 / 3.4;
}

.video-thumbnail-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 9, 43, 0.9) 0%, rgba(11, 9, 43, 0.2) 50%, transparent 100%);
    z-index: 1;
}

/* Cinema Play Action Portal */
.play-button-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    /* Refined down from 80px */
    height: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-svg-holder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulse Wave Animation */
.ripple-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: playPulse 2s infinite linear;
    z-index: 1;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Glassmorphic Description Capsule */
.video-meta-capsule {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 16px 20px;
    border-radius: 16px;
    z-index: 3;
    transition: all 0.4s ease;
}

.meta-tag {
    color: #ffb1dd;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.meta-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* Hover Interaction Matrix */
.video-card:hover img {
    transform: scale(1.06);
}

.video-card:hover .play-svg-holder {
    background: #c6085d;
    border-color: #c6085d;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(198, 8, 93, 0.5);
}

.video-card:hover .video-meta-capsule {
    background: rgba(198, 8, 93, 0.25);
    border-color: rgba(198, 8, 93, 0.3);
}

/* Responsive Adaptive Controls */
@media (max-width: 991px) {
    .appointment-form-card {
        padding: 24px;
    }

    .appointment-video-card {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 767px) {
    .appointment-video-card {
        aspect-ratio: 1 / 1.05;
    }

    .meta-title {
        font-size: 1.05rem;
    }
}

.testimonial-video-section {
    background-color: #ffffff;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(125, 32, 88, 0.06);
    color: #c6085d;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    color: #100d42;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title span {
    color: #c6085d;
}

.section-subtitle {
    max-width: 680px;
    color: #535171;
    font-size: 1rem;
    line-height: 1.6;
}

/* Core Video Base Framework */
.video-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(16, 13, 66, 0.06);
    text-decoration: none;
    background-color: #0b092b;
}

.video-thumbnail-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Perfect Layout Aspect-Ratios for Desktop */
.featured-video-card {
    aspect-ratio: 4 / 5;
}

.small-video-card {
    aspect-ratio: 1 / 0.82;
}

/* Modern Gradient Layer */
.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 9, 43, 0.9) 0%, rgba(11, 9, 43, 0.2) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Cinema Play Portal System */
.play-button-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.play-svg-holder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulse Action Effect Rings */
.ripple-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: playPulse 2s infinite linear;
    z-index: 1;
}

.play-button-portal.mini {
    width: 52px;
    height: 52px;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Glassmorphic Metadata Info Capsule */
.video-meta-capsule {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px 24px;
    border-radius: 16px;
    z-index: 3;
    transition: all 0.4s ease;
}

.video-meta-capsule.mini {
    padding: 12px 16px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    border-radius: 12px;
}

.meta-tag {
    color: #ffb1dd;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.meta-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.video-meta-capsule.mini .meta-title {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hover Interaction Effects */
.video-card:hover img {
    transform: scale(1.06);
}

.video-card:hover .play-svg-holder {
    background: #c6085d;
    border-color: #c6085d;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(198, 8, 93, 0.5);
}

.video-card:hover .video-meta-capsule {
    background: rgba(198, 8, 93, 0.25);
    border-color: rgba(198, 8, 93, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .featured-video-card {
        aspect-ratio: 4 / 3;
    }

    .small-video-card {
        aspect-ratio: 4 / 3;
    }
}

/* Mobile View Height Increase Framework (Targeting Mobile Devices) */
@media (max-width: 767px) {
    .featured-video-card {
        aspect-ratio: 1 / 1.1;
        /* मुख्य बड़े वीडियो की मोबाइल हाइट बढ़ाई गई */
    }

    .small-video-card {
        aspect-ratio: 1 / 1.1;
        /* सभी छोटे बॉक्सेस की मोबाइल हाइट बढ़ाकर परफेक्ट वर्टिकल लुक दिया गया */
    }

    .video-meta-capsule.mini .meta-title {
        font-size: 1.05rem;
        /* स्क्रीन साइज के हिसाब से फॉन्ट बैलेंस */
    }
}

@media (max-width: 575px) {
    .meta-title {
        font-size: 1.15rem;
    }
}

.why-choose-timeline-section {
    background-color: #f8f9fa;
    /* Elegant Soft Light Gray BG */
    font-family: 'Segoe UI', system-ui, sans-serif;
    padding: 80px 0;
}

.section-tagline {
    color: #c6085d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-main-title {
    color: #100d42;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-main-title span {
    color: #c6085d;
}

.section-desc {
    color: #535171;
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.6;
}
@media(max-width: 576px){
    .section-main-title{
        font-size: 28px !important;
    }
}

/* Horizontal Track Overlay Line */
.grid-connecting-line {
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(16, 13, 66, 0.06) 15%, rgba(16, 13, 66, 0.06) 85%, transparent);
    z-index: 0;
}

/* Unique Clean Premium Card Design */
.timeline-feature-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(16, 13, 66, 0.02);
    border: 1px solid rgba(16, 13, 66, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Flex Grouping for Number and Heading Layout */
.card-header-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(198, 8, 93, 0.15);
    background: rgba(198, 8, 93, 0.04);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card-heading {
    color: #100d42;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.card-body-text {
    color: #535171;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Action Links at base */
.card-footer-action {
    margin-top: auto;
}

.action-link-btn {
    color: #100d42;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

/* Bottom Border Indicator Element */
.hover-border-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #c6085d;
    transition: width 0.4s ease;
}

/* Active Hover Transitions */
.timeline-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 13, 66, 0.06);
    border-color: rgba(16, 13, 66, 0.08);
}

.timeline-feature-card:hover .step-number {
    background: #c6085d;
    color: #ffffff;
}

.timeline-feature-card:hover .action-link-btn {
    color: #c6085d;
}

.timeline-feature-card:hover .hover-border-indicator {
    width: 100%;
}

.z-1 {
    z-index: 1;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cancer-pathway-section {
    background-color: #f9f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pathway-main-title {
    color: #100d42;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.pathway-subtitle {
    color: #535171;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pathway-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(16, 13, 66, 0.04);
    border-left: 4px solid #c6085d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(16, 13, 66, 0.08);
}

@media(max-width: 576px){
    .pathway-main-title{
        font-size: 28px !important;
    }
}

/* Flex layout to keep icon and content group perfectly inline */
.pathway-inline-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}

/* Optimized Big Icon Box for 4-column layout */
.pathway-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: rgba(198, 8, 93, 0.08);
    color: #c6085d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pathway-card:hover .pathway-icon-box {
    background-color: #c6085d;
    color: #ffffff;
}

/* Content wrapper that takes up remaining card space */
.pathway-content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.pathway-card-title {
    color: #100d42;
    font-size: 1.15rem;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.pathway-card-text {
    color: #535171;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.pathway-read-more {
    color: #c6085d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.pathway-read-more span {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.pathway-read-more:hover {
    color: #100d42;
}

.pathway-read-more:hover span {
    transform: translateX(4px);
}

/* Smooth fallback for smaller displays */
@media (max-width: 425px) {
    .pathway-inline-wrapper {
        flex-direction: inline;
        align-items: center;
    }
}


.image-gallery-section {
    padding: 15px 0;
}

/* Premium Image Card Frame */
.premium-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    /* Premium Minimalist Shadow */
    box-shadow: 0 10px 30px rgba(16, 13, 66, 0.05), 
                0 1px 3px rgba(16, 13, 66, 0.02);
    /* Soft Border for Glassmorphic Depth */
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fluid Resizing Layout */
.custom-gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Soft Hover Overlay Effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 13, 66, 0.04), rgba(198, 8, 93, 0.02));
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Hover Actions */
.premium-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 13, 66, 0.08), 
                0 1px 5px rgba(198, 8, 93, 0.04);
}

.premium-image-card:hover .custom-gallery-img {
    transform: scale(1.03); /* Subtle internal zoom */
}

/* Responsive Handling for Mobile Screens */
@media (max-width: 767px) {
    .premium-image-card {
        border-radius: 12px;
        max-width: 90%;
        margin: 0 auto;
    }
}


.robotic-section {
    background: #f7f8fc;
    position: relative;
}


@media (min-width: 992px) {
    .sticky-column {
        position: -webkit-sticky;
        position: sticky;
        top: 110px;
        height: max-content;
    }
    .content-scroll {
        padding-right: 15px;
    }
}

/* Content Box Styling */
.content-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,.03);
    margin-bottom: 24px;
}

.small-title {
    color: #c6085d;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.section-title {
    color: #100d42;
    font-size: 1.75rem; 
    font-weight: 800;
    line-height: 1.25;
}

.sub-title {
    font-size: 1.25rem; 
    color: #100d42;
    font-weight: 700;
}

.main-text {
    font-size: 16px; 
    line-height: 1.55;
    color: #555555;
}

/* Info Cards Components */
.info-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center; 
    gap: 12px;
    margin-top: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.02);
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: #c6085d;
    box-shadow: 0 10px 20px rgba(198, 8, 93, 0.08);
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: #c6085d;
    box-shadow: 0 10px 20px rgba(198, 8, 93, 0.08);
}

.icon-box {
    width: 46px; 
    height: 46px;
    background: linear-gradient(135deg, #100d42, #c6085d);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.card-body-content h4 {
    color: #100d42;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 3px;
}

.card-body-content p {
    color: #555555;
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

/* Appointment Form UI Layout */
.appointment-form {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.form-header {
    background: linear-gradient(135deg, #100d42, #c6085d);
    padding: 14px 18px;
    text-align: center;
}

.form-header h3 {
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.appointment-form label {
    color: #100d42;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.82rem;
}

/* Inside Icon Input Wrapper */
.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: #9ea3ba;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.appointment-form .form-control {
    height: 40px; 
    border-radius: 6px;
    border: 1px solid #cccccc;
    font-size: 0.88rem;
    padding: 6px 10px 6px 36px; 
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-icon-wrapper:focus-within .input-icon {
    color: #c6085d;
}

.appointment-form .form-control:focus {
    border-color: #c6085d;
    box-shadow: 0 0 0 3px rgba(198, 8, 93, 0.1);
    outline: 0;
}

.btn-book {
    height: 42px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #100d42, #c6085d);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(198, 8, 93, 0.2);
}

/* Mobile/Tablet Breakpoints Normalizations */
@media (max-width: 991px) {
    .content-scroll {
        padding-right: 0;
    }
    .appointment-form {
        margin-top: 25px;
    }
    .content-box {
        padding: 18px 14px;
    }
    .section-title {
        font-size: 1.5rem;
    }
}


.mdt-process-grid {
    padding: 10px 0;
}

/* Individual Bento Card Wrapper */
.mdt-bento-card {
    background: #ffffff;
    border: 1px solid #eef0f6;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(16, 13, 66, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

/* Header Inside Card */
.card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Elegant Step Numbers Indicator */
.step-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9ea3ba;
    background: #f4f5fa;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Premium Icon Container */
.mdt-icon-box {
    width: 42px;
    height: 42px;
    background: #f4f5fa;
    color: #100d42;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Text Content Area */
.mdt-title {
    color: #100d42;
    font-weight: 700;
    font-size: 1.12rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.mdt-text {
    color: #222121;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* Hover Effects For Standard Cards */
.mdt-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 8, 93, 0.2);
    box-shadow: 0 15px 35px rgba(16, 13, 66, 0.06);
}

.mdt-bento-card:hover .mdt-icon-box {
    background: linear-gradient(135deg, #100d42, #c6085d);
    color: #ffffff;
}

.mdt-bento-card:hover .step-badge {
    color: #c6085d;
    background: rgba(198, 8, 93, 0.05);
}

/* 
   Special Visual Accent: 
   MDT Case Discussion (Step 3) को थोड़ा अलग लुक दिया है 
   क्योंकि यह पूरे प्रोसेस का सबसे मुख्य (Hero) हिस्सा होता है।
*/
.highlighted-bento {
    background: linear-gradient(135deg, #100d42 0%, #1a165c 100%);
    border: none;
}

.highlighted-bento .step-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    opacity: 0.8;
}

.highlighted-bento .mdt-icon-box {
    background: #c6085d;
    color: #ffffff;
}

.highlighted-bento .mdt-title {
    color: #ffffff;
}

.highlighted-bento .mdt-text {
    color: #babcda;
}

.highlighted-bento:hover {
    box-shadow: 0 20px 40px rgba(16, 13, 66, 0.25);
    border: none;
}

/* Responsive Micro-adjustments */
@media (max-width: 767px) {
    .mdt-bento-card {
        padding: 20px;
    }
}


.mdt-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mdt-benefits-list li {
    width: 100%;
    transition: transform 0.2s ease;
}

.list-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.4;
    padding: 14px 0; 
    border-bottom: 1px solid rgba(16, 13, 66, 0.08); 
    
    border-image: linear-gradient(to right, rgba(16, 13, 66, 0.15) 0%, rgba(198, 8, 93, 0.4) 50%, rgba(16, 13, 66, 0.02) 100%) 1;
}


.mdt-benefits-list li:last-child .list-item-content {
    border-bottom: none;
}

.mdt-benefits-list li:hover {
    transform: translateX(4px);
}

/* Premium Check Icon Accent Color */
.mdt-benefits-list li i {
    color: #c6085d;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mdt-benefits-list li span {
    font-weight: 500;
}

