/* =========================================================
   NEW SECTIONS
   Home: Why Choose, Care Journey
   Services: How We Care, Patient Support, Emergency Help
   Doctors: Dr. V.P. Goyal, Dr. Shikha Goyal, Dr. Tushar Goyal
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.holy-choose-section,
.care-journey-section,
.service-care-section,
.patient-support-section,
.emergency-help-section,
.holy-choose-section *,
.care-journey-section *,
.service-care-section *,
.patient-support-section *,
.emergency-help-section * {
    box-sizing: border-box;
}

.holy-choose-section,
.care-journey-section,
.service-care-section,
.patient-support-section,
.emergency-help-section {
    width: 100%;
    font-family: "Hind", sans-serif;
}

.holy-choose-section h2,
.holy-choose-section h3,
.holy-choose-section p,
.care-journey-section h2,
.care-journey-section h3,
.care-journey-section p,
.service-care-section h2,
.service-care-section h3,
.service-care-section p,
.patient-support-section h2,
.patient-support-section h3,
.patient-support-section p,
.emergency-help-section h2,
.emergency-help-section p,
.emergency-help-section a {
    font-family: "Hind", sans-serif;
}


/* =========================================================
   HOME — WHY CHOOSE HOLY NURSING HOME
========================================================= */

.holy-choose-section {
    padding: 55px 20px;
    background: #ffffff;
}

.holy-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1170px;
    min-height: 425px;
    margin: 0 auto;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.holy-choose-content {
    padding: 22px 24px 24px;
}

.holy-choose-content h2 {
    margin: 0 0 20px;
    color: #2d2d2d;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
}

.holy-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.holy-choose-item {
    min-height: 165px;
    padding: 17px 14px 14px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.holy-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 7px 18px rgba(145, 65, 124, 0.12);
}

.holy-choose-icon {
    margin-bottom: 10px;
    color: #a34e89;
    font-size: 34px;
    line-height: 1;
}

.holy-choose-item h3 {
    margin: 0 0 8px;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.holy-choose-item p {
    margin: 0;
    color: #686868;
    font-size: 11px;
    line-height: 1.55;
}

.holy-choose-image {
    min-width: 0;
    min-height: 425px;
}

.holy-choose-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 425px;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HOME — YOUR CARE JOURNEY
========================================================= */

.care-journey-section {
    padding: 42px 20px;
    background: #ffffff;
}

.care-journey-container {
    position: relative;
    width: 100%;
    max-width: 1170px;
    min-height: 350px;
    margin: 0 auto;
    padding: 25px 45px 35px;
    overflow: visible;
    background:
        radial-gradient(
            circle at center,
            rgba(163, 68, 123, 0.035),
            transparent 48%
        ),
        linear-gradient(
            90deg,
            #ffffff 0%,
            #fafafa 15%,
            #ffffff 50%,
            #fafafa 85%,
            #ffffff 100%
        );
    box-shadow: 0 8px 28px rgba(20, 62, 82, 0.09);
}

.care-journey-container > h2 {
    position: relative;
    z-index: 10;
    top: -12px;
    display: table;
    margin: 0 auto 5px;
    padding: 8px 28px;
    color: #202b32;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(30, 62, 78, 0.1);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.care-journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.care-journey-grid::before {
    position: absolute;
    z-index: 0;
    top: 61px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #14658c,
        #a3447b,
        #14658c
    );
    content: "";
}

.care-journey-step {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: center;
}

.care-step-circle {
    position: relative;
    width: 122px;
    height: 122px;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 9px 20px rgba(20, 72, 96, 0.12),
        inset 0 -4px 10px rgba(20, 96, 135, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.care-journey-step:hover .care-step-circle {
    transform: translateY(-6px);
    box-shadow:
        0 14px 28px rgba(20, 72, 96, 0.18),
        inset 0 -4px 10px rgba(20, 96, 135, 0.04);
}

.care-step-circle::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 122px;
    height: 61px;
    border: 7px solid #a3447b;
    border-bottom: 0;
    border-radius: 122px 122px 0 0;
    content: "";
}

.care-step-circle::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 122px;
    height: 61px;
    border: 1px solid #e3e8ea;
    border-top: 0;
    border-radius: 0 0 122px 122px;
    content: "";
}

.care-step-number {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 50%;
    color: #a3447b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(-50%);
}

