:root{
    --forest:#1F3328;
    --gold:#B89C6B;
    --bone:#F7F4EE;
    --charcoal:#2C2C2C;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bone);
    color:var(--charcoal);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 25px;
}

section{
    padding:80px 0;
}

h1,h2,h3{
    font-family:'DM Serif Display',serif;
    font-weight:400;
}

p{
    line-height:1.8;
}

/* ========================= */
/* HEADER */
/* ========================= */

header{

    position:fixed;

    top:15px;
    left:50%;

    transform:translateX(-50%);

    width:96%;
    max-width:1800px;

    height:90px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(16px);

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999;

    transition:.4s;
}

header.hide-navbar{

    transform:
    translateX(-50%)
    translateY(-140%);

}

.nav-container{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 30px;
}

.logo img{

    height:82px;
    width:auto;

}

nav{

    display:flex;

    align-items:center;

    gap:6px;

}

nav a{

    color:#222;

    font-size:12px;

    letter-spacing:1px;

    font-weight:700;

    text-transform:uppercase;

    padding:10px 14px;

    border-radius:8px;

    transition:.3s;

}

nav a:hover{

    background:#f2ede2;

    color:var(--gold);

}

.header-btn{

    background:var(--gold);

    color:#fff;

    padding:15px 28px;

    border-radius:12px;

    font-size:14px;

    font-weight:700;

    transition:.3s;

}

.header-btn:hover{

    background:#a8874d;

}

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

}

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 1.5s ease;

}

.slide.active{

    opacity:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.72),
    rgba(0,0,0,.30),
    rgba(0,0,0,.08)
    );

    z-index:2;

}

.hero-blur{

    position:absolute;

    inset:0;

    width:45%;

    backdrop-filter:blur(14px);

    background:rgba(255,255,255,.03);

    z-index:3;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:620px;

    padding-top:170px;

    padding-left:7%;

}

.hero-sub{

    color:#d4b06a;

    letter-spacing:4px;

    font-size:13px;

    font-weight:700;

    margin-bottom:24px;

}

.hero-content h1{

    font-size:4.8rem;

    color:#fff;

    line-height:1.05;

    margin-bottom:25px;

}

.hero-content span{

    color:var(--gold);

}

.hero-content p{

    color:#f3f3f3;

    font-size:18px;

    max-width:600px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-btn{

    padding:18px 35px;

    border-radius:12px;

    background:var(--gold);

    color:#fff;

    font-weight:600;

}

.secondary-btn{

    background:transparent;

    border:1px solid rgba(255,255,255,.4);

}

/* ========================= */
/* ABOUT STATS */
/* ========================= */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-slider{

    position:relative;

    height:560px;

    border-radius:26px;

    overflow:hidden;

}

.about-slide{

    position:absolute;

    inset:0;

    object-fit:cover;

    opacity:0;

    transition:.7s;

}

.about-slide.active{

    opacity:1;

}

.about-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:white;

    cursor:pointer;

    z-index:5;

}

.about-prev{

    left:20px;

}

.about-next{

    right:20px;

}

.about-stats{

    display:flex;

    gap:70px;

    margin-top:50px;

}

.about-stat h3{

    font-size:56px;

    color:#163328;

}

.about-stat span{

    display:block;

    margin-top:10px;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* ========================= */
/* COMMON */
/* ========================= */
.section-tag{

    color:var(--gold);

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

    margin-bottom:16px;

}

.section-title{

    font-size:56px;

    line-height:1.2;

    color:#182018;

    margin-bottom:30px;

}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-content{

display:flex;
flex-direction:column;
justify-content:center;

}

.about-image{

width:100%;

}

.about-image img{

width:100%;
display:block;
border-radius:24px;

}

/* ========================= */
/* ABOUT IMAGE SLIDER */
/* ========================= */

.about-slider{

position:relative;

width:100%;

height:560px;

border-radius:24px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,0.12);

}

.about-slides{

position:relative;

width:100%;

height:100%;

}

.about-slide{

position:absolute;

inset:0;

width:100%;

height:100%;

object-fit:cover;

opacity:0;

transition:opacity 0.7s ease;

}

.about-slide.active{

opacity:1;

z-index:2;

}

/* ARROWS */

