

.vd-banner-slider-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.vd-bs-slide-wrapper {
    width: 100%;
    height: 500px;
}

.vd-bs-slide-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Indicators */

.vd-bs-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #556B2F;
    opacity: .4;
    margin: 0 6px;
}

.vd-bs-indicators .active {
    opacity: 1;
    width: 8px;
    border-radius: 20px;
}

/* Navigation */

.vd-bs-control {
    width: 6%;
    opacity: 0;
    transition: .3s;
}

.vd-banner-slider-section:hover .vd-bs-control {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .45);
    padding: 24px;
    border-radius: 50%;
    background-size: 50%;
}

/* Responsive */

@media(max-width:991px) {

    .vd-bs-slide-wrapper {
        height: 450px;
    }

}

@media(max-width:767px) {

    .vd-bs-slide-wrapper {
        height: 160px;
    }

    .vd-bs-control {
        display: none;
    }

}

.vd-ticker-section {
    overflow: hidden;
    padding: 10px 0;
}

.vd-ticker-master-container {
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Individual Row Base Styling */
.vd-ticker-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 14px 0;
    user-select: none;
}

/* Row 1 Specific Styling (White Background with Blue Text) */
.vd-ticker-ltr {
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    /* Clean separation line with zero gap */
}

.vd-ticker-ltr .vd-ticker-item {
    color: #1A202C;
}

.vd-ticker-ltr .vd-ticker-item i {
    color: #556B2F;
    /* Blue Star */
}

/* Row 2 Specific Styling (Solid Blue Background with White Text) */
.vd-ticker-rtl {
    background: #556B2F;
}

.vd-ticker-rtl .vd-ticker-item {
    color: #ffffff;
}

.vd-ticker-rtl .vd-ticker-item i {
    color: #ffffff;
    /* White Star */
}

/*==========================================
The Animation Track
============================================*/
.vd-ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    gap: 40px;
    /* Space between words */
    padding-right: 40px;
}

.vd-ticker-item {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

/* Animation Speeds and Directions */
.vd-ticker-ltr .vd-ticker-track {
    animation: vdTickerLeftToRight 35s linear infinite;
}

.vd-ticker-rtl .vd-ticker-track {
    animation: vdTickerRightToLeft 35s linear infinite;
}

/* Pause animation on hover for readability */
.vd-ticker-row:hover .vd-ticker-track {
    animation-play-state: paused;
}

/*==========================================
Keyframes for Smooth Infinite Loop
============================================*/
@keyframes vdTickerRightToLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes vdTickerLeftToRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/*==========================================
Mobile View Tuning
============================================*/
@media (max-width: 767px) {
    .vd-ticker-item {
        font-size: 12.5px;
    }

    .vd-ticker-row {
        padding: 10px 0;
    }

    /* Increases speed slightly on mobile for smoother frame-rate */
    .vd-ticker-ltr .vd-ticker-track,
    .vd-ticker-rtl .vd-ticker-track {
        animation-duration: 25s;
    }
}


    :root {
        --primary-color: #556B2F;
        --primary-hover: #C9A227;
        --dark-color: #2c3e50;
    }

    .section-title {
        color: var(--dark-color);
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
    }


    /* Premium Premium Horizontal Card */
    .service-card-inline {
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        height: 100%;
        display: flex;
        align-items: center;
        /* Image aur content ko vertically center align karne ke liye */
    }

    /* Inline Image Styling */
    .card-img-inline-wrapper {
        overflow: hidden;
        width: 140px;
        /* Fixed width for standard looking structure */
        height: 100%;
        min-height: 140px;
        flex-shrink: 0;
    }

    .card-img-inline-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Content Area */
    .card-body-inline {
        padding: 1.25rem;
        flex-grow: 1;
    }

    .card-title-inline {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 6px;
        transition: color 0.3s ease;
    }

    /* Unique Cursor & Glow Effects on Hover */
    .service-card-inline:hover {
        transform: translateY(-5px);
        box-shadow: lch(42 34.46 118.4 / 0.33);
        border-color: #556B2F;
    }

    .service-card-inline:hover .card-img-inline-wrapper img {
        transform: scale(1.08);
    }

    .service-card-inline:hover .card-title-inline {
        color: var(--primary-color);
    }

    .learn-more-inline {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-card-inline:hover .learn-more-inline {
        color: var(--primary-hover);
        text-decoration: underline;
    }
    

.vd-why-contact-section {
    background: linear-gradient(135deg, #556B2F 0%, #C9A227 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/*==========================
Small & Bottom-to-Top Bubbles
===========================*/
.vd-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    bottom: -60px;
    /* Start below the section */
    animation: vdFloatUp 12s linear infinite;
}

/* Made bubble sizes much smaller */
.vd-bubble1 {
    width: 30px;
    height: 30px;
    left: 10%;
    animation-duration: 10s;
}

.vd-bubble2 {
    width: 20px;
    height: 20px;
    left: 30%;
    animation-duration: 14s;
    animation-delay: 2s;
}

.vd-bubble3 {
    width: 40px;
    height: 40px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.vd-bubble4 {
    width: 15px;
    height: 15px;
    left: 75%;
    animation-duration: 13s;
}

.vd-bubble5 {
    width: 35px;
    height: 35px;
    left: 90%;
    animation-duration: 9s;
    animation-delay: 3s;
}

@keyframes vdFloatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) scale(1.2);
        /* Float all the way to top */
        opacity: 0;
    }
}

/*==========================
Typography (Smaller Sizes)
===========================*/
.vd-small-title {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.vd-main-title {
    font-size: 29px;
    /* Reduced from 52px */
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.vd-main-title span {
    color: #FFE082;
}

.vd-description {
    font-size: 15px;
    /* Reduced from 18px */
    color: #eef9ff;
    line-height: 1.6;
}

/*==========================
Compact Feature Box
===========================*/
.vd-feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(85, 107, 47, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.vd-feature-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255,255,255,0.15);
    box-shadow: none;
}

.vd-feature-box i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #556B2F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.3s;
}

.vd-feature-box:hover i {
    background: #fff;
    color: #556B2F;
}

.vd-feature-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #222;
    transition: 0.3s;
}