.care-step-icon {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-bottom: 19px;
    color: #075f8c;
    font-size: 39px;
    line-height: 1;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.care-journey-step:hover .care-step-icon {
    color: #a3447b;
    transform: scale(1.08);
}

.care-journey-step:not(:last-child)::after {
    position: absolute;
    z-index: 6;
    top: 51px;
    right: -35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #a3447b;
    box-shadow: 0 3px 8px rgba(129, 48, 99, 0.25);
    content: "\f105";
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.care-journey-step:not(:last-child):hover::after {
    transform: scale(1.15);
}

.care-journey-step:last-child::before {
    position: absolute;
    z-index: 3;
    top: 61px;
    left: calc(50% + 58px);
    width: 48px;
    height: 78px;
    border-top: 2px solid #17678d;
    border-right: 2px solid #17678d;
    border-bottom: 2px solid #17678d;
    border-radius: 0 40px 40px 0;
    content: "";
}

.care-journey-step:last-child::after {
    position: absolute;
    z-index: 5;
    top: 131px;
    left: calc(50% + 55px);
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #17678d;
    border-left: 2px solid #17678d;
    content: "";
    transform: rotate(45deg);
}

.care-journey-step h3 {
    margin: 2px 0 7px;
    color: #202020;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.care-journey-step p {
    max-width: 225px;
    margin: 0 auto;
    color: #545454;
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   SERVICES — HOW WE CARE
========================================================= */

.service-care-section {
    padding: 55px 20px;
    background: #ffffff;
}

.service-care-container {
    display: grid;
    grid-template-columns: 42% 58%;
    width: 100%;
    max-width: 1170px;
    min-height: 420px;
    margin: 0 auto;
    padding: 35px;
    background: #f2f3f4;
    box-shadow: 0 7px 25px rgba(20, 62, 82, 0.08);
}

.service-care-image {
    min-width: 0;
    overflow: hidden;
}

.service-care-image img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-care-container:hover .service-care-image img {
    transform: scale(1.03);
}

.service-care-content {
    padding-left: 42px;
}

.service-care-heading {
    margin-bottom: 38px;
}

.service-care-heading h2 {
    margin: 0;
    color: #145477;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.25;
}

.service-care-heading span {
    display: block;
    width: 58px;
    height: 3px;
    margin-top: 12px;
    background: #145477;
}

.service-care-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.service-care-step {
    position: relative;
    min-width: 0;
    text-align: center;
}

.service-care-step:not(:last-child)::after {
    position: absolute;
    top: 36px;
    right: -18px;
    color: #145477;
    content: "\f105";
    font-family: FontAwesome;
    font-size: 18px;
}

.service-care-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    color: #145477;
    border: 2px solid #d878a9;
    border-radius: 50%;
    background: #ffffff;
    font-size: 31px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-care-step:hover .service-care-icon {
    color: #ffffff;
    background: #a34e89;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(163, 78, 137, 0.22);
}

.service-care-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: -10px auto 12px;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #145477;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.service-care-step h3 {
    min-height: 42px;
    margin: 0 0 8px;
    color: #145477;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.service-care-step p {
    max-width: 145px;
    margin: 0 auto;
    color: #525759;
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   SERVICES — FACILITIES AND PATIENT SUPPORT
========================================================= */

.patient-support-section {
    padding: 55px 20px;
    background: #f7f8f9;
}

.patient-support-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.patient-support-heading {
    margin-bottom: 28px;
    text-align: center;
}

.patient-support-heading h2 {
    margin: 0;
    color: #145477;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.patient-support-heading span {
    display: block;
    width: 55px;
    height: 3px;
    margin: 10px auto 0;
    background: #db3e87;
}

.patient-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 35px;
}

.patient-support-card {
    min-height: 215px;
    padding: 25px 30px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dfe3e5;
    box-shadow: 0 3px 10px rgba(20, 62, 82, 0.04);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.patient-support-card:hover {
    border-color: #d875a8;
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(20, 62, 82, 0.11);
}

.patient-support-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    height: 65px;
    margin-bottom: 7px;
    color: #145477;
    font-size: 43px;
    line-height: 1;
}

.patient-support-icon::after {
    position: absolute;
    right: 4px;
    bottom: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #db3e87;
    content: "";
    opacity: 0.85;
}

.patient-support-icon i {
    position: relative;
    z-index: 2;
}

.patient-support-card:hover .patient-support-icon {
    color: #a3447b;
}

.patient-support-card h3 {
    margin: 0 0 8px;
    color: #145477;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.patient-support-card p {
    max-width: 250px;
    margin: 0 auto;
    color: #525759;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   SERVICES — EMERGENCY MEDICAL HELP
========================================================= */

.emergency-help-section {
    padding: 55px 20px;
    background: #ffffff;
}

.emergency-help-container {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 49% 51%;
    width: 100%;
    max-width: 1170px;
    min-height: 275px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(20, 62, 82, 0.12);
}

.emergency-help-background {
    position: absolute;
    z-index: -3;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.emergency-help-message {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 275px;
    padding: 40px 55px;
    overflow: hidden;
}

.emergency-help-left-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(198, 8, 94, 0.96),
        rgba(187, 17, 94, 0.86)
    );
}

.emergency-help-text {
    position: relative;
    z-index: 2;
}

.emergency-help-text h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.12;
}

.emergency-help-text p {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
}

.emergency-help-contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 275px;
    padding: 35px;
    overflow: hidden;
}

.emergency-help-right-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(4, 83, 116, 0.92);
}

.emergency-contact-content {
    position: relative;
    z-index: 2;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.emergency-phone span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #145477;
    border-radius: 50%;
    background: #ffffff;
    font-size: 27px;
}

