   :root {
        --maroon: #800000;
        --maroon-dk: #530f1c;
        --gold: #d4af37;
        --gold-lt: #f0d060;
        --cream: #f5f5dc;
        --cream-lt: #faf9f5;
        --dark: #1a0a0a;
        --dark-card: #2a1212;
        --text-light: #f5eded;
        --text-muted: #c9aeae;
    }

    .hero-section {
        min-height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        background: url('/img/services/bg_1.jpg');
        object-fit: contain;
        background-position: bottom;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%)
    }



    /* NEW STYLE FROM HERE */
    .wellness-gradient .hero-page-headline {
        font-size: 45px;
        color: #fff;
        line-height: 50px;
        letter-spacing: -0.5px;
    }

    .wellness-gradient .hero-tagline {
        color: #D4AF37;
    }

    .wellness-gradient .btn_container {
        margin-top: 15px !important;
    }

    .wellness-gradient .form-card {
        height: auto;
        margin-top: 50px;
    }

    .wellness-gradient .form-group input,
    .wellness-gradient .form-group select,
    .wellness-gradient .form-group textarea {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        /* color: var(--text-light); */
        color: white;
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        outline: none;
        transition: border-color .2s, background .2s;
        width: 100%;
    }


    /* right – form card */
    .form-card {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(212, 175, 55, .18);
        border-radius: 20px;
        padding: 30px 32px;
        backdrop-filter: blur(16px);
        position: relative;
        overflow: hidden;
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
    }

    .form-card h2 {
        font-family: 'Literata', serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--text-light);
        margin-bottom: 4px;
    }

    .form-card p {
        font-size: 12px;
        color: var(--text-muted);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .form-row.single {
        grid-template-columns: 1fr;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-group label {
        font-size: 11px;
        color: var(--text-muted);
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        color: var(--text-light);
        /* color: white; */
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        outline: none;
        transition: border-color .2s, background .2s;
        width: 100%;
    }

    .form-group select option {
        background: #2a1212;
        color: var(--text-light);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-light);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--gold);
        background: rgba(212, 175, 55, .06);
        color: white;

    }

    .form-group textarea {
        resize: none;
        height: 70px;
    }

    .form-group input,
    .form-group textarea {
        color: #fff;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #fff !important;
        opacity: 1;
    }

    .form-group input::-webkit-input-placeholder {
        color: #fff;
    }

    .form-group input::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .form-group input:-ms-input-placeholder {
        color: #fff;
    }

    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
    }

    .form-submit {
        width: 100%;
        margin-top: 6px;
        padding: 14px;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--maroon-dk), var(--maroon));
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: opacity .2s, transform .2s;
        letter-spacing: .04em;
    }

    .form-submit:hover {
        opacity: .88;
        transform: translateY(-1px);
    }

    .form-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 14px 0;
    }

    .form-divider span {
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, .08);
    }

    .form-divider p {
        font-size: 11px;
        color: var(--text-muted);
    }

    .form-quick-contact {
        display: flex;
        gap: 10px;
    }

    /* WHY MUKTAA */
    .why-section {
        background: #ffffff;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid #ece4d8;
        border-left: 1px solid #ece4d8;
    }

    .why-cell {
        border-right: 1px solid #ece4d8;
        border-bottom: 1px solid #ece4d8;
        padding: 20px;
        position: relative;
        transition: background 0.25s ease;
    }

    .why-cell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #ddc062;
        transition: width 0.3s ease;
    }

    .why-cell:hover::before {
        width: 100%;
    }

    .why-cell:hover {
        background: #f5f5dc;
    }

    .why-num {
        display: block;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 4.6rem;
        color: #850a0a;
        line-height: 1;
        margin-bottom: 14px;
    }

    .why-icon {
        display: block;
        font-size: 1.3rem;
        color: #a9781f;
        margin-bottom: 16px;
    }

    .why-cell h6 {
        color: #850a0a;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .why-cell p {
        color: #6b6b6b;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @media (max-width: 991px) {
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .why-grid {
            grid-template-columns: 1fr;
        }

        .why-cell {
            padding: 30px 20px;
        }
    }

    .journey-section {
        background: #ffffff;
    }

    .journey-timeline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        padding-top: 10px;
    }

    .journey-timeline::before {
        content: "";
        position: absolute;
        top: 34px;
        left: 60px;
        right: 60px;
        height: 1px;
        background: repeating-linear-gradient(to right, #891212 0, #d9c9a3 6px, transparent 6px, transparent 12px);
        z-index: 0;
    }

    .journey-step {
        flex: 1;
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
    }

    .journey-icon-wrap {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background: #ffff;
        border: 1px solid #dbbc59;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        transition: background 0.25s ease, border-color 0.25s ease;
    }

    .journey-step:hover .journey-icon-wrap {
        background: #dbbc59;
        border-color: #dbbc59;
    }

    .journey-icon {
        font-size: 1.6rem;
        color: #a9781f;
        transition: color 0.25s ease;
    }

    .journey-step:hover .journey-icon {
        color: #ffffff;
    }

    .journey-num {
        display: block;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #a9781f;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .journey-step h6 {
        color: #800000;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .journey-step p {
        color: #6b6b6b;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @media (max-width: 991px) {
        .journey-timeline {
            flex-wrap: wrap;
            row-gap: 40px;
        }

        .journey-timeline::before {
            display: none;
        }

        .journey-step {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 576px) {
        .journey-step {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    .our_passion .outside-box-right-25 .services_therapies {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        padding: 0px !important;
    }