/* GURUGRAM PREMIUM HERO START */

.gurugram-hero{

    position:relative;

    padding:90px 0;

    overflow:hidden;

    background:url("../images/1.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

.gurugram-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,15,5,.92) 0%,
        rgba(17,29,10,.88) 45%,
        rgba(40,74,13,.80) 100%
    );
}

.gurugram-content{

    position:relative;

    z-index:2;

    color:#fff;

    max-width:650px;
}

.gurugram-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    border:1px solid #d8c07a;

    color:#d8c07a;

    font-size:14px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);
}

.gurugram-title{

    font-size:60px;

    line-height:1;

    font-weight:900;

    margin-bottom:25px;

    color:#fff;
}

.gurugram-title span{

    display:block;

    color:#d8c07a;
}

.gurugram-text{

    color:#e2e2e2;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;
}

.gurugram-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.gurugram-btn-primary{

    background:#d8c07a;

    color:#111;

    text-decoration:none;

    padding:16px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.gurugram-btn-primary:hover{

    color:#111;

    transform:translateY(-3px);
}

.gurugram-btn-outline{

    border:1px solid #d8c07a;

    color:#d8c07a;

    text-decoration:none;

    padding:16px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.3s;
}

.gurugram-btn-outline:hover{

    background:#d8c07a;

    color:#111;
}

.gurugram-card{

    position:relative;

    z-index:2;

    background:#2a241d;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 30px 70px rgba(0,0,0,.45);

    max-width:620px;

    margin-left:auto;

    border:1px solid rgba(216,192,122,.15);
}

.gurugram-card-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;
}

.gurugram-card-content{

    padding:30px;
}

.gurugram-card-content h3{

    color:#d8c07a;

    font-size:30px;

    font-weight:800;

    margin-bottom:20px;
}

.gurugram-card-content ul{

    list-style:none;

    padding:0;

    margin:0;
}

.gurugram-card-content li{

    color:#fff;

    margin-bottom:12px;

    font-size:16px;
}

@media(max-width:991px){

    .gurugram-hero{

        padding:60px 0;
    }

    .gurugram-title{

        font-size:52px;
    }

    .gurugram-card{

        margin-top:40px;
    }

    .gurugram-card-image img{

        height:320px;
    }

    .gurugram-buttons{

        flex-direction:column;
    }

    .gurugram-btn-primary,
    .gurugram-btn-outline{

        width:100%;

        text-align:center;
    }

}

/* GURUGRAM PREMIUM HERO END */




/* GALLERY SECTION START */

.gallery-section{

    position:relative;

    padding:60px 0;

    background: #284a0d;

    overflow:hidden;
}

.gallery-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-150px;

    left:-150px;

    border-radius:50%;

    background:rgba(216,192,122,.08);

    filter:blur(120px);
}

.gallery-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    bottom:-150px;

    right:-150px;

    border-radius:50%;

    background:rgba(216,192,122,.08);

    filter:blur(120px);
}

.gallery-badge{

    display:inline-block;

    padding:12px 26px;

    border-radius:50px;

    border:1px solid #d8c07a;

    color:#d8c07a;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;
}

.gallery-title{

    color:#fff;

    font-size:60px;

    font-weight:900;

    line-height:1.1;

    margin-bottom:20px;
}

.gallery-title span{

    display:block;

    color:#d8c07a;
}

.gallery-text{

    color:#d9d9d9;

    font-size:17px;

    line-height:1.9;
}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    background:#2a241d;

    border:1px solid rgba(216,192,122,.15);

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.40);
}

.gallery-card img{

    width:100%;

    height:330px;

    object-fit:cover;

    display:block;

    transition:.6s;
}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );

    opacity:0;

    transition:.4s;
}

.gallery-card:hover{

    transform:translateY(-10px);

    border-color:#d8c07a;

    box-shadow:
    0 20px 45px rgba(216,192,122,.18);
}

.gallery-card:hover img{

    transform:scale(1.08);
}

.gallery-card:hover .gallery-overlay{

    opacity:1;
}

@media(max-width:991px){

    .gallery-section{

        padding:70px 0;
    }

    .gallery-title{

        font-size:42px;
    }

    .gallery-card img{

        height:260px;
    }
}

@media(max-width:576px){

    .gallery-title{

        font-size:30px;
    }

    .gallery-text{

        font-size:15px;
    }

    .gallery-card{

        border-radius:18px;
    }

    .gallery-card img{

        height:180px;
    }

    .gallery-badge{

        font-size:12px;
    }
}

/* GALLERY SECTION END */




/* GALLERY PROFILES START */