.about-arrow{

position:absolute;

top:50%;

transform:translateY(-50%);

width:54px;

height:54px;

border:none;

border-radius:50%;

background:rgba(255,255,255,0.92);

backdrop-filter:blur(10px);

cursor:pointer;

font-size:24px;

z-index:5;

transition:0.3s ease;

box-shadow:0 10px 25px rgba(0,0,0,0.12);

}

.about-arrow:hover{

background:#b89c6b;

color:white;

}

.about-prev{

left:20px;

}

.about-next{

right:20px;

}

/* ========================= */
/* LEADERSHIP */
/* ========================= */

.leadership{
    background:#f9f7f2;
}

.leader-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    margin-top:60px;
    align-items:start;
}

.leader-card{
    text-align:center;
    background:transparent;
    box-shadow:none;
    border-radius:0;
    overflow:visible;
    transition:.35s;
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-image{
    width:180px;
    height:180px;
    margin:0 auto 30px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #B89C6B;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transition:.45s;
}

.leader-card:hover .leader-image img{
    transform:scale(1.05);
}

.leader-content{
    padding:0;
}

.leader-content h3{
    font-size:36px;
    color:#1F3328;
    margin-bottom:10px;
}

.leader-role{
    color:#B89C6B;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.leader-content p{
    max-width:300px;
    margin:0 auto;
    line-height:1.8;
}

/* ========================= */
/* PAST PROJECTS */
/* ========================= */

.projects{

padding:100px 0;
overflow:hidden;

}

.projects-slider-wrapper{

width:100%;
overflow:hidden;
position:relative;
margin-top:60px;

}

.projects-slider{

display:flex;
align-items:stretch;
gap:32px;
will-change:transform;

}

.project-card{

flex:0 0 380px;
background:#ffffff;
border-radius:28px;
overflow:hidden;
box-shadow:0 18px 45px rgba(0,0,0,.08);
transition:.35s ease;

}

.project-card:hover{

transform:translateY(-8px);

}

.project-image{

position:relative;
height:305px;
overflow:hidden;

}

.project-image img{

width:100%;
height:100%;
display:block;
object-fit:cover;
transition:.45s ease;

}

.project-card:hover .project-image img{

transform:scale(1.05);

}

.project-card h3{

padding:28px 28px 10px;
font-size:28px;
line-height:1.2;
color:#1F3328;

}

.project-card p{

padding:0 28px 30px;
font-size:18px;
line-height:1.8;
color:#666;

}


/* ========================= */
/* ONGOING PROJECTS */
/* ========================= */

.ongoing-section{

margin-top:120px;

}

.ongoing-card{

display:grid;

grid-template-columns:45% 55%;

background:#fff;

border-radius:34px;

overflow:hidden;

box-shadow:0 18px 50px rgba(0,0,0,.08);

margin-bottom:60px;

}

.ongoing-image{

position:relative;

overflow:hidden;

width:100%;
height:100%;
min-height:420px;

display:flex;

}

.ongoing-image img{

display:block;

width:100%;

height:100%;

flex:1;

object-fit:cover;

transition:.5s;

}

.ongoing-card:hover img{

transform:scale(1.05);

}

.ongoing-content{

padding:70px;

display:flex;

flex-direction:column;

justify-content:center;

}

.ongoing-tag{

letter-spacing:4px;

font-size:13px;

font-weight:700;

color:#B89C6B;

margin-bottom:20px;

text-transform:uppercase;

}

.ongoing-content h3{

font-size:60px;

margin-bottom:18px;

color:#1F3328;

}

.ongoing-location{

font-size:28px;

margin-bottom:28px;

color:#333;

}

.ongoing-description{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

}

.explore-btn{

display:inline-flex;
align-items:center;
justify-content:center;

width:220px;
height:58px;

background:#1F3328;
color:#fff;

border-radius:12px;

font-weight:700;

transition:all .35s ease;

}

.explore-btn:hover{

background:#B89C6B;
transform:translateY(-2px);

}

.rera-badge{

position:absolute;

left:18px;

bottom:18px;

background:rgba(0,0,0,.72);

backdrop-filter:blur(10px);

color:#fff;

padding:10px 16px;

border-radius:10px;

font-size:12px;

font-weight:600;

letter-spacing:.5px;

z-index:10;

}


/* ========================= */
/* FUTURE PROJECTS */
/* ========================= */

.future-projects{

    padding:100px 0;

    background:#f5f4ef;

}

.future-project-list{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}

.future-project-item{

    background:#ffffff;

    border-radius:28px;

    padding:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s ease;

}

.future-project-item:hover{

    transform:translateY(-8px);

}

.future-number{

    display:inline-block;

    color:#B89C6B;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:16px;

    text-transform:uppercase;

}

.future-project-item h3{

    font-size:30px;

    color:#1F3328;

    margin-bottom:12px;

}

.future-project-item p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/* ========================= */
/* BUSINESSES */
/* ========================= */

.businesses{

    padding:100px 0;

    background:#ffffff;

}

.business-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}

