/* ===== GURUGRAM NAVBAR CSS START ===== */
.gurugram-navbar{
    background: linear-gradient(90deg, #1f2235, #2c2f48);
    padding: 14px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.gurugram-logo{
    font-size: 28px;
    font-weight: 800;
    color: #af984c !important;
    letter-spacing: 1px;
}

.gurugram-logo span{
    color: #ffa600;
}

.gurugram-menu .nav-link{
    color: #b3d517;
    margin: 0 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.gurugram-menu .nav-link:hover{
    color: #af984c;
}

.gurugram-menu .nav-link.active{
    color: #af984c;
}

.gurugram-menu .nav-link.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #af984c;
}

/* CALL BOX */
.gurugram-call{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
    transition: 0.3s;
}

.gurugram-call:hover{
    background: rgba(255,215,0,0.1);
}

.gurugram-call i{
    color: #4caf50;
    font-size: 20px;
}

.gurugram-call span{
    display: block;
    color: #ffd700;
    font-size: 12px;
}

.gurugram-call strong{
    color: #fff;
    font-size: 14px;
}

/* TOGGLER CUSTOM */
.gurugram-toggler{
    border: none;
}

.gurugram-toggler-icon{
    width: 25px;
    height: 2px;
    background: #ffa600;
    display: block;
    position: relative;
}

.gurugram-toggler-icon::before,
.gurugram-toggler-icon::after{
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #af984c;
    left: 0;
}

.gurugram-toggler-icon::before{
    top: -7px;
}

.gurugram-toggler-icon::after{
    top: 7px;
}

/* MOBILE */
@media(max-width:991px){

    .gurugram-menu{
        text-align: center;
        margin-top: 20px;
    }

    .gurugram-menu .nav-link{
        margin: 12px 0;
        font-size: 16px;
    }

    .gurugram-call{
        justify-content: center;
        margin-top: 20px;
    }

}
/* ===== GURUGRAM NAVBAR CSS END ===== */



/* ===== GURUGRAM FOOTER CSS START ===== */

.gurugram-footer{
    background: #000;
    padding: 70px 0 20px;
    border-top: 3px solid #af984c;
}

.gurugram-footer-title{
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.gurugram-footer-title::after{
    content:"";
    width: 40px;
    height: 3px;
    background: #ffa600;
    display: block;
    margin-top: 6px;
}

.gurugram-footer-links{
    list-style: none;
    padding: 0;
}

.gurugram-footer-links li{
    margin-bottom: 10px;
}

.gurugram-footer-links a{
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.gurugram-footer-links a:hover{
    color: #ffa600;
    padding-left: 5px;
}

.gurugram-footer-text{
    color: #aaa;
    font-size: 14px;
}

.gurugram-footer-email{
    display: block;
    color: #ffa600;
    font-weight: 600;
    margin: 10px 0 15px;
    text-decoration: none;
}

.gurugram-social{
    display: flex;
    gap: 10px;
}

.gurugram-social a{
    width: 38px;
    height: 38px;
    background: #1f2235;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.gurugram-social a:hover{
    background: #ffa600;
    color: #000;
}

.gurugram-footer-bottom{
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:991px){

    .gurugram-footer{
        text-align: center;
    }

    .gurugram-social{
        justify-content: center;
    }

}

/* ===== GURUGRAM FOOTER CSS END ===== */