.vd-feature-box:hover h5 {
    color: #fff;
}

.vd-feature-box p {
    font-size: 13px;
    margin: 0;
    color: #555;
    line-height: 1.3;
    transition: 0.3s;
}

.vd-feature-box:hover p {
    color: #eef9ff;
}


/*==========================
Attractive Contact Card
===========================*/
.vd-contact-card {
    background: #fff;
    padding: 30px;
    /* Reduced padding */
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.vd-contact-card h3 {
    font-size: 24px;
    /* Reduced from 40px */
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.vd-input {
    height: 46px;
    /* Lower height for compactness */
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    padding-left: 15px;
    font-size: 14px;
    box-shadow: none !important;
    transition: 0.3s;
}

.vd-input:focus {
    border-color: #556B2F;
    background: #fff;
}

textarea.vd-input {
    height: 90px;
    /* Reduced textarea height */
    padding-top: 12px;
    resize: none;
}

.vd-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #556B2F 0%, #C9A227 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(45, 156, 219, 0.3);
}

.vd-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 156, 219, 0.4);
}

/*==========================
Responsive Adjustments
===========================*/
@media(max-width:991px) {
    .vd-main-title {
        font-size: 28px;
    }

    .vd-contact-card {
        margin-top: 15px;
    }
}

@media(max-width:576px) {
    .vd-main-title {
        font-size: 24px;
    }

    .vd-contact-card {
        padding: 20px;
    }

    .vd-contact-card h3 {
        font-size: 20px;
    }
}


    :root {
        --primary-blue: #556B2F;
        --primary-light: #F8F6EF;
        --primary-glow: rgba(248, 246, 239, 0.15);
        --dark-title: #1a252f;
        --text-muted: #64748b;
    }

    .bento-title-wrapper {
        margin-bottom: 3.5rem;
    }

    .bento-title {
        color: var(--dark-title);
        font-weight: 800;
        font-size: 29px;
        letter-spacing: -0.5px;
    }

    /* Unique Premium Bento Grid Card */
    .bento-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        display: flex;
        align-items: center;
        padding: 1.5rem;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
    }

    /* Subtle Left Accent Border Indicator */
    .bento-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0px;
        background-color: var(--primary-blue);
        transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Minimalist Rounded Icon Container */
    .bento-icon-box {
        width: 70px;
        height: 70px;
        background-color: var(--primary-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.4s ease;
    }

    .bento-icon-box i {
        font-size: 1.75rem;
        color: var(--primary-blue);
        transition: all 0.4s ease;
    }

    /* Content Adjustment */
    .bento-content {
        padding-left: 1.5rem;
        flex-grow: 1;
    }

    .bento-card-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--dark-title);
        margin-bottom: 0.35rem;
        transition: color 0.3s ease;
    }

    .bento-card-desc {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Dynamic Interactive Glow & Lift Cursor Effect */
    .bento-card:hover {
        transform: translateY(-6px);
        border-color: #556b2f8a;
        box-shadow: 0 20px 40px var(--primary-glow);
    }

    .bento-card:hover::before {
        width: 5px;
        /* Reveals primary highlight color bar on left */
    }

    .bento-card:hover .bento-icon-box {
        background-color: var(--primary-blue);
        transform: scale(1.05);
    }

    .bento-card:hover .bento-icon-box i {
        color: #ffffff;
    }

    .bento-card:hover .bento-card-title {
        color: var(--primary-blue);
    }
    

.dr-profile-section {
    background-color: #556b2f0f;
    /* Subtle background to make the profile pop */
}

.dr-profile-img-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 156, 219, 0.15);
    /* Soft shadow with your theme color */
}

