*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
}

header{

position:fixed;
top:0;
left:0;
width:100%;
height:100px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 60px;

background:#000;

z-index:999;

box-shadow:0 2px 15px rgba(0,0,0,.08);

}
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:150px;      /* Adjust as needed */
    height:auto;
    display:block;
}

@media (max-width:768px){

    .logo img{
        width:120px;
    }

}

.logo h2{

font-size:16px;
color:#777;
font-weight:400;

}

.logo h1{

font-size:52px;
font-weight:700;
line-height:1;

color:#555;

}

.logo p{

font-size:18px;
letter-spacing:2px;

color:#555;

}

nav{

display:flex;
gap:35px;

}

nav a{

text-decoration:none;
font-size:18px;
color:#b07d17;
transition:.3s;

}

nav a:hover{

color:#fff;

}


.menu-btn{

display:none;

width:35px;

cursor:pointer;

}

.menu-btn span{

display:block;

height:3px;

background:#b07d17;

margin:7px 0;

transition:.4s;

border-radius:5px;

}


@media(max-width:991px){

.menu-btn{

display:block;

z-index:1001;

}

nav{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#000;

display:flex;

flex-direction:column;

padding-top:120px;

gap:30px;

align-items:center;

transition:.4s;

}

nav a{

color:#fff;

font-size:20px;

}

nav.active{

right:0;

}

header{

padding:20px;

height:90px;

}

.logo h1{

font-size:34px;

}

.logo p{

font-size:15px;

}

.hero{

margin-top:90px;

flex-direction:column;

}

.left,
.right{

width:100%;

}

.left{

padding:50px 25px;

text-align:center;

}

.line{

margin:30px auto;

}

.right{

padding:20px;

}

}




.hero{
    display:flex;
    margin-top:100px;
    min-height:calc(100vh - 100px);
    height:auto;
}

.left{

width:38%;
background:#0a0a0a;
display:flex;
flex-direction:column;
justify-content:center;

color:white;
padding-left: 45px;
    flex:0 0 45%;
    padding:70px 60px;
}




.small{
letter-spacing:2px;
font-size:18px;
margin-bottom:20px;
}

.left h2{
font-size:75px;
color:#d4af37;
font-weight:500;
}

.left h4{
font-size:28px;
color:#fff;
margin-top:-10px;
font-weight:400;
}

.line{
width:75%;
height:2px;
background:#ddd;
margin:35px 0;
}

.left h3{
font-size:34px;
font-weight:400;
margin-bottom:18px;
}

.left h1{
font-size:60px;
font-weight:600;
margin-bottom:20px;
}

.right{

width:62%;

background:#0a0a0a;
display:flex;
justify-content:center;
align-items:center;
   flex:0 0 55%;
    padding:40px;
}

.right img{

width:100%;
height:auto;
max-height: 100%;
object-fit:contain;
border:5px solid #cfa447;
border-radius: 16px;
display:block;
}

.interest{
    position:fixed;
    right:20px;
    bottom:20px;

    background:#bf8b17;
    color:#fff;

       border-radius:50px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);

    padding:14px 24px;
    font-size:18px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
    z-index:999;
}

.interest:hover{
    background:#a37209;
}

@media (max-width:768px){

    .interest{
        display:none;
    }

}


/* ==========================
   Mobile
========================== */

@media (max-width: 991px){

.hero{
    display:flex;
    flex-direction:column;
    margin-top:80px;
    height:auto;
}

.left{
    width:100%;
    padding:50px 25px;
    text-align:center;
}

.right{
    width:100%;
    padding:20px;
}

.right img{
    width:100%;
    height:auto;
    display:block;
}

.line{
    width:180px;
    margin:25px auto;
}

.left h2{
    font-size:55px;
}

.left h1{
    font-size:42px;
}

.left h3{
    font-size:24px;
}

.left h4{
    font-size:22px;
}

}

/* Mobile - Show Image First */
@media (max-width: 991px){

    .hero{
        display: flex;
        flex-direction: column;
    }

    .right{
        order: 1;
        width: 100%;
        padding: 20px;
    }

    .left{
        order: 2;
        width: 100%;
        padding: 40px 25px;
        text-align: center;
    }

    .right img{
        width: 100%;
        height: auto;
        display: block;
    }

}

-------

.overview{
    padding:90px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
      
    text-align:center;
}

.overview h2{
    font-size:56px;
    color:#b07d17;
    font-weight:500;
    margin-top: 20px;
}

.title-line{
    width:220px;
    margin:20px auto 35px;
    position:relative;
    height:2px;
    background:#000;
}

.title-line::before,
.title-line::after{
    content:"";
    width:8px;
    height:8px;
    background:#000;
    border-radius:50%;
    position:absolute;
    top:-3px;
}