.gallery-profiles{

    padding:60px 0;

    background:#1f3c05;

    position:relative;

    overflow:hidden;
}

.gallery-profile-card{

    background:#2a241d;

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(216,192,122,.15);

    transition:.4s;

    height:100%;

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}

.gallery-profile-card:hover{

    transform:translateY(-10px);

    border-color:#d8c07a;

    box-shadow:
    0 20px 50px rgba(216,192,122,.18);
}

.gallery-profile-image{

    overflow:hidden;
}

.gallery-profile-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;
}

.gallery-profile-card:hover img{

    transform:scale(1.08);
}

.gallery-profile-content{

    padding:28px;
}

.gallery-profile-content h3{

    color:#ffffff;

    font-size:32px;

    font-weight:800;

    margin-bottom:20px;
}

.gallery-profile-content ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;
}

.gallery-profile-content li{

    color:#e5e5e5;

    margin-bottom:12px;

    font-size:16px;
}

.gallery-profile-content i{

    color:#d8c07a;

    margin-right:8px;
}

.gallery-profile-btn{

    display:block;

    text-align:center;

    background:#d8c07a;

    color:#111;

    text-decoration:none;

    padding:15px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.gallery-profile-btn:hover{

    background:#ffffff;

    color:#111;
}

@media(max-width:991px){

    .gallery-profile-image img{

        height:340px;
    }

}

@media(max-width:576px){

    .gallery-profiles{

        padding:70px 0;
    }

    .gallery-profile-image img{

        height:280px;
    }

    .gallery-profile-content h3{

        font-size:24px;
    }

}

/* GALLERY PROFILES END */





/* GALLERY FEATURES START */

.gallery-features{

    padding:100px 0;

    background:
    linear-gradient(
        180deg,
        #1f3c05 0%,
        #284a0d 100%
    );

    position:relative;

    overflow:hidden;
}

.gallery-feature-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    border:1px solid #d8c07a;

    color:#d8c07a;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.gallery-feature-title{

    font-size:64px;

    font-weight:900;

    line-height:1.1;

    color:#ffffff;

    margin-bottom:25px;
}

.gallery-feature-title span{

    display:block;

    color:#d8c07a;
}

.gallery-feature-text{

    color:#dddddd;

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:600px;
}

.gallery-feature-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:rgba(42,36,29,.85);

    backdrop-filter:blur(10px);

    padding:25px;

    border-radius:25px;

    margin-bottom:20px;

    border-left:4px solid #d8c07a;

    border-top:1px solid rgba(216,192,122,.10);

    border-right:1px solid rgba(216,192,122,.10);

    border-bottom:1px solid rgba(216,192,122,.10);

    transition:.4s;
}

.gallery-feature-item:hover{

    transform:translateX(8px);

    box-shadow:
    0 15px 40px rgba(216,192,122,.15);
}

.gallery-feature-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#d8c07a;

    color:#111;

    font-size:28px;
}

.gallery-feature-item h4{

    color:#ffffff;

    font-size:24px;

    font-weight:800;

    margin-bottom:10px;
}

.gallery-feature-item p{

    color:#d7d7d7;

    margin:0;

    line-height:1.8;
}

.gallery-feature-image{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    border:1px solid rgba(216,192,122,.15);

    box-shadow:
    0 25px 60px rgba(0,0,0,.40);
}

.gallery-feature-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    display:block;
}

.gallery-feature-floating{

    position:absolute;

    bottom:30px;

    left:30px;

    background:rgba(42,36,29,.95);

    padding:20px 30px;

    border-radius:20px;

    border:1px solid rgba(216,192,122,.20);

    backdrop-filter:blur(10px);
}

.gallery-feature-floating h5{

    color:#d8c07a;

    font-size:22px;

    font-weight:800;

    margin-bottom:5px;
}

.gallery-feature-floating span{

    color:#ffffff;
}

@media(max-width:991px){

    .gallery-features{

        padding:70px 0;
    }

    .gallery-feature-title{

        font-size:42px;
    }

    .gallery-feature-image img{

        height:450px;
    }

}

@media(max-width:576px){

    .gallery-feature-title{

        font-size:32px;
    }

    .gallery-feature-text{

        font-size:15px;
    }

    .gallery-feature-item{

        padding:18px;
    }

    .gallery-feature-icon{

        width:55px;

        height:55px;

        min-width:55px;

        font-size:22px;
    }

    .gallery-feature-item h4{

        font-size:18px;
    }

    .gallery-feature-image img{

        height:300px;
    }

    .gallery-feature-floating{

        left:15px;

        right:15px;

        bottom:15px;

        padding:15px;
    }

}

/* GALLERY FEATURES END */