.dr-profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dr-profile-img-box:hover .dr-profile-img {
    transform: scale(1.03);
}

/* Header Styles */
.dr-profile-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #556B2F;
    /* Theme Color */
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.dr-profile-name {
    font-size: 36px;
    font-weight: 700;
    color:#0f0f0f;
    margin-bottom: 10px;
}

.dr-profile-designation {
    font-size: 18px;
    font-weight: 500;
    color: #556b2fcf;
    margin-bottom: 5px;
    line-height: 1.4;
}

.dr-profile-degrees {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #556B2F;
    /* Theme Color */
    background: white;
    /* Light tint background */
    padding: 4px 12px;
    border-radius: 20px;
}

/* Bio Text */
.dr-profile-bio p {
    font-size: 16px;
    line-height: 1.7;
    color: #4c4d4e;
    margin-bottom: 15px;
}

/* Premium Button Styling */
.dr-profile-btn {
    display: inline-flex;
    align-items: center;
    background-color: #556B2F;
    /* Theme Color */
    color: #ffffff !important;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.dr-profile-btn:hover {
    background-color: #C9A227;
    /* Darker shade on hover */
    transform: translateY(-2px);
    
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .dr-profile-name {
        font-size: 30px;
    }

    .dr-profile-designation {
        font-size: 16px;
    }
}


.sattva-faq-matrix {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
}

/* --- Section Title Assets --- */
.faq-mini-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #3A4D24;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(58, 77, 36, 0.06);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    border: 1px solid rgba(58, 77, 36, 0.1);
}