.business-card{

    background:#ffffff;

    border-radius:28px;

    padding:38px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s ease;

}

.business-card:hover{

    transform:translateY(-8px);

}

.business-card h3{

    font-size:30px;

    color:#1F3328;

    margin-bottom:18px;

}

.business-card p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/* ========================= */
/* PUNE MAP */
/* ========================= */

.pune-map-section{

    padding:100px 0;

    background:#f7f4ee;

}

#pune-map{

    width:100%;

    height:700px;

    margin-top:60px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.project-label,
.ongoing-project-label{

    background:#163328;

    color:#fff;

    border:none;

    border-radius:8px;

    padding:6px 12px;

    font-size:12px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}


/* ========================= */
/* CONTACT */
/* ========================= */

.contact{

    padding:100px 0;

    background:#eef1ee;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:18px;

    border:none;

    border-radius:14px;

    background:#ffffff;

    font-size:16px;

}

.contact-form textarea{

    height:180px;

    resize:none;

}

.contact-form button{

    width:220px;

    height:58px;

    border:none;

    border-radius:14px;

    background:#1F3328;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#B89C6B;

    color:#000;

}

/* ========================= */
/* GOOGLE REVIEWS */
/* ========================= */

.google-reviews{

    padding:100px 0;

    background:#ffffff;

}

.google-rating-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:40px;

    margin:60px 0;

    border-radius:28px;

    background:#f7f6f2;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.google-left{

    display:flex;

    align-items:center;

    gap:22px;

}

.google-left img{

    width:48px;

    height:48px;

}

.google-left h3{

    font-size:44px;

    color:#1F3328;

    margin-bottom:6px;

}

.google-left p{

    color:#666;

}

.trust-stats{

    display:flex;

    gap:70px;

}

.trust-stats strong{

    display:block;

    font-size:36px;

    color:#1F3328;

}

.trust-stats span{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#777;

}

.reviews-marquee{

    overflow:hidden;

}

.reviews-track{

    display:flex;

    gap:30px;

    width:max-content;

}

