.doctor-home-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4fbff 0%, #ffffff 55%, #eefaf7 100%);
    overflow: hidden;
}

.doctor-home-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.doctor-home-content {
    width: 52%;
}

/* Features */

.doctor-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 25px;
    margin-bottom: 30px;
}

.doctor-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #40565f;
    font-size: 14px;
    font-weight: 600;
}

.doctor-feature span {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dff6ef;
    color: #05867b;
    font-size: 12px;
    font-weight: bold;
}

/* Buttons */

.doctor-home-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.doctor-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 8px;
    background: #05867b;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.doctor-primary-btn:hover {
    background: #05867b;
    transform: translateY(-2px);
}

.doctor-primary-btn span {
    font-size: 20px;
}

.doctor-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border: 1px solid #d8e5e8;
    border-radius: 8px;
    background: #ffffff;
    color: #163b4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.call-icon {
    color: #05867b;
}

/* Image Area */

.doctor-home-image {
    width: 36%;
    min-height: 390px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.doctor-image-circle {
    width: 360px;
    height: 360px;
    position: absolute;
    bottom: 5px;
    border-radius: 50%;
    background: #dff5ef;
}

.doctor-home-image img {
    position: relative;
    z-index: 2;
    width: 350px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}

/* Floating Card */

.doctor-info-card {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(22, 59, 74, 0.12);
}

.doctor-check {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e3f7f1;
    color: #05867b;
    font-weight: bold;
}

.doctor-info-card strong {
    display: block;
    color: #163b4a;
    font-size: 13px;
}

.doctor-info-card small {
    display: block;
    margin-top: 3px;
    color: #7b8b91;
    font-size: 11px;
}


/* ==============================
   Responsive
================================ */

@media (max-width: 900px) {

    .doctor-home-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .doctor-home-content,
    .doctor-home-image {
        width: 100%;
    }

    .doctor-home-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .doctor-features {
        justify-content: center;
    }

    .doctor-home-buttons {
        justify-content: center;
    }

    .doctor-home-image {
        min-height: 350px;
    }

    .doctor-info-card {
        left: 10%;
    }
}

@media (max-width: 600px) {

    .doctor-home-section {
        padding: 55px 18px;
    }

    .doctor-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .doctor-home-buttons {
        flex-direction: column;
        width: 100%;
    }

    .doctor-primary-btn,
    .doctor-call-btn {
        width: 100%;
        justify-content: center;
    }

    .doctor-home-image {
        min-height: 290px;
    }

    .doctor-image-circle {
        width: 270px;
        height: 270px;
    }

    .doctor-home-image img {
        width: 270px;
    }

    .doctor-info-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        white-space: nowrap;
    }
}

/* =========================================
   Healthcare Services Across Gurgaon
========================================= */

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 115px;
    padding: 16px;
    border: 1px solid #e3edef;
    border-radius: 16px;
    background: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #b9e5dc;
    box-shadow: 0 12px 30px rgba(22, 59, 74, 0.09);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8f8f4;
    font-size: 32px;
}

.service-card h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: #788990;
    font-size: 14px;
    line-height: 1.5;
}

/* Arrow */

.service-arrow {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: #079b87;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(4px);
}

/* Button */

.services-button {
    text-align: center;
    margin-top: 38px;
}

.view-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 8px;
    background: #079b87;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-services-btn:hover {
    background: #067d6e;
    transform: translateY(-2px);
}

.view-services-btn span {
    font-size: 18px;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 34px;
    }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .gurgaon-services {
        padding: 55px 16px;
    }

    .services-heading {
        margin-bottom: 30px;
    }

    .services-heading h2 {
        font-size: 29px;
    }

    .services-heading p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
    }
}