.emergency-phone a {
    color: #ffffff;
    font-size: 31px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.emergency-help-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.emergency-call-button,
.emergency-appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.emergency-call-button {
    color: #ffffff;
    border: 2px solid #dc126d;
    background: #dc126d;
}

.emergency-appointment-button {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
}

.emergency-call-button:hover,
.emergency-call-button:focus {
    color: #ffffff;
    background: #b90f5f;
    transform: translateY(-3px);
}

.emergency-appointment-button:hover,
.emergency-appointment-button:focus {
    color: #145477;
    background: #ffffff;
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .holy-choose-container {
        grid-template-columns: 1fr;
    }

    .holy-choose-image,
    .holy-choose-image img {
        min-height: 380px;
    }

    .care-journey-container {
        padding: 25px;
    }

    .care-journey-container > h2 {
        top: -10px;
        margin-bottom: 18px;
    }

    .care-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }

    .care-journey-grid::before,
    .care-journey-step:not(:last-child)::after,
    .care-journey-step:last-child::before,
    .care-journey-step:last-child::after {
        display: none;
    }

    .service-care-container {
        grid-template-columns: 1fr;
    }

    .service-care-image img {
        height: 420px;
    }

    .service-care-content {
        padding: 35px 0 0;
    }

    .patient-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .emergency-help-container {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* Why Choose */

    .holy-choose-section {
        padding: 25px 14px;
    }

    .holy-choose-container {
        display: block;
        min-height: auto;
        background: #f7f7f7;
        box-shadow: none;
    }

    .holy-choose-content {
        width: 100%;
        padding: 20px 22px 24px;
    }

    .holy-choose-content h2 {
        margin-bottom: 20px;
        font-size: 21px;
        text-align: left;
    }

    .holy-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .holy-choose-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 155px;
        padding: 15px 10px;
        box-shadow: none;
    }

    .holy-choose-icon {
        margin-bottom: 9px;
        font-size: 31px;
    }

    .holy-choose-item h3 {
        margin-bottom: 8px;
        font-size: 13px;
        text-align: center;
    }

    .holy-choose-item p {
        width: 100%;
        font-size: 10px;
        line-height: 1.5;
        text-align: center;
    }

    .holy-choose-image {
        display: none;
    }


    /* Care Journey */

    .care-journey-section {
        padding: 25px 10px;
        background: #f5f6f7;
    }

    .care-journey-container {
        min-height: auto;
        padding: 12px 15px 28px;
        background:
            radial-gradient(
                circle at center,
                rgba(163, 68, 123, 0.035),
                transparent 48%
            ),
            #ffffff;
        box-shadow: 0 5px 20px rgba(20, 62, 82, 0.06);
    }

    .care-journey-container > h2 {
        top: 0;
        margin: 0 auto 26px;
        padding: 10px 28px;
        font-size: 20px;
    }

    .care-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 20px;
    }

    .care-journey-step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .care-step-circle {
        width: 116px;
        height: 116px;
        margin-bottom: 12px;
        transform: none;
    }

    .care-step-circle::before {
        width: 116px;
        height: 58px;
        border-width: 6px;
        border-radius: 116px 116px 0 0;
    }

    .care-step-circle::after {
        width: 116px;
        height: 58px;
        border-radius: 0 0 116px 116px;
    }

    .care-step-number {
        top: 14px;
        font-size: 19px;
    }

    .care-step-icon {
        height: 116px;
        padding-bottom: 19px;
        font-size: 36px;
        transform: none;
    }

    .care-journey-step h3 {
        margin-bottom: 7px;
        font-size: 15px;
    }

    .care-journey-step p {
        width: 100%;
        max-width: 230px;
        font-size: 11px;
        text-align: center;
    }


    /* How We Care */

    .service-care-section {
        padding: 35px 15px;
    }

    .service-care-container {
        padding: 20px;
    }

    .service-care-image img {
        height: 300px;
    }

    .service-care-heading {
        margin-bottom: 28px;
        text-align: center;
    }

    .service-care-heading h2 {
        font-size: 27px;
    }

    .service-care-heading span {
        margin-right: auto;
        margin-left: auto;
    }

    .service-care-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .service-care-step::after {
        display: none;
    }


    /* Patient Support */

    .patient-support-section {
        padding: 30px 10px;
        background: #f5f6f7;
    }

    .patient-support-heading {
        margin-bottom: 25px;
    }

    .patient-support-heading h2 {
        font-size: 25px;
        text-align: center;
    }

    .patient-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .patient-support-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 202px;
        padding: 18px 10px;
    }

    .patient-support-icon {
        width: 62px;
        height: 58px;
        margin: 0 auto 8px;
        font-size: 38px;
    }

    .patient-support-card h3 {
        margin-bottom: 8px;
        font-size: 16px;
        text-align: center;
    }

    .patient-support-card p {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        line-height: 1.45;
        text-align: center;
    }


    /* Emergency Help */

    .emergency-help-section {
        padding: 40px 15px;
    }

    .emergency-help-message {
        min-height: 250px;
        padding: 35px 25px;
    }

    .emergency-help-text h2 {
        font-size: 29px;
    }

    .emergency-help-contact {
        min-height: 250px;
        padding: 35px 20px;
    }

    .emergency-phone {
        gap: 10px;
    }

    .emergency-phone span {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .emergency-phone a {
        font-size: 23px;
    }

    .emergency-help-buttons {
        flex-direction: column;
        width: 100%;
    }

    .emergency-call-button,
    .emergency-appointment-button {
        width: 100%;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .holy-choose-content {
        padding: 18px 10px 20px;
    }

    .holy-choose-content h2 {
        font-size: 19px;
    }

    .holy-choose-grid {
        gap: 8px;
    }

    .holy-choose-item {
        min-height: 160px;
        padding: 13px 7px;
    }

    .holy-choose-item h3 {
        font-size: 12px;
    }

    .holy-choose-item p {
        font-size: 9px;
    }

    .care-journey-container {
        padding-right: 8px;
        padding-left: 8px;
    }

    .care-journey-grid {
        gap: 30px 10px;
    }

    .care-step-circle {
        width: 105px;
        height: 105px;
    }

    .care-step-circle::before,
    .care-step-circle::after {
        width: 105px;
        height: 52.5px;
    }

    .care-step-icon {
        height: 105px;
        font-size: 32px;
    }

    .care-journey-step h3 {
        font-size: 13px;
    }

    .care-journey-step p {
        font-size: 10px;
    }

    .patient-support-heading h2 {
        font-size: 21px;
    }

    .patient-support-grid {
        gap: 12px 8px;
    }

    .patient-support-card {
        min-height: 195px;
        padding: 15px 7px;
    }

    .patient-support-card h3 {
        font-size: 14px;
    }

    .patient-support-card p {
        font-size: 11px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .holy-choose-item,
    .care-step-circle,
    .care-step-icon,
    .service-care-image img,
    .service-care-icon,
    .patient-support-card,
    .emergency-call-button,
    .emergency-appointment-button {
        transition: none;
    }
}

/* =========================================================
   DR. V.P. GOYAL — AREAS OF EXPERTISE
========================================================= */

.vp-expertise-section,
.vp-expertise-section * {
    box-sizing: border-box;
}

.vp-expertise-section {
    width: 100%;
    padding: 55px 20px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f8f9 50%,
            #ffffff 100%
        );
    font-family: "Hind", sans-serif;
}

/* Same width as existing Dr. V.P. Goyal container */

.vp-expertise-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

/* Heading */

.vp-expertise-heading {
    margin-bottom: 32px;
    text-align: center;
}

.vp-expertise-heading h2 {
    margin: 0;
    color: #363b3e;
    font-family: "Hind", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.vp-expertise-heading span {
    display: block;
    width: 58px;
    height: 3px;
    margin: 12px auto 0;
    background:
        linear-gradient(
            90deg,
            #145477,
            #a3447b
        );
}

/* Cards grid */

.vp-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 28px;
}

/* Card */

.vp-expertise-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 185px;
    padding: 25px 18px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e4e6;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(20, 62, 82, 0.07);
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Top accent */

.vp-expertise-card::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            #145477,
            #a3447b,
            #d72c73
        );
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.vp-expertise-card:hover {
    border-color: #d6a1bf;
    transform: translateY(-6px);
    box-shadow: 0 13px 28px rgba(20, 62, 82, 0.13);
}