.review-card{

    width:390px;

    flex-shrink:0;

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.review-card p{

    color:#555;

    line-height:1.8;

    margin:22px 0;

}

.stars{

    color:#fbbc04;

    font-size:22px;

}

.review-source{

    display:flex;

    align-items:center;

    gap:10px;

}

.review-source img{

    width:24px;

}

.review-source span{

    font-weight:600;

}

.verified-badge{

    display:inline-block;

    background:#eef8ef;

    color:#1c7a44;

    padding:5px 12px;

    border-radius:50px;

    font-size:11px;

    font-weight:600;

    margin-bottom:16px;

}

/* ========================= */
/* FOOTER */
/* ========================= */

footer,
.mini-footer{

    background:#111b15;

    padding:28px 0;

    text-align:center;

}

footer p,
.mini-footer p{

    color:#ffffff;

    font-size:15px;

    letter-spacing:.4px;

}

/* ================================= */
/* PROJECT DETAILS PAGE */
/* ================================= */

.project-page{

    padding:130px 0 90px;

    background:#f7f4ee;

}

.project-container{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:45px;

    align-items:start;

}

/* LEFT */

.project-gallery{

    display:flex;

    flex-direction:column;

}

.main-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.main-image img{

    width:100%;

    height:560px;

    object-fit:cover;

}

.thumbnail-row{

    display:flex;

    gap:15px;

    margin-top:22px;

    overflow-x:auto;

    scrollbar-width:none;

}

.thumbnail-row::-webkit-scrollbar{

    display:none;

}

.thumbnail-row img{

    width:100px;

    height:74px;

    border-radius:12px;

    object-fit:cover;

    cursor:pointer;

    transition:.3s;

    border:2px solid transparent;

}

.thumbnail-row img:hover{

    border-color:var(--gold);

    transform:translateY(-3px);

}

/* RIGHT */

.project-details{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.project-details h1{

    font-size:42px;

    color:#1F3328;

    margin-bottom:20px;

}

.project-location{

    font-size:18px;

    color:#555;

    margin-bottom:28px;

}

.project-config h3,
.floor-plan-section h3,
.brochure-section h3,
.amenities-section h3{

    font-size:22px;

    margin-bottom:15px;

}

.project-config{

    margin-bottom:35px;

}

.project-config p{

    font-size:18px;

}

.floorplan-buttons{

    display:flex;

    gap:16px;

}

.floorplan-buttons a,
.brochure-download a{

    display:flex;

    align-items:center;

    justify-content:center;

    height:58px;

    background:#1F3328;

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.floorplan-buttons a{

    flex:1;

}

.brochure-download a{

    width:260px;

}

.floorplan-buttons a:hover,
.brochure-download a:hover{

    background:var(--gold);

    color:#000;

}

.amenities-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px 35px;

    list-style:none;

}

.amenities-list li{

    position:relative;

    padding-left:20px;

}

.amenities-list li::before{

    content:"•";

    position:absolute;

    left:0;

    color:var(--gold);

    font-size:24px;

}

/* ================================= */
/* MINI CONTACT FOOTER */
/* ================================= */

.mini-contact-footer{

    padding:90px 0;

    background:#eef1ee;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

}

.mini-tag{

    color:var(--gold);

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

    margin-bottom:18px;

}

.mini-contact-left h2{

    font-size:54px;

    line-height:1.2;

    color:#1F3328;

    margin-bottom:24px;

}

.mini-contact-left p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.mini-contact-right{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.mini-contact-right input,
.mini-contact-right textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:#fff;

}

.mini-contact-right textarea{

    height:180px;

    resize:none;

}

.mini-contact-right button{

    width:220px;

    height:58px;

    border:none;

    border-radius:14px;

    background:#1F3328;

    color:#fff;

    font-weight:700;

    transition:.3s;

}

.mini-contact-right button:hover{

    background:var(--gold);

    color:#000;

}

/* ================================= */
/* PREMIUM NBA LOADER */
/* ================================= */

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100vh;

background:#f7f4ee;

display:flex;
justify-content:center;
align-items:center;

z-index:999999;

overflow:hidden;

transition:
opacity 1s ease,
visibility 1s ease;
}

/* WRAPPER */

.loader-wrapper{

position:relative;

width:100%;
height:100vh;

display:flex;
flex-direction:column;

justify-content:center;
align-items:center;
}

/* SKYLINE */

.loader-skyline{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-57%);

width:72%;

max-width:1350px;

opacity:0;

animation:skylineReveal 1.8s ease forwards;
}

/* NBA LOGO */

.loader-logo{

position:relative;

z-index:5;

width:240px;

margin-top:400px;

opacity:0;

animation:logoReveal 1.5s ease forwards;

animation-delay:0.8s;
}

/* LOADING TEXT */

.loader-text{

margin-top:12px;

font-size:11px;

letter-spacing:6px;

font-weight:600;

color:#b89c6b;

opacity:0;

animation:textReveal 1s ease forwards;

animation-delay:1.4s;
}

/* DOTS */

.loading-dots{

display:flex;

gap:10px;

margin-top:8px;

opacity:0;

animation:textReveal 1s ease forwards;

animation-delay:1.5s;
}

.loading-dots span{

width:8px;
height:8px;

border-radius:50%;

background:#b89c6b;

animation:dots 1.2s infinite ease-in-out;
}

.loading-dots span:nth-child(2){
animation-delay:0.2s;
}

.loading-dots span:nth-child(3){
animation-delay:0.4s;
}

/* SKYLINE ANIMATION */

@keyframes skylineReveal{

from{

opacity:0;

transform:
translate(-50%,-54%);
}

to{

opacity:0.92;

transform:
translate(-50%,-57%);
}

}

/* LOGO REVEAL */

@keyframes logoReveal{

from{

opacity:0;

transform:
translateY(30px);
}

to{

opacity:1;

transform:
translateY(0);
}

}

/* TEXT FADE */

@keyframes textReveal{

to{
opacity:1;
}

}

/* DOTS */