.title-line::before{
    left:0;
}

.title-line::after{
    right:0;
}

.overview h3{
    font-size:48px;
    color:#b07d17;
    font-weight:500;
    margin-bottom:10px;
}

.overview h4{
    font-size:42px;
    color:#b07d17;
    font-weight:400;
    margin-bottom:40px;
}

.description{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:22px;
    text-align:justify;
}

.description strong{
    color:#111;
    font-weight:600;
}

.brochure-btn{

    display:inline-block;

    margin-top:40px;

    padding:18px 40px;

    background:#b07d17;

    color:#fff;

    text-decoration:none;

    border-radius:5px;

    transition:.3s;
}

.brochure-btn:hover{

background:#8f660d;

}

.features{

margin-top:70px;

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

}

.feature-box{

background:#fff;

padding:35px 20px;

box-shadow:0 5px 18px rgba(0,0,0,.18);

position:relative;

transition:.3s;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-box::before{

content:"";

position:absolute;

left:0;
top:0;

width:25px;
height:25px;

border-left:4px solid #09162d;
border-top:4px solid #09162d;

}

.feature-box::after{

content:"";

position:absolute;

right:0;
bottom:0;

width:25px;
height:25px;

border-right:4px solid #09162d;
border-bottom:4px solid #09162d;

}

.feature-box img{

width:80px;

height:80px;

margin-bottom:20px;

}

.feature-box h5{

font-size:22px;

font-weight:500;

line-height:1.5;

}

@media(max-width:1200px){

.features{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.overview h2{
font-size:40px;
}

.overview h3{
font-size:32px;
}

.overview h4{
font-size:26px;
}

.description{
font-size:18px;
}

.features{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.features{
grid-template-columns:1fr;
}

}


/* Download and Enquire now ongoing  */
.projects-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
}

.project-card{
    max-width:470px;
    width:100%;
}

/*============================
SITE & FLOOR PLAN
============================*/

.floor-plan{

padding:30px 0;

background:#fff;

}

.floor-plan .container{

width:90%;

max-width:1400px;

margin:auto;

}

.floor-plan h2{

text-align:center;

font-size:52px;

color:#b07d17;

font-weight:500;

margin-bottom:15px;

}

.floor-plan .title-line{

width:220px;

height:2px;

background:#000;

margin:0 auto 60px;

position:relative;

}

.floor-plan .title-line::before,
.floor-plan .title-line::after{

content:"";

width:8px;
height:8px;

background:#000;

border-radius:50%;

position:absolute;

top:-3px;

}

.floor-plan .title-line::before{

left:0;

}

.floor-plan .title-line::after{

right:0;

}

.plan-wrapper{

display:flex;

gap:40px;

align-items:flex-start;

}

.master-plan{

width:34%;

}

.floor-plans{

width:66%;

}

.master-plan h3,
.floor-plans h3{

font-size:34px;

margin-bottom:25px;

font-weight:500;

}

.master-image{

overflow:hidden;

}

.master-image img{

width:100%;

display:block;

transition:.4s;

}

.master-image img:hover{

transform:scale(1.04);

}

.plan-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.plan-card{

background:#fff;

box-shadow:0 6px 18px rgba(0,0,0,.15);

overflow:hidden;

transition:.3s;

cursor:pointer;

}

.plan-card:hover{

transform:translateY(-8px);

}

.plan-card img{

width:100%;

display:block;

}

.plan-title{

background:#a87710;

color:#fff;

text-align:center;

padding:18px;

font-size:28px;

font-weight:500;

}


@media(max-width:991px){

.plan-wrapper{

flex-direction:column;

}

.master-plan,
.floor-plans{

width:100%;

}

.plan-grid{

grid-template-columns:repeat(2,1fr);

}

.floor-plan h2{

font-size:40px;

}

.master-plan h3,
.floor-plans h3{

font-size:28px;

}

.plan-title{

font-size:22px;

}

}

@media(max-width:576px){

.floor-plan{

padding:60px 0;

}

.floor-plan h2{

font-size:34px;

}

.plan-grid{

grid-template-columns:1fr;

}

.master-plan h3,
.floor-plans h3{

text-align:center;

font-size:24px;

}

.plan-title{

font-size:20px;

padding:15px;

}

.master-image{

margin-bottom:30px;

}

}

.locked-plan{
    position:relative;
    overflow:hidden;
}

.locked-plan img{
    width:100%;
    filter:blur(8px);
    transform:scale(1.05);
    transition:.3s;
}

.plan-overlay{
    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.25);
}

.unlock-plan{
    background:#b08a14;
    color:#fff;
    border:none;

    padding:15px 30px;
    font-size:18px;
    cursor:pointer;

    border-radius:6px;
}

.unlock-plan:hover{
    background:#8b690e;
}

.plan-card{
    position:relative;
    overflow:hidden;
}

.plan-card img{
    width:100%;
    display:block;
    filter:blur(8px);
    transform:scale(1.05);
}

.plan-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,0.25);
    z-index:2;
}