.vp-expertise-card:hover::before {
    transform: scaleX(1);
}

/* Icon */

.vp-expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 72px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #fafafa;
    font-size: 49px;
    line-height: 1;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.vp-expertise-card:hover .vp-expertise-icon {
    background: #f5edf2;
    transform: scale(1.08);
}

.vp-icon-purple {
    color: #a3447b;
}

.vp-icon-blue {
    color: #386eb8;
}

.vp-icon-pink {
    color: #d72c73;
}

/* Card heading */

.vp-expertise-card h3 {
    margin: 0;
    color: #363b3e;
    font-family: "Hind", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

/* Tablet */

@media (max-width: 991px) {
    .vp-expertise-grid {
        gap: 18px;
    }

    .vp-expertise-card {
        min-height: 170px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .vp-expertise-section {
        padding: 40px 12px;
    }

    .vp-expertise-heading {
        margin-bottom: 25px;
    }

    .vp-expertise-heading h2 {
        font-size: 27px;
    }

    .vp-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vp-expertise-card {
        min-height: 150px;
        padding: 18px 9px;
    }

    .vp-expertise-icon {
        width: 62px;
        height: 58px;
        margin-bottom: 9px;
        font-size: 39px;
    }

    .vp-expertise-card h3 {
        font-size: 14px;
    }
}

/* Very small mobile */

@media (max-width: 380px) {
    .vp-expertise-grid {
        gap: 8px;
    }

    .vp-expertise-card {
        min-height: 140px;
        padding: 15px 7px;
    }

    .vp-expertise-icon {
        width: 55px;
        height: 52px;
        font-size: 35px;
    }

    .vp-expertise-card h3 {
        font-size: 12px;
    }
}

/* =========================================================
   DOCTOR CARE SECTIONS
   Dr. V.P. Goyal + Dr. Shikha Goyal + Dr. Tushar Goyal
========================================================= */

.vp-trusted-care-section,
.shikha-care-section,
.tushar-care-section,
.vp-trusted-care-section *,
.shikha-care-section *,
.tushar-care-section * {
    box-sizing: border-box;
}

.vp-trusted-care-section,
.shikha-care-section,
.tushar-care-section {
    position: relative;
    width: 100%;
    padding: 45px 20px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(255, 255, 255, 0.82),
            transparent 31%
        ),
        linear-gradient(
            105deg,
            #f8fcfe 0%,
            #f1f8fc 55%,
            #f9fcfe 100%
        );
    font-family: "Hind", sans-serif;
}

.vp-trusted-care-section::before,
.shikha-care-section::before,
.tushar-care-section::before {
    position: absolute;
    top: -160px;
    right: -130px;
    width: 390px;
    height: 390px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
}

.vp-trusted-care-container,
.shikha-care-box,
.tushar-care-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    width: 100%;
    max-width: 1170px;
    min-height: 470px;
    margin: 0 auto;
    padding: 35px 45px;
}

.vp-trusted-care-image,
.shikha-care-image,
.tushar-care-image {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 410px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    box-shadow:
        0 14px 32px rgba(19, 74, 103, 0.12),
        0 4px 10px rgba(19, 74, 103, 0.06);
}