@keyframes dots{

0%, 80%, 100%{

transform:scale(0.7);

opacity:0.35;
}

40%{

transform:scale(1);

opacity:1;
}

}

/* ========================= */
/* ONGOING PROJECT LABEL */
/* ========================= */

.ongoing-project-label{

background:#0d7a3c !important;
color:#fff !important;

padding:6px 12px !important;
border-radius:8px !important;

font-size:12px !important;
font-weight:700 !important;

white-space:nowrap;

opacity:1 !important;
visibility:visible !important;

}

.ongoing-project-label::before{
display:none !important;
}

.nba-journey{
    max-width:1400px;
    margin:120px auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:500px 1fr;
    gap:80px;
}


.journey-left span{
    font-size:13px;
    letter-spacing:4px;
    color:#b89c6b;
    font-weight:600;
    margin-bottom:20px;
    display:block;
}

.journey-left{
    padding-right:80px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.journey-left p{
    font-size:20px;
    line-height:2;
    color:#4d5b52;
    max-width:550px;
}

.journey-right{
    position:relative;
    padding-left:20px;
}

.journey-right::before{
    content:'';
    position:absolute;
    left:16px;
    top:0;
    bottom:0;
    width:2px;
    background:#d9d1c2;
}

.journey-item{
    position:relative;
    margin-bottom:55px;
}

.journey-dot{
    position:absolute;
    left:-28px;
    top:12px;

    width:16px;
    height:16px;

    border-radius:50%;
    background:#0d2d1f;
    border:4px solid #c49a54;
}

.year{
    display:block;
    font-size:14px;
    letter-spacing:3px;
    color:#b89c6b;
    font-weight:700;
    margin-bottom:6px;
}

.journey-content h3{
    font-family:'DM Serif Display', serif;
    font-size:34px;
    color:#0d2d1f;
    margin-bottom:10px;
}

.journey-left h1{
    font-family:'DM Serif Display', serif;
    font-size:50px;
    line-height:1.2;
    color:#0d2d1f;
    margin:12px 0 40px;
}

.journey-content p{
    max-width:500px;
    line-height:1.7;
    color:#555;
}



/* =======================================================
   RESPONSIVE - LARGE TABLETS & SMALL LAPTOPS (1100px)
======================================================= */

@media (max-width:1100px){

.container{

max-width:100%;
padding:0 30px;

}

/* HEADER */

header{

height:82px;

}

.logo img{

height:72px;

}

.header-btn{

padding:14px 24px;

}

/* HERO */

.hero-content{

max-width:580px;

padding-top:160px;

padding-left:5%;

}

.hero-content h1{

font-size:4.1rem;

}

.hero-content p{

font-size:17px;

}

.hero-blur{

width:55%;

}

/* ABOUT */

.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.about-slider{

height:520px;

}

.about-content{

text-align:center;

}

.about-stats{

justify-content:center;

}

/* JOURNEY */

.nba-journey{

grid-template-columns:1fr;

gap:70px;

}

.journey-left{

padding-right:0;

max-width:800px;

}

.journey-right{

padding-left:40px;

}

/* LEADERSHIP */

.leader-grid{

grid-template-columns:1fr;

gap:40px;

}

.leader-image{

height:560px;

}

/* PAST PROJECTS */

.project-card{

flex:0 0 340px;

}

.project-card h3{

font-size:24px;

}

/* ONGOING */

.ongoing-card{

grid-template-columns:1fr;

}

.ongoing-image{

min-height:420px;

}

.ongoing-content{

padding:45px;

}

.ongoing-content h3{

font-size:46px;

}

.ongoing-location{

font-size:22px;

}

/* FUTURE PROJECTS */

.future-project-list{

grid-template-columns:repeat(2,1fr);

}

/* BUSINESSES */

.business-grid{

grid-template-columns:repeat(2,1fr);

}

/* GOOGLE */

.google-rating-box{

flex-direction:column;

align-items:flex-start;

gap:35px;

}

.trust-stats{

gap:40px;

}

/* CONTACT */

.contact-grid{

grid-template-columns:1fr;

gap:60px;

}

/* MAP */

#pune-map{

height:600px;

}

/* PROJECT DETAILS */

.project-container{

grid-template-columns:1fr;

}

.main-image img{

height:500px;

}

.project-details{

margin-top:10px;

}

/* MINI FOOTER */

.mini-contact-footer{

grid-template-columns:1fr;

gap:60px;

}

/* LOADER */

.loader-logo{

width:210px;

margin-top:280px;

}

.loader-skyline{

width:95%;

}

}