.unlock-plan{
    background:#b08a14;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:5px;
    cursor:pointer;
}


/* ==========================
   Project Presentation
========================== */

.video-section{
    padding:0px 0;
    margin:0;
}

.video-section .container{
    padding-top:0;
    padding-bottom:0;
}

.video-section h2{
    margin:0;
}

.video-section .title-line{
    margin:10px auto 30px;
}


.video-wrapper{
    width:100%;
    max-width:900px;
    height:400px;
    margin:20px auto;
    border-radius:8px;
    overflow:hidden;
}

.video-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
}

.presentation-btn{
    display:inline-block;
    margin-top:35px;
    background:#b38412;
    color:#fff;
    text-decoration:none;
    padding:16px 40px;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.presentation-btn:hover{
    background:#8f690e;
}

@media(max-width:768px){

    .video-wrapper{
        height:250px;
    }

}
.plan-card{
    position:relative;
    overflow:hidden;
}

.plan-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
    filter:blur(8px);
}

.plan-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:calc(100% - 60px); /* excludes title */
    background:rgba(0,0,0,.35);
    display:flex;
    justify-content:center;
    align-items:center;
}

.unlock-plan-btn{
    display:inline-block;
    padding:14px 30px;
    background:#b07d17;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.unlock-plan-btn:hover{
    background:#8b660e;
}
/*============================
Configuration
============================*/


.configuration{

background:url(images/config-bg.jpg) center center/cover;

padding:100px 0;

position:relative;

}

.overlay-bg{

background:rgba(0,0,0,.55);

padding:50px 0;

}

.configuration h2{

color:#fff;

text-align:center;

font-size:45px;

margin-bottom:15px;
font-weight: 500;

}

.configuration table{

width:100%;

border-collapse:collapse;

background:#fff;

margin-top:40px;

}

.configuration th{

background:#b07d17;

color:#fff;

padding:20px;

font-size:30px;

font-weight:500;

}

.configuration td{

padding:18px;

text-align:center;

font-size:22px;

}

.configuration tbody tr:nth-child(even){

background:#f6f6f6;

}

.price-btn{

background:#b07d17;

color:#fff;

padding:12px 25px;

border:none;

cursor:pointer;

font-size:18px;

font-weight:600;

transition:.3s;

}

.price-btn:hover{

background:#8b660e;

}

/* ==========================
   Upcoming Projects
========================== */

.upcoming-projects{
    padding:90px 0;
    background:#fff;
}

.upcoming-projects h2{
    font-size:52px;
    color:#b07d17;
    font-weight:500;
    text-align:center;
    margin-bottom:15px;
}

.upcoming-projects .title-line{
    width:220px;
    height:2px;
    background:#000;
    margin:0 auto 50px;
    position:relative;
}

.upcoming-projects .title-line::before,
.upcoming-projects .title-line::after{
    content:"";
    width:8px;
    height:8px;
    background:#000;
    border-radius:50%;
    position:absolute;
    top:-3px;
}

.upcoming-projects .title-line::before{
    left:0;
}

.upcoming-projects .title-line::after{
    right:0;
}
/*============================
Configuration Popup
============================*/


.popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.popup.active{
    display:flex;
}