.vp-trusted-care-image::after,
.shikha-care-image::after,
.tushar-care-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    pointer-events: none;
    background: linear-gradient(90deg, #075f87, #b24787, #d72c73);
    content: "";
}

.vp-trusted-care-image img,
.shikha-care-image img,
.tushar-care-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: filter 0.4s ease, transform 0.45s ease;
}

.vp-trusted-care-image:hover img,
.shikha-care-image:hover img,
.tushar-care-image:hover img {
    filter: contrast(1.02) saturate(1.03);
    transform: scale(1.02);
}

.vp-trusted-care-content,
.shikha-care-content,
.tushar-care-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 48px;
}

.vp-trusted-care-heading {
    margin-bottom: 17px;
}

.vp-trusted-care-heading h2,
.shikha-care-content h2,
.tushar-care-content h2 {
    margin: 0;
    color: #173043;
    font-family: "Hind", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.28;
}

.vp-trusted-care-heading span,
.shikha-care-title-line,
.tushar-care-title-line {
    display: block;
    width: 58px;
    height: 3px;
    margin: 10px 0 17px;
    background: linear-gradient(90deg, #a3447b, #d72c73);
    border-radius: 10px;
}

.vp-trusted-care-description,
.shikha-care-content > p,
.tushar-care-content > p {
    max-width: 570px;
    margin: 0 0 27px;
    color: #3a505d;
    font-family: "Hind", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.62;
}

.vp-trusted-care-highlights,
.shikha-care-highlights,
.tushar-care-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
}

.vp-care-highlight,
.shikha-care-highlight,
.tushar-care-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 125px;
    padding: 14px 10px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.vp-care-highlight:not(:last-child),
.shikha-care-highlight:not(:last-child),
.tushar-care-highlight:not(:last-child) {
    border-right: 1px solid rgba(7, 95, 135, 0.16);
}

.vp-care-highlight:hover,
.shikha-care-highlight:hover,
.tushar-care-highlight:hover {
    background: rgba(255, 255, 255, 0.42);
    transform: translateY(-4px);
}

.vp-care-highlight-icon,
.shikha-care-highlight i,
.tushar-care-highlight i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 48px;
    margin: 0 auto 7px;
    color: #075f87;
    font-size: 33px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.vp-care-highlight:hover .vp-care-highlight-icon,
.shikha-care-highlight:hover i,
.tushar-care-highlight:hover i {
    transform: scale(1.1);
}

.vp-care-purple,
.shikha-care-highlight:nth-child(2) i,
.tushar-care-highlight:nth-child(2) i {
    color: #b24787;
}

.vp-care-blue {
    color: #386eb8;
}

.vp-care-pink {
    color: #d72c73;
}

.vp-care-highlight h3,
.shikha-care-highlight strong,
.tushar-care-highlight strong {
    display: block;
    margin: 0 0 2px;
    color: #075681;
    font-family: "Hind", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.shikha-care-highlight span,
.tushar-care-highlight span {
    display: block;
    color: #293f4c;
    font-family: "Hind", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .vp-trusted-care-container,
    .shikha-care-box,
    .tushar-care-box {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 30px;
    }

    .vp-trusted-care-image,
    .shikha-care-image,
    .tushar-care-image {
        height: 440px;
    }

    .vp-trusted-care-content,
    .shikha-care-content,
    .tushar-care-content {
        padding: 32px 0 0;
    }

    .vp-trusted-care-heading h2,
    .shikha-care-content h2,
    .tushar-care-content h2 {
        font-size: 27px;
    }
}

@media (max-width: 767px) {
    .vp-trusted-care-section,
    .shikha-care-section,
    .tushar-care-section {
        padding: 35px 12px 0;
    }

    .vp-trusted-care-container,
    .shikha-care-box,
    .tushar-care-box {
        display: block;
        padding: 18px;
    }

    .vp-trusted-care-image,
    .shikha-care-image,
    .tushar-care-image {
        height: 330px;
        border-width: 3px;
    }

    .vp-trusted-care-image img,
    .shikha-care-image img,
    .tushar-care-image img {
        object-position: center top;
    }

    .vp-trusted-care-content,
    .shikha-care-content,
    .tushar-care-content {
        padding: 25px 0 0;
    }

    .vp-trusted-care-heading {
        text-align: center;
    }

    .vp-trusted-care-heading h2,
    .shikha-care-content h2,
    .tushar-care-content h2 {
        font-size: 23px;
        text-align: center;
    }

    .vp-trusted-care-heading span,
    .shikha-care-title-line,
    .tushar-care-title-line {
        margin-right: auto;
        margin-left: auto;
    }

    .vp-trusted-care-description,
    .shikha-care-content > p,
    .tushar-care-content > p {
        font-size: 13px;
        text-align: center;
    }

    .vp-care-highlight,
    .shikha-care-highlight,
    .tushar-care-highlight {
        min-height: 105px;
        padding: 7px 4px;
    }

    .vp-care-highlight-icon,
    .shikha-care-highlight i,
    .tushar-care-highlight i {
        width: 42px;
        height: 40px;
        font-size: 27px;
    }

    .vp-care-highlight h3,
    .shikha-care-highlight strong,
    .tushar-care-highlight strong {
        font-size: 15px;
    }

    .shikha-care-highlight span,
    .tushar-care-highlight span {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .vp-trusted-care-image,
    .shikha-care-image,
    .tushar-care-image {
        height: 285px;
    }

    .vp-trusted-care-heading h2,
    .shikha-care-content h2,
    .tushar-care-content h2 {
        font-size: 20px;
    }

    .vp-care-highlight h3,
    .shikha-care-highlight strong,
    .tushar-care-highlight strong {
        font-size: 13px;
    }

    .shikha-care-highlight span,
    .tushar-care-highlight span {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vp-trusted-care-image img,
    .shikha-care-image img,
    .tushar-care-image img,
    .vp-care-highlight,
    .shikha-care-highlight,
    .tushar-care-highlight {
        transition: none;
    }
}

/* =========================================================
   DR. V.P. GOYAL — APPOINTMENT CTA
========================================================= */

.vp-appointment-section,
.vp-appointment-section * {
    box-sizing: border-box;
}

.vp-trusted-care-section {
    padding-bottom: 0;
}

.vp-appointment-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: "Hind", sans-serif;
}

.vp-appointment-container {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-height: 285px;
    margin: 0;
    overflow: hidden;
    text-align: center;
}

/* Background image */

.vp-appointment-background {
    position: absolute;
    z-index: -4;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter:
        brightness(0.78)
        saturate(0.65)
        contrast(0.92);
}

/* Blue overlay */

.vp-appointment-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 62, 114, 0.84),
        rgba(12, 96, 163, 0.76),
        rgba(5, 62, 114, 0.84)
    );
}

