body {
    margin: 0;
    padding: 0;
}


/* ===== GURUGRAM ABOUT BANNER CSS START ===== */




/* ===== GURUGRAM CONTACT BANNER FIX START ===== */

.gurugram-contact-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../image/bbb.webp') center/cover no-repeat;
}

.gurugram-contact-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

.gurugram-contact-banner::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.2;
    top: -50px;
    left: -50px;
}

.gurugram-about-content {
    position: relative;
    z-index: 2;
}

.gurugram-about-title {
    font-size: 52px;
    font-weight: 800;
}

/* mobile */
@media (max-width: 768px) {
    .gurugram-contact-banner {
        height: 300px;
        padding: 20px;
    }

    .gurugram-about-title {
        font-size: 30px;
    }
}

/* ===== GURUGRAM CONTACT BANNER FIX END ===== */



/* ===== GURUGRAM CONTACT SECTION CSS START ===== */

.gurugram-contact-section {
    background: #0f172a;
    color: #fff;
}

.gurugram-contact-info h3,
.gurugram-contact-form h3 {
    font-weight: 700;
}

.gurugram-contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gurugram-contact-box i {
    width: 45px;
    height: 45px;
    background: #27cce0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gurugram-contact-form {
    background: #111827;
    padding: 30px;
    border-radius: 10px;
}

.gurugram-contact-form .form-control {
    background: #1f2937;
    border: none;
    color: #fff;
}

.gurugram-contact-form .form-control::placeholder {
    color: #9ca3af;
}

.gurugram-contact-form .form-control:focus {
    box-shadow: none;
    border: 1px solid #27cce0;
}

.gurugram-btn {
    background: #27cce0;
    border: none;
    padding: 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

.gurugram-btn:hover {
    background: #1fb5c6;
}

/* ===== GURUGRAM CONTACT SECTION CSS END ===== */



/* ===== GURUGRAM CONTACT CTA CSS START ===== */

.gurugram-contact-cta {
    background: linear-gradient(120deg, #27cce0, #0f172a);
    padding: 70px 20px;
    color: #fff;
}

.gurugram-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.gurugram-cta-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.gurugram-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gurugram-cta-btn {
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.gurugram-cta-btn.call {
    background: #fff;
    color: #000;
}

.gurugram-cta-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.gurugram-cta-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
    .gurugram-cta-title {
        font-size: 26px;
    }
}

/* ===== GURUGRAM CONTACT CTA CSS END ===== */




/* ===== GURUGRAM CONTACT CONTENT CSS START ===== */

.gurugram-contact-content {
    background: #020617;
    color: #fff;
}

.gurugram-content-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.gurugram-content-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #27cce0;
}

.gurugram-contact-content p {
    color: #cbd5f5;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .gurugram-content-title {
        font-size: 24px;
    }
}

/* ===== GURUGRAM CONTACT CONTENT CSS END ===== */

/* ===== GURUGRAM MOBILE FINAL FIX START ===== */

@media (max-width: 768px) {

    /* Banner */
    .gurugram-contact-banner {
        height: 260px;
        padding: 15px;
        text-align: center;
    }

    .gurugram-about-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .gurugram-about-subtitle {
        font-size: 14px;
    }

    /* Contact Section */
    .gurugram-contact-info {
        text-align: center;
    }

    .gurugram-contact-box {
        justify-content: center;
    }

    .gurugram-contact-form {
        padding: 20px;
    }

    /* Form Inputs */
    .gurugram-contact-form .form-control {
        font-size: 14px;
        padding: 10px;
    }

    /* Button */
    .gurugram-btn {
        padding: 10px;
        font-size: 14px;
    }

    /* CTA Section */
    .gurugram-contact-cta {
        padding: 50px 15px;
    }

    .gurugram-cta-text {
        font-size: 14px;
    }

    .gurugram-cta-buttons {
        flex-direction: column;
    }

    .gurugram-cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Content Section */
    .gurugram-contact-content {
        padding: 40px 15px;
    }

    .gurugram-content-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .gurugram-contact-content p {
        font-size: 14px;
        text-align: justify;
    }

}

/* ===== GURUGRAM MOBILE FINAL FIX END ===== */