/* GURUGRAM PREMIUM HERO START */

.gurugram-hero-section{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:url('../images/10.webp') center center/cover no-repeat;
    overflow:hidden;
}

.gurugram-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

.gurugram-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:60px;
    border-radius:30px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.gurugram-hero-badge{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.gurugram-hero-content h1{
    color:#ffffff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.gurugram-hero-content h1 span{
    color:#d4af37;
}

.gurugram-hero-content p{
    color:#f3f3f3;
    font-size:20px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;
}

.gurugram-hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.gurugram-call-btn{
    background:#7e178c;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.gurugram-call-btn:hover{
    background:#5f0f69;
    color:#fff;
}

.gurugram-whatsapp-btn{
    background:#0cbb4f;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.gurugram-whatsapp-btn:hover{
    background:#08973f;
    color:#fff;
}

.gurugram-call-btn i,
.gurugram-whatsapp-btn i{
    margin-right:8px;
}

@media(max-width:991px){

    .gurugram-hero-section{
        min-height:600px;
    }

    .gurugram-hero-content{
        padding:40px 25px;
    }

    .gurugram-hero-content h1{
        font-size:40px;
    }

    .gurugram-hero-content p{
        font-size:17px;
    }

}

@media(max-width:576px){

    .gurugram-hero-section{
        min-height:520px;
    }

    .gurugram-hero-content{
        padding:30px 20px;
        border-radius:20px;
    }

    .gurugram-hero-content h1{
        font-size:30px;
    }

    .gurugram-hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .gurugram-call-btn,
    .gurugram-whatsapp-btn{
        width:100%;
        justify-content:center;
        display:flex;
    }

}

/* GURUGRAM PREMIUM HERO END */





/* GALLERY PREMIUM PROFILE SECTION START */

.gallery-premium-section{
    padding:60px 0;
    background:#0a0909;
}

.gallery-premium-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.gallery-premium-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.20);
    color:#d4af37;
    font-weight:700;
    margin-bottom:20px;
}

.gallery-premium-heading h2{
    color:#fff;
    font-size:65px;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-premium-heading h2 span{
    display:block;
    color:#d4af37;
}

.gallery-premium-heading p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.9;
}

.gallery-profile-card{
    background:#161310;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.12);
    transition:.4s;
    height:100%;
}

.gallery-profile-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.gallery-profile-image{
    position:relative;
    overflow:hidden;
}

.gallery-profile-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.gallery-profile-card:hover img{
    transform:scale(1.08);
}

.gallery-profile-tag{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#000;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.gallery-profile-content{
    padding:30px;
}

.gallery-profile-content h3{
    color:#fff;
    font-size:34px;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-profile-meta{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.gallery-profile-meta span{
    color:#d0d0d0;
    font-size:15px;
}

.gallery-profile-meta i{
    color:#d4af37;
    margin-right:6px;
}

.gallery-profile-btn{
    width:100%;
    display:block;
    text-align:center;
    text-decoration:none;
    background:#d4af37;
    color:#000;
    padding:16px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.gallery-profile-btn:hover{
    background:#7e178c;
    color:#fff;
}

@media(max-width:991px){

    .gallery-premium-heading h2{
        font-size:48px;
    }

    .gallery-profile-image img{
        height:380px;
    }

}

@media(max-width:576px){

    .gallery-premium-section{
        padding:70px 0;
    }

    .gallery-premium-heading h2{
        font-size:34px;
    }

    .gallery-premium-heading p{
        font-size:15px;
    }

    .gallery-profile-image img{
        height:320px;
    }

    .gallery-profile-content{
        padding:20px;
    }

    .gallery-profile-content h3{
        font-size:26px;
    }

}

/* GALLERY PREMIUM PROFILE SECTION END */




/* GALLERY PREMIUM PROFILE SECTION START */

.gallery-profile-card{
    position:relative;
    background:#161310;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.12);
    transition:.45s;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.gallery-profile-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 50px rgba(212,175,55,.12);
}

.gallery-profile-image{
    position:relative;
    overflow:hidden;
}

.gallery-profile-image::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        transparent
    );
}

.gallery-profile-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.gallery-profile-card:hover .gallery-profile-image img{
    transform:scale(1.1);
}

.gallery-online-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#0cbb4f;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    z-index:2;
}

.gallery-profile-stats{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-bottom:25px;
    padding:18px;
    border-radius:20px;
    background:rgba(212,175,55,.05);
    border:1px solid rgba(212,175,55,.10);
}

.gallery-profile-stats div{
    text-align:center;
    flex:1;
}

.gallery-profile-stats strong{
    display:block;
    color:#d4af37;
    font-size:22px;
    font-weight:800;
    margin-bottom:5px;
}

.gallery-profile-stats span{
    color:#d0d0d0;
    font-size:13px;
}

.gallery-profile-btn{
    background:linear-gradient(
        135deg,
        #d4af37,
        #f1cf63
    );
}

.gallery-profile-btn:hover{
    background:#7e178c;
}

@media(max-width:576px){

    .gallery-profile-stats{
        padding:15px 10px;
    }

    .gallery-profile-stats strong{
        font-size:18px;
    }

    .gallery-online-badge{
        font-size:12px;
        padding:6px 12px;
    }

}

/* GALLERY PREMIUM PROFILE SECTION END */




/* GALLERY CONTENT SECTION START */

.gallery-content-section{
    padding:60px 0;
    background:#0a0909;
}

.gallery-content-box{
    background:#161310;
    border:1px solid rgba(212,175,55,.12);
    border-radius:35px;
    padding:60px;
    text-align:center;
}

.gallery-content-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.20);
    color:#d4af37;
    font-weight:700;
    margin-bottom:20px;
}

.gallery-content-box h2{
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:25px;
}

.gallery-content-box h2 span{
    color:#d4af37;
}

.gallery-content-box p{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.9;
    max-width:900px;
    margin:0 auto 20px;
}

.gallery-content-card{
    background:#0a0909;
    border:1px solid rgba(212,175,55,.12);
    border-radius:25px;
    padding:35px 25px;
    height:100%;
    transition:.4s;
}

.gallery-content-card:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
}

.gallery-content-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.gallery-content-card h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.gallery-content-card p{
    color:#cfcfcf;
    font-size:15px;
    margin:0;
}

@media(max-width:576px){

    .gallery-content-section{
        padding:70px 0;
    }

    .gallery-content-box{
        padding:30px 20px;
    }

    .gallery-content-box h2{
        font-size:34px;
    }

    .gallery-content-box p{
        font-size:15px;
    }

}

/* GALLERY CONTENT SECTION END */