/* =======================================================
   RESPONSIVE - TABLETS & MOBILE (768px)
======================================================= */

@media (max-width:768px){

html,
body{
width:100%;
overflow-x:hidden;
}

.container{
padding:0 20px;
}

section{
padding:70px 0;
}

/* ================= HEADER ================= */

header{

width:95%;
height:72px;
top:10px;

}

.logo img{

height:60px;

}

nav{

display:none;

}

.header-btn{

display:none;

}

.menu-toggle{

display:block;

}

/* ================= HERO ================= */

.hero{

height:auto;
min-height:100vh;

}

.hero-slider,
.hero-overlay{

width:100%;

}

.hero-blur{

width:100%;
backdrop-filter:blur(8px);

}

.hero-content{

max-width:100%;

padding-top:150px;
padding-left:24px;
padding-right:24px;

}

.hero-sub{

font-size:11px;
letter-spacing:3px;

}

.hero-content h1{

font-size:3rem;
line-height:1.15;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;
align-items:flex-start;
gap:15px;

}

.hero-btn{

width:100%;
text-align:center;

}

/* ================= COMMON ================= */

.section-title{

font-size:42px;
line-height:1.25;

}

/* ================= ABOUT ================= */

.about-grid{

gap:45px;

}

.about-slider{

height:380px;

}

.about-arrow{

width:44px;
height:44px;
font-size:18px;

}

.about-stats{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

}

/* ================= JOURNEY ================= */

.nba-journey{

margin:80px auto;

padding:0 20px;

gap:45px;

}

.journey-left h1{

font-size:40px;

}

.journey-left p{

font-size:17px;

line-height:1.8;

}

.journey-right{

padding-left:30px;

}

.journey-right::before{

left:10px;

}

.journey-dot{

left:-38px;

}

/* ================= LEADERS ================= */

.leader-content{

padding:28px;

}

.leader-content h3{

font-size:34px;

}

.leader-image{

height:420px;

}

/* ================= PAST PROJECTS ================= */

.projects{

padding:80px 0;

}

.project-card{

flex:0 0 290px;

}

.project-image{

height:240px;

}

.project-card h3{

font-size:22px;

padding:22px 22px 8px;

}

.project-card p{

padding:0 22px 22px;

font-size:16px;

}

/* ================= ONGOING ================= */

.ongoing-image{

min-height:260px;

}

.ongoing-content{

padding:28px;

}

.ongoing-content h3{

font-size:34px;

}

.ongoing-location{

font-size:19px;

}

.ongoing-description{

font-size:16px;

}

.explore-btn{

width:100%;

}

/* ================= FUTURE ================= */

.future-project-list{

grid-template-columns:1fr;

}

/* ================= BUSINESS ================= */

.business-grid{

grid-template-columns:1fr;

}

/* ================= GOOGLE ================= */

.google-rating-box{

padding:28px;

}

.google-left{

flex-direction:column;
align-items:flex-start;

}

.google-left h3{

font-size:36px;

}

.trust-stats{

display:grid;

grid-template-columns:1fr 1fr;

gap:24px;

}

.review-card{

width:310px;

}

/* ================= MAP ================= */

#pune-map{

height:320px;

}

.map-legend{

display:none;

}

/* ================= CONTACT ================= */

.contact-grid{

gap:40px;

}

.contact-form button{

width:100%;

}

/* ================= PROJECT PAGE ================= */

.project-page{

padding-top:120px;

}

.main-image img{

height:320px;

}

.thumbnail-row{

gap:10px;

}

.thumbnail-row img{

width:82px;
height:64px;

}

.project-details{

padding:28px;

}

.project-details h1{

font-size:34px;

}

.floorplan-buttons{

flex-direction:column;

}

.brochure-download a{

width:100%;

}

.amenities-list{

grid-template-columns:1fr;

}

/* ================= MINI CONTACT ================= */

.mini-contact-footer{

padding:70px 20px;

gap:45px;

}

.mini-contact-left h2{

font-size:38px;

}

.mini-contact-right button{

width:100%;

}

/* ================= LOADER ================= */

.loader-logo{

width:170px;

margin-top:140px;

}