.faq-main-title {
    color: #253314;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.faq-main-subtitle {
    color: #666666;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* --- Accordion Custom Structural Elements --- */
.faq-item-wrapper {
    background: #fafbfa;
    border: 1px solid #edf1ed;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-trigger-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    outline: none !important;
    box-shadow: none !important;
}

.faq-question-text {
    font-size: 16.5px;
    font-weight: 700;
    color: #253314;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-icon-indicator {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #ffffff;
    border: 1px solid #e2ece2;
    color: #3A4D24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Active Bootstrap States Layer --- */
.faq-item-wrapper:has(.faq-trigger-btn:not(.collapsed)) {
    background: #ffffff;
    border-color: rgba(58, 77, 36, 0.25);
    box-shadow: 0 12px 30px rgba(58, 77, 36, 0.04);
}

.faq-trigger-btn:not(.collapsed) .faq-question-text {
    color: #C9A227; /* Turn gold when open */
}

.faq-trigger-btn:not(.collapsed) .faq-icon-indicator {
    background: #3A4D24;
    border-color: #3A4D24;
    color: #ffffff;
    transform: rotate(135deg); /* Flips dynamic plus icon smoothly into a close marker */
}

/* --- Internal Dropdown Body Frame --- */
.faq-body-content {
    padding: 0 28px 24px 28px;
    border-top: 0;
}

.faq-body-content p {
    color: #555555;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adaptability Controls --- */
@media (max-width: 991px) {
    .sattva-faq-matrix {
        padding: 60px 0;
    }
    .faq-main-title {
        font-size: 28px;
    }
    .faq-trigger-btn {
        padding: 20px 22px;
    }
    .faq-body-content {
        padding: 0 22px 20px 22px;
    }
}

@media (max-width: 576px) {
    .sattva-faq-matrix {
        padding: 50px 0;
    }
    .faq-main-title {
        font-size: 23px;
    }
    .faq-question-text {
        font-size: 15px;
    }
    .faq-trigger-btn {
        padding: 16px 18px;
        gap: 12px;
    }
    .faq-body-content {
        padding: 0 18px 16px 18px;
    }
    .faq-body-content p {
        font-size: 13.5px;
    }
}

.sattva-care-process {
    position: relative;
    background: #F8F6EF;
    padding: 60px 0;
}

/* --- Upper Section Badges & Text Elements --- */
.process-mini-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #3A4D24; /* Muted Olive Tint */
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(58, 77, 36, 0.06);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    border: 1px solid rgba(58, 77, 36, 0.1);
}

.process-main-title {
    color: #253314; /* Deep Premium Olive */
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.process-main-subtitle {
    color: #666666;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* --- Process Grid Cards Structure --- */
.process-step-card {
    background: #fafbfa;
    border: 1px solid #edf1ed;
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Distinct Number Tag Box */
.step-number-tag {
    font-size: 12px;
    font-weight: 700;
    color: #C9A227; /* Accent Gold */
    background: rgba(201, 162, 39, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

/* Rounded Icon Frame */
.step-icon-box {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid #e2ece2;
    color: #3A4D24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(58, 77, 36, 0.02);
    transition: all 0.25s ease;
}

.step-card-body h4 {
    color: #253314;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
    transition: color 0.2s ease;
}

.step-card-body p {
    color: #555555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* --- Interactive Hover Effects --- */
.process-step-card:hover {
    background: #ffffff;
    border-color: rgba(58, 77, 36, 0.25);
    box-shadow: 0 12px 30px rgba(58, 77, 36, 0.05);
    transform: translateY(-3px);
}

.process-step-card:hover .step-number-tag {
    background: #556b2f;
    color: #ffffff;
}

.process-step-card:hover .step-icon-box {
    background: #3A4D24;
    border-color: #3A4D24;
    color: #ffffff;
}

.process-step-card:hover .step-card-body h4 {
    color: #C9A227;
}

/* --- Responsive Layout Optimization --- */
@media (max-width: 991px) {
    .sattva-care-process {
        padding: 60px 0;
    }
    .process-main-title {
        font-size: 28px;
    }
    .process-step-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .sattva-care-process {
        padding: 50px 0;
    }
    .process-main-title {
        font-size: 23px;
    }
    .process-step-card {
        padding: 20px;
    }
    .step-card-top {
        margin-bottom: 16px;
    }
    .step-card-body h4 {
        font-size: 16px;
    }
}

.sattva-clinical-pillars {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
}

/* --- Desktop Sticky Viewport Engine --- */
@media (min-width: 992px) {
    .position-lg-sticky {
        position: sticky !important;
    }
    .pillars-sticky-top-offset {
        /* Adjusted so it stays beautifully fixed below your main navbar while scrolling */
        top: 150px; 
        z-index: 10;
    }
}

/* --- Left Column Profile Banner --- */
.pillars-sticky-hero {
    background: #253314; /* Dark Olive Primary Accent */
    border-radius: 12px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(37, 51, 20, 0.08);
}

.pillars-hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pillars-hero-content {
    position: relative;
    z-index: 2;
}

.pillars-mini-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #C9A227; /* Muted Gold Color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: rgba(201, 162, 39, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.pillars-main-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pillars-main-title span {
    color: #C9A227;
}

.pillars-main-desc {
    color: #cdd4c9;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.pillars-btn-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(201, 162, 39, 0.4);
    padding-bottom: 4px;
    transition: all 0.25s ease;
}

.pillars-btn-link:hover {
    color: #C9A227;
    border-color: #C9A227;
}

/* --- Right Side Structural Cards Grid --- */
.pillars-scrolled-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-feature-card {
    background: #fafbfa;
    border: 1px solid #edf1ed;
    border-radius: 8px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Elegant Custom Geometric Counter Box */
.pillar-num-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #ffffff;
    border: 1px solid #e2ece2;
    color: #3A4D24;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.pillar-details h4 {
    color: #253314;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.pillar-details p {
    color: #555555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Interactive States */
.pillar-feature-card:hover {
    background: #ffffff;
    border-color: rgba(58, 77, 36, 0.2);
    box-shadow: 0 10px 25px rgba(58, 77, 36, 0.04);
}

.pillar-feature-card:hover .pillar-num-box {
    background: #3A4D24;
    border-color: #3A4D24;
    color: #ffffff;
}

.pillar-feature-card:hover .pillar-details h4 {
    color: #C9A227;
}

/* --- Responsive Adaptations --- */
@media (max-width: 991px) {
    .sattva-clinical-pillars {
        padding: 60px 0;
    }
    .pillars-sticky-hero {
        padding: 35px 25px;
    }
    .pillars-main-title {
        font-size: 26px;
    }
    .pillar-feature-card {
        padding: 20px;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .sattva-clinical-pillars {
        padding: 50px 0;
    }
    .pillar-feature-card {
        flex-direction: column;
        gap: 14px;
    }
    .pillar-num-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 13px;
    }
    .pillar-details h4 {
        font-size: 15.5px;
    }
}

.maternal-safety-matrix {
    position: relative;
    background: #F8F6EF;
    padding: 60px 0;
}

/* --- Section Top Headers --- */
.matrix-tag-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #C9A227;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.matrix-section-title {
    color: #253314;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.matrix-section-subtitle {
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* --- Quick Care Status Notification --- */
.matrix-quick-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fafbfa;
    border: 1px solid #eef2ee;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: left;
}

.matrix-quick-status p {
    margin: 0;
    font-size: 13px;
    color: #3A4D24;
    font-weight: 600;
}

.status-indicator-ring {
    width: 8px;
    height: 8px;
    background: #C9A227;
    border-radius: 50%;
    display: inline-block;
}

/* --- Structural Numerical Data Box Grid --- */
.matrix-data-box {
    background: #ffffff;
    border: 1px solid #edf1ed;
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Number Box Container Layout */
.matrix-num-frame {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #fafbfa;
    border: 1px solid #e2ece2;
    color: #3A4D24;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.matrix-info-frame h5 {
    color: #253314;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.matrix-info-frame p {
    color: #666666;
    font-size: 13.5px;
    line-height: 1.45;
    margin: 0;
}

/* Box State Changes on Hover */
.matrix-data-box:hover {
    border-color: rgba(58, 77, 36, 0.25);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(58, 77, 36, 0.04);
    transform: translateY(-2px);
}

.matrix-data-box:hover .matrix-num-frame {
    background: #3A4D24;
    border-color: #3A4D24;
    color: #ffffff;
}

.matrix-data-box:hover .matrix-info-frame h5 {
    color: #C9A227;
}

/* --- Flat Action Strip Framework --- */
.matrix-action-strip {
    background: #253314;
    border-radius: 8px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(37, 51, 20, 0.08);
}

.strip-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.strip-left-side {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.strip-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    color: #C9A227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.strip-msg h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.strip-msg p {
    color: #cdd4c9;
    font-size: 13.5px;
    margin: 0;
}

.matrix-call-button {
    display: inline-flex;
    align-items: center;
    background: #C9A227;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.matrix-call-button:hover {
    background: #b28f1d;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

/* --- Responsive Adaptations --- */
@media (max-width: 991px) {
    .maternal-safety-matrix {
        padding: 60px 0;
    }
    .matrix-section-title {
        font-size: 26px;
    }
    .matrix-action-strip {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .strip-flex-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .matrix-call-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .maternal-safety-matrix {
        padding: 50px 0;
    }
    .matrix-section-title {
        font-size: 22px;
    }
    .matrix-data-box {
        padding: 18px;
        gap: 14px;
    }
    .matrix-num-frame {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 14px;
    }
    .strip-left-side {
        align-items: flex-start;
    }
    .strip-icon-circle {
        margin-top: 2px;
    }
}

.service-monitoring-section {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
}

/* --- Section Top Headings --- */
.monitoring-sub-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(58, 77, 36, 0.07);
    color: #3A4D24;
    border: 1px solid rgba(58, 77, 36, 0.15);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.monitoring-main-title {
    color: #253314;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.monitoring-main-title span {
    color: #C9A227;
}

.monitoring-lead-text {
    color: #555555;
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
}

/* --- Parameters Micro-Grid Structure --- */
.monitoring-parameters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.parameter-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #fafbfa;
    border: 1px solid #edf1ed;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.parameter-mini-card:hover {
    background: #ffffff;
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 10px 25px rgba(58, 77, 36, 0.04);
}

.parameter-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(201, 162, 39, 0.12);
    color: #C9A227;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.parameter-info h4 {
    color: #253314;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.parameter-info p {
    color: #666666;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* --- Informational Notice Block --- */
.monitoring-alert-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(58, 77, 36, 0.04);
    border-left: 3px solid #3A4D24;
    border-radius: 4px;
}

.monitoring-alert-note .alert-icon {
    color: #3A4D24;
    font-size: 15px;
    margin-top: 1px;
}

.monitoring-alert-note p {
    color: #444444;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* --- Right Column Action Card Panel --- */
.monitoring-cta-card {
    background: #556b2f;
    border-radius: 14px;
    padding: 40px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(37, 51, 20, 0.15);
    display: flex;
    align-items: center;
    z-index: 1;
}

.cta-card-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-card-content {
    width: 100%;
}

.cta-mini-label {
    display: inline-block;
    color: #C9A227;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.monitoring-cta-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.monitoring-cta-card p {
    color: #d0d6cb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Features List Inside Card --- */
.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 4px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature-item i {
    color: #C9A227;
    font-size: 12px;
}

.cta-feature-item span {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
}

/* --- Interface Buttons --- */
.monitoring-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gold-solid {
    background: #C9A227;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-gold-solid:hover {
    background: #b28f1d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.monitoring-phone-link {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.monitoring-phone-link:hover {
    color: #C9A227;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .service-monitoring-section {
        padding: 60px 0;
    }
    .monitoring-main-title {
        font-size: 28px;
    }
    .monitoring-cta-card {
        margin-top: 20px;
        padding: 35px 24px;
    }
}

@media (max-width: 576px) {
    .service-monitoring-section {
        padding: 50px 0;
    }
    .monitoring-main-title {
        font-size: 24px;
    }
    .monitoring-parameters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .parameter-mini-card {
        padding: 14px;
    }
}

.service-timeline-grid-section {
    position: relative;
    background: #F8F6EF;
    padding: 60px 0;
}

/* --- Section Title Aesthetics --- */
.timeline-grid-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(58, 77, 36, 0.07);
    color: #3A4D24;
    border: 1px solid rgba(58, 77, 36, 0.15);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.timeline-grid-title {
    color: #253314;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.timeline-grid-title span {
    color: #556b2f;
}

.timeline-grid-subtitle {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* --- Spine Tracking Structure --- */
.timeline-spine-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    
}

/* The vertical line guide */
.timeline-spine-wrapper::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(58, 77, 36, 0.05), rgba(201, 162, 39, 0.3) 20%, rgba(201, 162, 39, 0.3) 80%, rgba(58, 77, 36, 0.05));
}

/* Individual Milestone Structural Blocks */
.spine-milestone-block {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.spine-milestone-block:last-child {
    margin-bottom: 0;
}

/* Left Numerical Pinpoint */
.spine-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 2px solid #C9A227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.spine-number {
    color: #3A4D24;
    font-size: 13px;
    font-weight: 700;
}

/* Content Information Panels */
.spine-content-card {
    margin-left: 90px;
    background: #fafbfa;
    border: 1px solid #eef2ee;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.spine-content-card:hover {
    background: #ffffff;
    border-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 15px 35px rgba(58, 77, 36, 0.05);
    transform: translateX(4px);
}

.spine-card-heading {
    color: #253314;
    font-size: 19px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(58, 77, 36, 0.12);
}

.spine-card-heading i {
    color: #556b2f;
}

/* Internal Items Layout Matrix */
.spine-items-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.spine-matrix-item {
    position: relative;
    padding-left: 18px;
    color: #555555;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
}

.spine-matrix-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #C9A227;
    border-radius: 50%;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 991px) {
    .service-timeline-grid-section {
        padding: 60px 0;
    }
    .timeline-grid-title {
        font-size: 28px;
    }
    .spine-items-matrix {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-timeline-grid-section {
        padding: 50px 0;
    }
    .timeline-grid-title {
        font-size: 23px;
    }
    .timeline-spine-wrapper::before {
        left: 20px;
    }
    .spine-marker {
        left: 0;
        width: 38px;
        height: 38px;
    }
    .spine-content-card {
        margin-left: 55px;
        padding: 20px;
    }
    .spine-card-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .spine-matrix-item {
        font-size: 13.5px;
    }
}

.service-intro-section {
    position: relative;
    background: #ffffff;
    padding: 60px 0;
}

/* --- Service Badge Element --- */
.service-tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(58, 77, 36, 0.07);
    color: #3A4D24;
    border: 1px solid rgba(58, 77, 36, 0.15);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

/* --- Service Typography Settings --- */
.service-display-title {
    color: #253314;
    font-size: 33px; 
    line-height: 1.20;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-display-title span {
    color: #C9A227; 
}

.service-lead-paragraph {
    color: #3A4D24;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.service-description-text {
    color: #555555;
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.service-description-text.secondary-paragraph {
    color: #666666;
    font-size: 15px;
    margin-bottom: 28px;
}

/* --- Action Interfaces --- */
.service-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-action-btn:hover {
    transform: translateY(-2px);
}

.primary-action {
    background: #C9A227;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.primary-action:hover {
    background: #b28f1d;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.whatsapp-action {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.whatsapp-action:hover {
    background: #20ba59;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- Graphical Accent Frame --- */
.service-media-frame {
    position: relative;
    padding: 6px;
    z-index: 1;
}

.service-featured-img {
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
    object-fit: cover;
    width: 100%;
    max-height: 340px;
}

.service-media-accent-frame {
    position: absolute;
    top: 20px;
    right: -6px;
    width: 100%;
    height: 100%;
    border: 2.5px solid rgba(201, 162, 39, 0.3);
    border-radius: 18px;
    z-index: -1;
    pointer-events: none;
}

/* --- Media Queries --- */
@media (max-width: 991px) {
    .service-intro-section {
        padding: 50px 0;
    }
    .service-display-title {
        font-size: 32px;
    }
    .service-lead-paragraph {
        font-size: 17px;
    }
    .service-media-frame {
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .service-intro-section {
        padding: 40px 0;
    }
    .service-display-title {
        font-size: 25px;
    }
    .service-action-btn {
        width: 100%;
        justify-content: center;
    }
}

.inner-banner {
    position: relative;
    overflow: hidden;
    padding: 28px 0; 
    /* Gradient overlay + Background image (Yaha apni image ka path daal dein) */
    background: linear-gradient(135deg, rgb(85 107 47 / 86%) 0%, rgb(56 72 37) 100%), url('../img/pregnant-img.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* --- Floating Bubbles Animation --- */
.banner-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -30px;
    background: rgba(255, 255, 255, 0.7); /* White bubble */
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    animation: floatUp 10s linear infinite;
    pointer-events: none;
}

.b-small {
    width: 10px;
    height: 10px;
    left: 12%;
    animation-duration: 7s;
}

.b-medium {
    width: 20px;
    height: 20px;
    left: 40%;
    animation-duration: 11s;
}

.b-large {
    width: 30px;
    height: 30px;
    left: 70%;
    animation-duration: 14s;
}

.delay-1 {
    left: 22%;
    width: 15px;
    height: 15px;
    animation-delay: 1.5s;
}

.delay-2 {
    left: 55%;
    width: 25px;
    height: 25px;
    animation-delay: 3s;
}

.delay-3 {
    left: 82%;
    width: 8px;
    height: 8px;
    animation-delay: 4.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) scale(1.4);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

/* --- Badge Style --- */
.banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: #E2D9C2;
    border: 1px solid rgba(201, 162, 39, 0.25);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* --- Typography (Small & Balanced Sizes) --- */
.banner-title {
    color: #ffffff;
    font-size: 30px; 
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-title span {
    color: #C9A227;
}

.banner-text {
    color: #EAEAEA;
    max-width: 650px;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

/* --- Compact Buttons --- */
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #05ae44;
    color: #fff;
}

.call-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.call-btn:hover {
    background: #C9A227;
    border-color: #C9A227;
    color: #fff;
}

/* --- Slim Solid White Consultation Box --- */
.consult-box {
    background: #ffffff; 
    border-radius: 2px;
    padding: 20px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35); /* Shadow enhanced to stand out from background img */
}

.consult-box h3 {
    color: #253314;
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 2px;
}

.consult-box p {
    color: #666666;
    font-size: 13px;
    margin-bottom: 12px;
}

/* --- Compact Form Inputs --- */
.consult-box .form-control {
    border: 1px solid #E2E8F0;
    height: 40px; 
    border-radius: 8px;
    padding: 8px 12px;
    background: #F8FAFC;
    color: #333333;
    font-size: 13px;
    transition: all 0.3s ease;
}

.consult-box .form-control:focus {
    background: #ffffff;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    outline: none;
}

.consult-box textarea.form-control {
    height: 40px;
    resize: none;
}

/* --- Compact Submit Button --- */
.submit-btn {
    width: 100%;
    background: #C9A227;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: #E0B42D;
    transform: translateY(-1px);
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .inner-banner {
        padding: 25px 0;
    }
    .banner-title {
        font-size: 28px;
    }
    .consult-box {
        margin-top: 25px; 
    }
}

@media (max-width: 576px) {
    .inner-banner {
        padding: 20px 0;
    }
    .banner-title {
        font-size: 24px;
    }
    .banner-btn {

        justify-content: center;
    }
}

.service-assessment-section {
    position: relative;
    background: #fcfdfc;
    padding: 70px 0;
}

/* --- Left Column Profile Panel --- */
.assessment-summary-panel {
    background: #253314; /* Using the dark primary accent color */
    padding: 40px 30px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 51, 20, 0.12);
}

.assessment-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(201, 162, 39, 0.15);
    color: #C9A227;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.assessment-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.assessment-title span {
    color: #C9A227;
}

.assessment-intro-text {
    color: #d0d6cb;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.assessment-decorative-icon {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 110px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* --- Right Column Structural Details --- */
.assessment-details-panel {
    background: #ffffff;
    border: 1px solid #f0f3f0;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.assessment-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* --- Styled Items --- */
.assessment-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.2s ease-in-out;
}

.assessment-item:hover {
    background: #f7f9f6;
}

.assessment-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(58, 77, 36, 0.08);
    color: #3A4D24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.assessment-item:hover .assessment-check {
    background: #C9A227;
    color: #ffffff;
}

.assessment-text {
    color: #444444;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
}

/* --- Responsive Adaptations --- */
@media (max-width: 991px) {
    .service-assessment-section {
        padding: 50px 0;
    }
    .assessment-summary-panel {
        padding: 30px;
    }
    .assessment-title {
        font-size: 26px;
    }
    .assessment-details-panel {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .assessment-details-panel {
        padding: 20px 15px;
    }
    .assessment-list-wrapper {
        gap: 8px;
    }
    .assessment-item {
        padding: 8px 6px;
    }
}