.popup-box{
    width:400px;
    max-width:90%;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.popup-header{
    background:#b07d17;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 18px;
}

.popup-header h3{
    margin:0;
    font-size:22px;
    font-weight:500;
}

.close{
    font-size:42px;
    color:#fff;
    cursor:pointer;
    line-height:1;
}

.popup-body{
    padding:20px;
}

.popup-body p{
    font-size:15px;
    margin-bottom:18px;
}

.input-group{
    display:flex;
    align-items:center;
    margin-bottom:14px;
    border:1px solid #ccc;
    height:44px;
}

.input-group span{
    width:48px;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f3f3f3;
    border-right:1px solid #ccc;
    color:#555;
    font-size:18px;
}

.input-group input{
    flex:1;
    border:none;
    outline:none;
    height:100%;
    padding:0 14px;
    font-size:12px;
}

.popup-body button{
    display:block;
    width:100%;
    margin:18px auto 0;
    padding:13px;
    background:#b07d17;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:400;
    cursor:pointer;
    transition:.3s;
}

.popup-body button:hover{
    background:#8b660e;
}

@media (max-width:576px){

    .popup-box{
        width:90%;
    }

    .popup-header{
        padding:10px 15px;
    }

    .popup-header h3{
        font-size:20px;
    }

    .close{
        font-size:34px;
    }

    .popup-body{
        padding:16px;
    }

    .popup-body p{
        font-size:14px;
        margin-bottom:15px;
    }

    .input-group{
        height:42px;
        margin-bottom:12px;
    }

    .input-group span{
        width:44px;
        font-size:17px;
    }

    .input-group input{
        font-size:14px;
    }

    .popup-body button{
        padding:12px;
        font-size:15px;
    }
}

/* /*=====================================
VIDEO SECTION
======================================*/



.video-section h2{

    font-size:50px;
    color:#b07d17;
    font-weight:500;
    margin-bottom:15px;

}

.video-wrapper{

    margin-top:30px;

    position:relative;

    overflow:hidden;

    border-radius:6px;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.video-wrapper iframe{

    width:100%;
    aspect-ratio:16/9;
    border:none;

}

.video-btn{

    margin-top:40px;

}

.presentation-btn{

    display:inline-block;

    background:#b07d17;
    color:#fff;

    padding:16px 35px;

    text-decoration:none;

    border-radius:5px;

    font-size:20px;

    transition:.3s;

}

.presentation-btn:hover{

    background:#8f660d;

}

@media(max-width:768px){

.video-section{

    padding:60px 0;

}

.video-section h2{

    font-size:30px;
    line-height:1.4;
    padding:0 15px;

}

.video-wrapper{

    margin-top:35px;

}

.presentation-btn{

    width:90%;
    text-align:center;

    font-size:18px;

    padding:15px;

}

}


/*==============================
ABOUT SECTION
==============================*/

.about-project{

    padding:90px 0;
    background:#fff;

}

.about-project .container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

.about-project h2{

    text-align:center;

    font-size:52px;

    color:#b07d17;

    font-weight:500;

    margin-bottom:20px;

}

.about-wrapper{

    margin-top:60px;

    display:flex;

    align-items:center;

    gap:50px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:5px;

}

.about-content{

    flex:1;

}

.about-content p{

    font-size:24px;

    line-height:1.9;

    color:#222;

    text-align:justify;

}

.about-btn{

    display:inline-block;

    margin-top:35px;

    padding:16px 35px;

    background:#b07d17;

    color:#fff;

    text-decoration:none;

    border-radius:5px;

    transition:.3s;

}

.about-btn:hover{

    background:#8f660d;

}

@media(max-width:991px){

.about-wrapper{

    flex-direction:column;

}

.about-image,
.about-content{

    width:100%;

}

.about-content{

    text-align:center;

}

.about-content p{

    text-align:left;

    font-size:18px;

}

.about-project h2{

    font-size:36px;

    padding:0 15px;

}

.about-btn{

    width:100%;

    text-align:center;

}

}


/*==========================
AMENITIES
==========================*/

.amenities{

    padding:22px 0;
    background:#fff;

}

.amenities .container{

    width:90%;
    max-width:1400px;
    margin:auto;
    text-align:center;

}

.amenities h2{

    font-size:52px;
    color:#b07d17;
    font-weight:500;
    margin-bottom:15px;

}

.amenities-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:45px 30px;

}

.amenity-item{

    transition:.3s;
    cursor:pointer;

}

.amenity-item:hover{

    transform:translateY(-8px);

}

.amenity-item img{

    width:95px;
    height:95px;

    border:1px solid #333;

    padding:18px;

    object-fit:contain;

    transition:.3s;

}

.amenity-item:hover img{

    border-color:#b07d17;
}

.amenity-item p{

    margin-top:18px;

    font-size:22px;

    color:#222;

    line-height:1.4;

}


@media(max-width:576px){

.amenities{

    padding:60px 0;

}

.amenities h2{

    font-size:34px;

}

.amenities-grid{

    grid-template-columns:repeat(2,1fr);

    gap:30px 20px;

}

.amenity-item img{

    width:75px;
    height:75px;
    padding:14px;

}

.amenity-item p{

    font-size:15px;

}

}


.amenity-item i{
    width:95px;
    height:95px;
    border:1px solid #333;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    font-size:42px;
    color:#b07d17;
    transition:.3s;
}

.amenity-item:hover i{
    border-color:#b07d17;
    transform:translateY(-5px);
}

@media(max-width:576px){

    .amenity-item i{
        width:75px;
        height:75px;
        padding:14px;
        font-size:28px;
    }

}

.plan-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.plan-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;
    cursor:pointer;
}

.plan-card:hover{
    transform:translateY(-8px);
}

.plan-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.plan-title{
    background:#b07d17;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:24px;
    font-weight:500;
}

/* Popup */

.image-popup{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.image-popup img{
    max-width:90%;
    max-height:90%;
    border-radius:5px;
}

.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    font-size:50px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:768px){

    .plan-wrapper{
        grid-template-columns:1fr;
    }

    .plan-card img{
        height:250px;
    }

}