.loader-skyline{

width:140%;

transform:translate(-50%,-58%);

}

.loader-text{

font-size:10px;

letter-spacing:4px;

}

}


/* =======================================================
   RESPONSIVE - SMALL PHONES (480px)
======================================================= */

@media (max-width:480px){

html,
body{

overflow-x:hidden;

}

/* ================= HEADER ================= */

header{

width:96%;
height:66px;
top:8px;
padding:0 14px;

}

.logo img{

height:50px;

}

/* ================= HERO ================= */

.hero-content{

padding-top:125px;
padding-left:18px;
padding-right:18px;

}

.hero-sub{

font-size:10px;
letter-spacing:2px;

}

.hero-content h1{

font-size:2.35rem;
line-height:1.15;

}

.hero-content p{

font-size:15px;
line-height:1.8;

}

.hero-buttons{

gap:12px;

}

.hero-btn{

width:100%;
padding:16px 0;
font-size:15px;

}

/* ================= COMMON ================= */

.section-title{

font-size:34px;
line-height:1.25;

}

.section-tag{

font-size:11px;
letter-spacing:2px;

}

/* ================= ABOUT ================= */

.about-slider{

height:300px;

}

.about-arrow{

width:40px;
height:40px;
font-size:16px;

}

.about-stats{

grid-template-columns:1fr;

gap:20px;

}

/* ================= JOURNEY ================= */

.nba-journey{

margin:60px auto;
padding:0 15px;

}

.journey-left h1{

font-size:32px;

}

.journey-left p{

font-size:15px;

}

.journey-content h3{

font-size:26px;

}

.journey-content p{

font-size:15px;

}

.year{

font-size:12px;

}

/* ================= LEADERS ================= */

.leader-image{

height:300px;

}

.leader-content{

padding:22px;

}

.leader-content h3{

font-size:28px;

}

/* ================= PAST PROJECTS ================= */

.project-card{

flex:0 0 260px;

}

.project-image{

height:210px;

}

.project-card h3{

font-size:20px;

}

.project-card p{

font-size:15px;

}

/* ================= ONGOING ================= */

.ongoing-image{

min-height:220px;

}

.ongoing-content{

padding:22px;

}

.ongoing-content h3{

font-size:28px;

}

.ongoing-location{

font-size:17px;

}

.ongoing-description{

font-size:15px;

}

.rera-badge{

left:12px;
right:12px;
bottom:12px;

text-align:center;

font-size:10px;
padding:8px 10px;

}

/* ================= FUTURE ================= */

.future-project-item{

padding:28px;

}

.future-project-item h3{

font-size:24px;

}

/* ================= BUSINESS ================= */

.business-card{

padding:28px;

}

.business-card h3{

font-size:24px;

}

/* ================= GOOGLE ================= */

.google-rating-box{

padding:22px;

}

.google-left h3{

font-size:30px;

}

.review-card{

width:270px;
padding:26px;

}

.review-card p{

font-size:15px;

}

/* ================= MAP ================= */

#pune-map{

height:260px;

}

/* ================= CONTACT ================= */

.contact-form input,
.contact-form textarea{

padding:16px;

}

.contact-form button{

height:54px;

}

/* ================= PROJECT PAGE ================= */

.project-page{

padding-top:105px;

}

.main-image img{

height:250px;

}

.thumbnail-row img{

width:72px;
height:56px;

}

.project-details{

padding:22px;

}

.project-details h1{

font-size:28px;

}

.project-location{

font-size:16px;

}

.project-config h3,
.floor-plan-section h3,
.brochure-section h3,
.amenities-section h3{

font-size:20px;

}

/* ================= MINI CONTACT ================= */

.mini-contact-footer{

padding:60px 18px;

}

.mini-contact-left h2{

font-size:30px;

}

.mini-contact-left p{

font-size:15px;

}

.mini-contact-right input,
.mini-contact-right textarea{

padding:16px;

}

.mini-contact-right button{

height:54px;

}

/* ================= FOOTER ================= */

footer p,
.mini-footer p{

font-size:13px;

}

/* ================= LOADER ================= */

.loader-logo{

width:140px;

margin-top:90px;

}

.loader-skyline{

width:170%;

}

.loader-text{

font-size:9px;

letter-spacing:3px;

}

.loading-dots span{

width:7px;
height:7px;

}

}