/* Subtle medical pattern */

.vp-appointment-pattern {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(
            90deg,
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        ),
        linear-gradient(
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        );
    background-position: 40px 35px;
    background-size: 90px 90px;
}

/* Content */

.vp-appointment-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

/* Heading */

.vp-appointment-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 2px 7px rgba(0, 31, 57, 0.3);
}

/* Heading underline */

.vp-appointment-line {
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 14px;
    background: linear-gradient(
        90deg,
        #a3447b,
        #ef3c83
    );
}

/* Description */

.vp-appointment-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 31, 57, 0.25);
}

/* Appointment button */

.vp-appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 52px;
    padding: 13px 28px;
    color: #ffffff;
    border: 2px solid #c24d8a;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        #a3447b,
        #c14e8a
    );
    box-shadow: 0 7px 18px rgba(97, 15, 67, 0.22);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.vp-appointment-button:hover,
.vp-appointment-button:focus {
    color: #ffffff;
    border-color: #ec347b;
    background: #d72c73;
    box-shadow: 0 10px 23px rgba(97, 15, 67, 0.3);
    text-decoration: none;
    transform: translateY(-3px);
}

/* Phone number */

.vp-appointment-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 14px;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.vp-appointment-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #145477;
    border-radius: 50%;
    background: #ffffff;
    font-size: 14px;
}