/* Tablet */
@media(max-width:991px){

    .plan-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:576px){

    .plan-wrapper{
        grid-template-columns:1fr;
    }

    .plan-card img{
        height:220px;
    }

    .plan-title{
        font-size:20px;
        padding:15px;
    }

}
/*=========================
GALLERY
==========================*/

.gallery-section{

padding:30px 0;

background:#fff;

}

.gallery-section .container{

width:90%;

max-width:1400px;

margin:auto;

text-align:center;

}

.gallery-section h2{

font-size:52px;

font-weight:500;

color:#b07d17;

margin-bottom:15px;

}

.gallery-tabs{

margin:45px 0;

}

.gallery-tabs button{

background:#b07d17;

border:none;

padding:14px 30px;

color:#fff;

font-size:18px;

cursor:pointer;

}

.gallerySwiper{

margin-top:30px;

padding-bottom:60px;

}

.gallerySwiper img{

width:100%;

height:520px;

object-fit:cover;

display:block;

transition:.4s;

}

.gallerySwiper img:hover{

transform:scale(1.05);

}

.swiper-button-next,
.swiper-button-prev{

color:#000;

}

.swiper-button-next::after,
.swiper-button-prev::after{

font-size:26px;

font-weight:bold;

}

/*=========================
GALLERY
==========================*/

.gallery-section{

padding:30px 0;

background:#fff;

}

.gallery-section .container{

width:90%;

max-width:1400px;

margin:auto;

text-align:center;

}

.gallery-section h2{

font-size:52px;

font-weight:500;

color:#b07d17;

margin-bottom:15px;

}

.gallery-tabs{

margin:35px 0;

}

.gallery-tabs button{

background:#b07d17;

border:none;

padding:14px 30px;

color:#fff;

font-size:18px;

cursor:pointer;

}

.gallerySwiper{

margin-top:30px;

padding-bottom:60px;

}

.gallerySwiper img{

width:100%;

height:520px;

object-fit:cover;

display:block;

transition:.4s;

}

.gallerySwiper img:hover{

transform:scale(1.05);

}

.swiper-button-next,
.swiper-button-prev{

color:#000;

}

.swiper-button-next::after,
.swiper-button-prev::after{

font-size:26px;

font-weight:bold;

}


/*new code for gallery height*/
.gallerySwiper {
    max-width: 1200px;
    margin: 0 auto;
}

.gallerySwiper .swiper-slide{
    height: 380px;
}

.gallerySwiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.gallerySwiper {
    max-width: 1200px;
    margin: 0 auto;
}

.gallerySwiper .swiper-slide{
    height: 380px;
}

.gallerySwiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}



/*=============================
LOCATION
=============================*/

.location-section{

padding:90px 0;

background:#fff;

}

.location-wrapper{

display:flex;

gap:35px;

margin-top:50px;

}

.accordion{

flex:1;

}

.location-map{

flex:1;

}

.location-map img{

width:100%;

display:block;

}

.accordion-item{

margin-bottom:18px;

box-shadow:0 3px 10px rgba(0,0,0,.15);

}

.accordion-header{

width:100%;

padding:20px;

background:#fff;

border:none;

cursor:pointer;

display:flex;

align-items:center;

gap:15px;

font-size:20px;

font-weight:600;

text-align:left;

}

.accordion-header span{

width:28px;
height:28px;

background:#eee;
justify-content:center;

font-size:20px;

color:#b07d17;

}

.accordion-content{

    display:none;

    padding:20px 30px;

    background:#fff;
        text-align: left;

}

.accordion-content ul{
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.accordion-content li{
    font-size: 14px;
    line-height: 2;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

/* Developer */

.developer{

padding:90px 0;

text-align:center;

}

.developer p{

max-width:1100px;

margin:auto;

font-size:22px;

line-height:1.9;

}

@media(max-width:768px){

.location-wrapper{

flex-direction:column;

}

.location-map{

margin-top:30px;

}

.accordion-header{

font-size:16px;

padding:16px;

}

.developer h2{

font-size:34px;

}

.developer p{

font-size:17px;

text-align:left;

}

}

.virtual-tour-section{
    padding:80px 0;
    background:#fff;
}

.virtual-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:40px;
}

.virtual-card{
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

.virtual-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}

.virtual-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
    padding:20px;
}

.play-btn{
    width:50px;
    height:50px;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:18px;
    text-decoration:none;
    margin-bottom:25px;
    transition:.3s;
}

.play-btn:hover{
    transform:scale(1.1);
}

.virtual-overlay h3{
    font-size:16px;
    margin-bottom:10px;
    font-weight:600;
}

.virtual-overlay p{
    font-size:18px;
}

@media(max-width:768px){

.virtual-grid{
    grid-template-columns:1fr;
}

.virtual-card img{
    height:250px;
}

.virtual-overlay h3{
    font-size:20px;
}

.play-btn{
    width:30px;
    height:30px;
    font-size:18px;
}

}
.virtual-tour-section{
    padding:80px 0;
    background:#fff;
}

.virtual-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.virtual-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    height:420px;
}

.virtual-card video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.virtual-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
}

.virtual-overlay h3{
    color:#fff;
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}

.virtual-overlay span{
    display:inline-block;
    width:max-content;
    background:#fff;
    color:#000;
    padding:8px 15px;
    border-radius:4px;
    font-size:14px;
    font-weight:500;
}
.virtual-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    height:360px;
}

.bg-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}






.artistic-tag{
    position:absolute;
    right:15px;
    bottom:15px;
    background:#fff;
    color:#000;
    padding:6px 12px;
    font-size:13px;
    border-radius:3px;
}

@media(max-width:768px){

.virtual-grid{
    grid-template-columns:1fr;
}

.virtual-card{
    height:300px;
}

.virtual-overlay h3{
    font-size:20px;
}

}
.virtual-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.virtual-card img,
.virtual-card video{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
}

.video-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

/* Bottom Gradient */
.video-overlay::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:45%;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.25) 70%,
        transparent 100%
    );
}

.play-btn{
    position:relative;
    z-index:2;
    width:50px;
    height:50px;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.play-btn i{
    font-size:42px;
    color:white;
    margin-left:8px;
}

.play-btn:hover{
    transform:scale(1.08);
}

.video-overlay h3{
    position:absolute;
    bottom:95px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    z-index:2;
    font-size:24px;
    font-weight:700;
    text-transform:uppercase;
    margin:0;
}

.video-overlay p{
    position:absolute;
    bottom:42px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    font-size:18px;
    margin:0;
}
/*==========================
CONTACT
==========================*/

.contact-section{

display:flex;

min-height:700px;
margin-top: 91px;

}

.contact-map{

width:50%;

}

.contact-map iframe{

width:100%;

height:100%;

border:none;

}

.contact-form-area{

width:50%;

background:url(images/contact-bg.jpg) center center/cover;

position:relative;

}

.overlay{

background:rgba(0,0,0,.55);

width:100%;
height:100%;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

padding:60px;

}

.location-btn{

display:inline-block;

padding:15px 30px;

background:#b07d17;

color:#fff;

text-decoration:none;

border-radius:5px;

margin-bottom:35px;

font-size:18px;

}

.overlay h2{

font-size:58px;

color:#fff;

margin-bottom:15px;

font-weight:500;

}

.overlay p{

color:#fff;

font-size:24px;

margin-bottom:35px;

text-align:center;

}

.overlay form{

width:100%;

max-width:550px;

}

.overlay input{

width:100%;

padding:18px;

margin-bottom:20px;

font-size:18px;

border:none;

outline:none;

border-radius:3px;

}

.overlay button{

width:250px;

display:block;

margin:20px auto;

padding:18px;

background:#b07d17;

color:#fff;

border:none;

font-size:22px;

cursor:pointer;

transition:.3s;

}

.overlay button:hover{

background:#8b660d;

}

.overlay h3{

margin-top:30px;

font-size:32px;

color:#fff;

font-weight:400;

}

.overlay h3 a{

color:#fff;

text-decoration:none;

font-weight:600;

}

@media(max-width:991px){

.contact-section{

flex-direction:column;

}

.contact-map,
.contact-form-area{

width:100%;

}

.contact-map{

height:400px;

}

.contact-form-area{

min-height:650px;

}

.overlay{

padding:35px 20px;

}

.overlay h2{

font-size:40px;

}

.overlay p{

font-size:18px;

}

.overlay button{

width:100%;

}

.location-btn{

width:100%;

text-align:center;

}

.overlay h3{

font-size:24px;

text-align:center;

}

}

.upcoming-projects{
    padding:0px 0;
    background:#fff;
}

.projects-grid{
  display:flex;
    justify-content:center;
    margin-top:50px;
}

.project-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.project-name{
    background:#b08a14;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:28px;
    font-weight:600;
}

.project-details{
    padding:20px 25px;
}

.detail{
    border-bottom:1px solid #e5e5e5;
    padding:20px 0;
}

.detail:last-child{
    border-bottom:none;
}


.project-btns{
    display:flex;
    gap:12px;
    padding:20px;
}

.project-btns .btn{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    height:48px;

    background:#b08a14;
    color:#fff;
    text-decoration:none;

    border-radius:6px;

    font-size:15px;
    font-weight:500;

    transition:.3s;
}

.project-btns .btn:hover{
    background:#8b690e;
}


@media (max-width:576px){

    .project-btns{
        flex-direction:column;
    }

    .project-btns .btn{
        width:100%;
    }

}

/* Sticky Bottom Contact Bar */

.sticky-contact-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:99999;
}