.vp-appointment-phone:hover,
.vp-appointment-phone:focus {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile */

@media (max-width: 767px) {
    .vp-appointment-container {
        min-height: 310px;
    }

    .vp-appointment-background {
        object-position: 55% center;
    }

    .vp-appointment-content {
        width: 100%;
        margin: 0;
        padding: 35px 15px;
    }

    .vp-appointment-content h2 {
        font-size: 26px;
    }

    .vp-appointment-content p {
        max-width: 340px;
        font-size: 13px;
    }

    .vp-appointment-button {
        min-width: 220px;
        font-size: 13px;
    }

    .vp-appointment-phone {
        font-size: 16px;
    }
}

/* Very small mobile */

@media (max-width: 380px) {
    .vp-appointment-content h2 {
        font-size: 23px;
    }

    .vp-appointment-button {
        width: 100%;
        min-width: 0;
    }
}

/* ==================================================
   DR. SHIKHA GOYAL — AREAS OF EXPERTISE
================================================== */

.shikha-expertise-section {
    width: 100%;
    padding: 55px 0 65px;
    overflow: hidden;
    background-color: #f5f7f8;
    font-family: "Hind", sans-serif;
}

/* Same width as existing website sections */
.shikha-expertise-section .container {
    padding-right: 15px;
    padding-left: 15px;
}

/* Heading */
.shikha-expertise-heading {
    margin-bottom: 38px;
    text-align: center;
}

.shikha-expertise-heading h2 {
    margin: 0;
    color: #172633;
    font-family: "Hind", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.shikha-expertise-heading span {
    display: block;
    width: 65px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(
        90deg,
        #a64088 0%,
        #d82b76 100%
    );
    border-radius: 10px;
}

/* Cards grid */
.shikha-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

/* Card */
.shikha-expertise-card {
    position: relative;
    min-width: 0;
    min-height: 180px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e1e6e9;
    border-radius: 5px;
    box-shadow: 0 7px 20px rgba(22, 55, 74, 0.07);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Top accent line */
.shikha-expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #075f87,
        #c13b82
    );
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Icon circle */
.shikha-expertise-card::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 50%;
    width: 76px;
    height: 76px;
    background-color: rgba(7, 95, 135, 0.06);
    border-radius: 50%;
    transform: translateX(-50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.shikha-expertise-card:nth-child(even)::after {
    background-color: rgba(178, 71, 135, 0.07);
}

/* Card hover */
.shikha-expertise-card:hover {
    border-color: rgba(178, 71, 135, 0.32);
    box-shadow: 0 13px 30px rgba(22, 55, 74, 0.13);
    transform: translateY(-5px);
}

.shikha-expertise-card:hover::before {
    width: 100%;
}

.shikha-expertise-card:hover::after {
    background-color: rgba(178, 71, 135, 0.1);
    transform: translateX(-50%) scale(1.08);
}

/* Icons */
.shikha-expertise-card i {
    position: relative;
    z-index: 1;
    margin-bottom: 23px;
    color: #07658d;
    font-size: 46px;
    line-height: 1;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.shikha-expertise-card:nth-child(even) i {
    color: #b24787;
}

.shikha-expertise-card:hover i {
    color: #d62976;
    transform: scale(1.08);
}

/* Card title */
.shikha-expertise-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #17232d;
    font-family: "Hind", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

/* Tablet */
@media (max-width: 991px) {
    .shikha-expertise-section {
        padding: 48px 0 55px;
    }

    .shikha-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .shikha-expertise-section {
        padding: 38px 0 44px;
    }

    .shikha-expertise-section .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .shikha-expertise-heading {
        margin-bottom: 27px;
    }

    .shikha-expertise-heading h2 {
        font-size: 27px;
    }

    .shikha-expertise-heading span {
        width: 54px;
        margin-top: 11px;
    }

    .shikha-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .shikha-expertise-card {
        min-height: 150px;
        padding: 22px 9px 18px;
    }

    .shikha-expertise-card::after {
        top: 26px;
        width: 60px;
        height: 60px;
    }

    .shikha-expertise-card i {
        margin-bottom: 19px;
        font-size: 36px;
    }

    .shikha-expertise-card h3 {
        font-size: 14px;
        line-height: 1.3;
    }

    .shikha-expertise-card:hover {
        transform: translateY(-3px);
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .shikha-expertise-grid {
        gap: 10px;
    }

    .shikha-expertise-card {
        min-height: 145px;
        padding-right: 7px;
        padding-left: 7px;
    }

    .shikha-expertise-card h3 {
        font-size: 13px;
    }
}

/* ==================================================
   DR. SHIKHA GOYAL — APPOINTMENT CTA
================================================== */

.shikha-appointment-section,
.shikha-appointment-section * {
    box-sizing: border-box;
}

.shikha-appointment-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: "Hind", sans-serif;
}

.shikha-appointment-container {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-height: 285px;
    margin: 0;
    overflow: hidden;
    text-align: center;
}

.shikha-appointment-background {
    position: absolute;
    z-index: -4;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: brightness(0.78) saturate(0.65) contrast(0.92);
}

.shikha-appointment-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 62, 114, 0.84),
        rgba(12, 96, 163, 0.76),
        rgba(5, 62, 114, 0.84)
    );
}

.shikha-appointment-pattern {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(
            90deg,
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        ),
        linear-gradient(
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        );
    background-position: 40px 35px;
    background-size: 90px 90px;
}

.shikha-appointment-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
}

.shikha-appointment-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 2px 7px rgba(0, 31, 57, 0.3);
}

.shikha-appointment-line {
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 14px;
    background: linear-gradient(90deg, #a3447b, #ef3c83);
}

.shikha-appointment-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 31, 57, 0.25);
}

.shikha-appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 52px;
    padding: 13px 28px;
    color: #ffffff;
    border: 2px solid #c24d8a;
    border-radius: 4px;
    background: linear-gradient(90deg, #a3447b, #c14e8a);
    box-shadow: 0 7px 18px rgba(97, 15, 67, 0.22);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.shikha-appointment-button:hover,
.shikha-appointment-button:focus {
    color: #ffffff;
    border-color: #ec347b;
    background: #d72c73;
    box-shadow: 0 10px 23px rgba(97, 15, 67, 0.3);
    text-decoration: none;
    transform: translateY(-3px);
}

.shikha-appointment-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 14px;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.shikha-appointment-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #145477;
    border-radius: 50%;
    background: #ffffff;
    font-size: 14px;
}