.sticky-btn{
    flex:1;
    height:65px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    text-decoration:none;
    color:#fff;
    font-size:22px;
    font-weight:600;

    transition:.3s;
}

.sticky-btn i{
    font-size:26px;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#1565C0;
}

.enquiry{
    background:#FF6F00;
}

.whatsapp:hover{
    background:#1EBE5D;
}

.call:hover{
    background:#0F56A5;
}

.enquiry:hover{
    background:#E66000;
}

@media(max-width:768px){

    .sticky-btn{
        flex-direction:column;
        gap:4px;
        height:60px;
        font-size:13px;
    }

    .sticky-btn i{
        font-size:20px;
    }

}



/*=========================
FOOTER
==========================*/

.footer{

padding:80px 20px;

background:#fff;

text-align:center;

border-top:1px solid #eee;

}

.footer .container{

max-width:1200px;

margin:auto;

}

.footer-logo{

width:120px;

margin-bottom:30px;

}

.footer p{

color:#333;

line-height:1.9;

margin-bottom:25px;

font-size:12px;

}

.address{

font-size:18px;

}

.copyright{

font-weight:600;

margin:30px 0;

}

.privacy{

max-width:1000px;

margin:0 auto 35px;

font-size:14px;

color:#555;

}

.footer-links{

display:flex;

justify-content:center;

gap:25px;

margin-bottom:35px;

flex-wrap:wrap;

}

.footer-links a{

text-decoration:none;

color:#222;

font-weight:500;

transition:.3s;

}

.footer-links a:hover{

color:#b07d17;

}

.qr{

margin-bottom:35px;

}

.qr img{

width:180px;

}

.disclaimer{

max-width:1100px;

margin:auto;

font-size:13px;

color:#666;

line-height:1.8;

}

@media(max-width:768px){

.footer{

padding:60px 20px;

}

.footer-logo{

width:90px;

}

.footer p{

font-size:14px;

}

.address{

font-size:15px;

}

.footer-links{

flex-direction:column;

gap:15px;

}

.qr img{

width:140px;

}

.disclaimer{

font-size:12px;

}
/* ===========================
   Upcoming Projects Responsive
=========================== */

/* Large Tablet */
@media (max-width: 991px){

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .project-card{
        max-width:100%;
    }

    .project-card img{
        height:240px;
    }

    .project-name{
        font-size:23px;
        padding:14px;
    }

    .detail{
        padding:15px 0;
    }

    .detail h4{
        font-size:18px;
    }

    .detail p{
        font-size:16px;
    }

    .project-btns{
        padding:18px;
        gap:10px;
    }

    .project-btns .btn{
        font-size:14px;
        padding:12px 8px;
        white-space:nowrap;
    }

}



.location-right{
    flex:1;
}

.map-zoom{
    overflow:hidden;
    border-radius:10px;
    cursor:zoom-in;
    height:100%;
}

.map-zoom img{
    width:100%;
    display:block;
    transition:transform .1s ease;
    transform-origin:center center;
}

/* Mobile */
@media (max-width:767px){

    .projects-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .project-card{
        max-width:100%;
        border-radius:10px;
    }

    .project-card img{
        height:220px;
    }

    .project-name{
        font-size:24px;
        padding:14px;
    }

    .project-details{
        padding:10px 20px;
    }

    .detail{
        padding:16px 0;
    }

    .detail h4{
        font-size:16px;
        margin-bottom:6px;
    }

    .detail p{
        font-size:16px;
    }

    .project-btns{
        display:flex;
        gap:10px;
        padding:18px 20px 20px;
    }

    .project-btns .btn{
        flex:1;
        padding:12px 8px;
        font-size:13px;
        white-space:nowrap;
        text-align:center;
    }

}


/* Small Mobile */
@media (max-width:480px){

    .project-card img{
        height:190px;
    }

    .project-name{
        font-size:20px;
    }

    .detail h4{
        font-size:15px;
    }

    .detail p{
        font-size:15px;
    }

    .project-btns{
        gap:8px;
    }

    .project-btns .btn{
        font-size:12px;
        padding:10px 6px;
    }

}

/* Gallery Mobile Height */
@media (max-width: 768px){

    .gallerySwiper img{
        height:220px !important;
        object-fit:cover;
    }

    .gallerySwiper{
        padding-bottom:40px;
    }

    .gallery-section{
        padding:60px 0;
    }

}
/* Hide sticky contact bar on Desktop */
@media (min-width: 769px){
    .sticky-contact-bar{
        display: none !important;
    }
}

/* Show sticky contact bar on Mobile */
@media (max-width: 768px){
    .sticky-contact-bar{
        display: flex;
    }
}
@media (max-width:768px){

    .configuration{
        padding:60px 15px;
    }

    .configuration h2{
        font-size:32px;
    }

    .configuration table{
        width:100%;
        display:table;
    }

    .configuration th,
    .configuration td{
        padding:10px 6px;
        font-size:14px;
    }

    .price-btn{
        display:inline-block;
        width:90px;
        padding:8px 5px;
        font-size:13px;
        line-height:1.3;
        white-space:normal;
        text-align:center;
    }

}

/* Desktop */
.projectSwiper{
    overflow: hidden;
}

@media (min-width:768px){

    .projectSwiper .swiper-wrapper{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:30px;
        transform:none !important;
    }

    .projectSwiper .swiper-slide{
        width:auto !important;
    }

    .project-next,
    .project-prev{
        display:none;
    }

}

}

@media (max-width:768px){

    .gallery-section{
        padding-top:10px !important;
        margin-top:0 !important;
    }

    .gallery-section .container{
        padding-top:0 !important;
        margin-top:0 !important;
    }

    .gallery-section h2{
        margin-top:0 !important;
    }

}

/* Master Plan */
.master-plan-card{
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 12px;
}

.master-plan-card img{
    width: 100%;
    display: block;
    border-radius: 12px;
}

.master-plan-card .plan-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s;
}

.master-plan-card:hover .plan-overlay{
    opacity: 1;
}

.master-plan-card .plan-title,
.plan-card .plan-title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: #c28b11; /* Same golden color as 3 BHK */
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}

.location-advantage{
    padding:80px 0;
    background:#f8f8f8;
}

.location-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.location-left{
    flex:1;
}

.location-right{
    flex:1;
}

.location-right img{
    width:100%;
    border-radius:8px;
}

.accordion-item{
    margin-bottom:15px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.accordion-header{
    width:100%;
    background:#fff;
    border:none;
    display:flex;
    align-items:center;
    gap:18px;
    padding:5px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    text-align:left;
}

.accordion-header span{
    width:40px;
    height:40px;
    background:#eee;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#b68110;
    font-size:28px;
    font-weight:700;
}

.accordion-content{
    display:none;
    padding:0 25px 20px;
}

.accordion-item.active .accordion-content{
    display:block;
}

.accordion-content ul{
    margin:0;
    padding-left:20px;
}

.accordion-content li{
    margin:8px 0;
    color:#444;
}

@media(max-width:768px){

.location-wrapper{
    flex-direction:column;
}

.accordion-header{
    font-size:18px;
    padding:18px;
}

}


/* ==========================
   Location Advantage Heading
========================== */

.location-advantage{
    padding:80px 0;
    background:#fff;
}

.location-advantage h2{
    text-align:center;
    font-size:52px;
    font-weight:500;
    color:#b37a08;
    margin-bottom:15px;
    line-height:1.2;
}

.location-advantage .title-line{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:60px;
}

.location-advantage .title-line span{
    width:280px;
    height:3px;
    background:#111;
    position:relative;
}

.location-advantage .title-line span::before,
.location-advantage .title-line span::after{
    content:"";
    position:absolute;
    top:50%;
    width:10px;
    height:10px;
    background:#111;
    border-radius:50%;
    transform:translateY(-50%);
}

.location-advantage .title-line span::before{
    left:0;
}

.location-advantage .title-line span::after{
    right:0;
}

/* Mobile */

@media (max-width:768px){

    .location-advantage{
        padding:60px 0;
    }

    .location-advantage h2{
        font-size:40px;
    }

    .location-advantage .title-line span{
        width:180px;
    }

}
/* Mobile */
@media (max-width:768px){

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev{
        width:32px;
        height:32px;
        margin-top:-16px;
    }

    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after{
        font-size:22px;
        color:white;
        font-weight:100;
    }

}

@media (max-width:768px){

    .gallery-section{
        padding-bottom:20px !important;
        margin-bottom:0 !important;
    }

    .gallerySwiper{
        margin-bottom:0 !important;
    }

    .upcoming-projects{
        padding-top:20px !important;
        margin-top:0 !important;
    }

}

@media (max-width:768px){

    .gallerySwiper .swiper-slide{
        height:220px !important;
    }

    .gallerySwiper img{
        height:220px !important;
        object-fit:cover;
    }

}

.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.image-popup img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-floor-popup{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

.thank-btn{

    margin-top:25px;
    background:#b8860b;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;

}

.thank-btn:hover{

    background:#8f6900;

}

/* Hide Floating Contact Bar on Desktop */
@media (min-width:769px){

    .sticky-contact-bar{
        display:none !important;
    }

}

/* Show only on Mobile */
@media (max-width:768px){

    .sticky-contact-bar{
        display:flex !important;
    }

}