.shikha-appointment-phone:hover,
.shikha-appointment-phone:focus {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .shikha-appointment-container {
        min-height: 310px;
    }

    .shikha-appointment-background {
        object-position: 55% center;
    }

    .shikha-appointment-content {
        padding: 35px 15px;
    }

    .shikha-appointment-content h2 {
        font-size: 26px;
    }

    .shikha-appointment-content p {
        max-width: 340px;
        font-size: 13px;
    }

    .shikha-appointment-button {
        min-width: 220px;
        font-size: 13px;
    }

    .shikha-appointment-phone {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .shikha-appointment-content h2 {
        font-size: 23px;
    }

    .shikha-appointment-button {
        width: 100%;
        min-width: 0;
    }
}

/* ==================================================
   DR. TUSHAR GOYAL — AREAS OF EXPERTISE
================================================== */

.tushar-expertise-section,
.tushar-expertise-section * {
    box-sizing: border-box;
}

.tushar-expertise-section {
    width: 100%;
    padding: 55px 0 65px;
    overflow: hidden;
    background: #f5f7f8;
    font-family: "Hind", sans-serif;
}

.tushar-expertise-section .container {
    padding-right: 15px;
    padding-left: 15px;
}

/* Heading */
.tushar-expertise-heading {
    margin-bottom: 38px;
    text-align: center;
}

.tushar-expertise-heading h2 {
    margin: 0;
    color: #172633;
    font-family: "Hind", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.tushar-expertise-heading span {
    display: block;
    width: 65px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(
        90deg,
        #075f87,
        #b24787
    );
    border-radius: 10px;
}

/* Grid */
.tushar-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

/* Card */
.tushar-expertise-card {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e6e9;
    border-radius: 5px;
    box-shadow: 0 7px 20px rgba(22, 55, 74, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

/* Top hover line */
.tushar-expertise-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #075f87,
        #b24787
    );
    content: "";
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.tushar-expertise-card:hover {
    border-color: rgba(7, 95, 135, 0.35);
    box-shadow: 0 13px 30px rgba(22, 55, 74, 0.13);
    transform: translateY(-5px);
}

.tushar-expertise-card:hover::before {
    width: 100%;
}

/* Icon */
.tushar-expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    color: #075f87;
    background: rgba(7, 95, 135, 0.06);
    border-radius: 50%;
    font-size: 47px;
    line-height: 1;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.tushar-expertise-card:nth-child(even)
.tushar-expertise-icon {
    color: #b24787;
    background: rgba(178, 71, 135, 0.07);
}

.tushar-expertise-card:hover
.tushar-expertise-icon {
    color: #d62976;
    background: rgba(178, 71, 135, 0.11);
    transform: scale(1.08);
}

/* Card title */
.tushar-expertise-card h3 {
    margin: 0;
    color: #17232d;
    font-family: "Hind", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

/* Tablet */
@media (max-width: 991px) {
    .tushar-expertise-section {
        padding: 48px 0 55px;
    }

    .tushar-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .tushar-expertise-section {
        padding: 38px 0 44px;
    }

    .tushar-expertise-heading {
        margin-bottom: 27px;
    }

    .tushar-expertise-heading h2 {
        font-size: 27px;
    }

    .tushar-expertise-heading span {
        width: 54px;
        margin-top: 11px;
    }

    .tushar-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tushar-expertise-card {
        min-height: 155px;
        padding: 22px 9px 18px;
    }

    .tushar-expertise-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
        font-size: 36px;
    }

    .tushar-expertise-card h3 {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .tushar-expertise-grid {
        gap: 10px;
    }

    .tushar-expertise-card {
        min-height: 145px;
        padding-right: 7px;
        padding-left: 7px;
    }

    .tushar-expertise-card h3 {
        font-size: 13px;
    }
}
/* ==================================================
   DR. TUSHAR GOYAL — APPOINTMENT CTA
================================================== */

.tushar-appointment-section,
.tushar-appointment-section * {
    box-sizing: border-box;
}

.tushar-appointment-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: "Hind", sans-serif;
}

.tushar-appointment-container {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 285px;
    margin: 0;
    overflow: hidden;
    text-align: center;
}

/* Background image */
.tushar-appointment-background {
    position: absolute;
    z-index: -4;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter:
        brightness(0.78)
        saturate(0.65)
        contrast(0.92);
}

/* Blue overlay */
.tushar-appointment-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 62, 114, 0.84),
        rgba(12, 96, 163, 0.76),
        rgba(5, 62, 114, 0.84)
    );
}

/* Medical pattern */
.tushar-appointment-pattern {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(
            90deg,
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        ),
        linear-gradient(
            transparent 42%,
            #ffffff 42%,
            #ffffff 58%,
            transparent 58%
        );
    background-position: 40px 35px;
    background-size: 90px 90px;
}

/* Content */
.tushar-appointment-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
}

.tushar-appointment-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 2px 7px rgba(0, 31, 57, 0.3);
}

.tushar-appointment-line {
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 14px;
    background: linear-gradient(
        90deg,
        #a3447b,
        #ef3c83
    );
}

.tushar-appointment-content p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 31, 57, 0.25);
}

/* Button */
.tushar-appointment-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    min-height: 52px;
    padding: 13px 28px;
    color: #ffffff;
    border: 2px solid #c24d8a;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        #a3447b,
        #c14e8a
    );
    box-shadow: 0 7px 18px rgba(97, 15, 67, 0.22);
    font-family: "Hind", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.tushar-appointment-button:hover,
.tushar-appointment-button:focus {
    color: #ffffff;
    border-color: #ec347b;
    background: #d72c73;
    box-shadow: 0 10px 23px rgba(97, 15, 67, 0.3);
    text-decoration: none;
    transform: translateY(-3px);
}

/* Phone */
.tushar-appointment-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 14px;
    color: #ffffff;
    font-family: "Hind", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.tushar-appointment-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #145477;
    background: #ffffff;
    border-radius: 50%;
    font-size: 14px;
}

.tushar-appointment-phone:hover,
.tushar-appointment-phone:focus {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 767px) {
    .tushar-appointment-container {
        min-height: 320px;
    }

    .tushar-appointment-background {
        object-position: 55% center;
    }

    .tushar-appointment-content {
        padding: 35px 15px;
    }

    .tushar-appointment-content h2 {
        font-size: 26px;
    }

    .tushar-appointment-content p {
        max-width: 350px;
        font-size: 13px;
    }

    .tushar-appointment-button {
        min-width: 220px;
        font-size: 13px;
    }

    .tushar-appointment-phone {
        font-size: 16px;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .tushar-appointment-content h2 {
        font-size: 23px;
    }

    .tushar-appointment-button {
        width: 100%;
        min-width: 0;
    }
}
