/* GLOBAL STYLES */
	
    body {
		font-family:'Poppins',sans-serif;
        margin: 0;
        padding: 0;
		background:#F7F4EE;
		color:#333;
		overflow-x:hidden;
    }
	body::before{

    content:"";
    position:fixed;
    inset:0;

    background-image:
    radial-gradient(rgba(198,161,91,.035) 1px,transparent 1px);

    background-size:28px 28px;

    pointer-events:none;

    z-index:-1;

}
section{

    position:relative;

}

section::after{

    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    width:120px;
    height:1px;
    background:linear-gradient(to right,transparent,#C6A15B,transparent);
    transform:translateX(-50%);
    opacity:.35;

}
.form-control{

    height:58px;
    border-radius:12px;
    border:1px solid #e8e3d8;
    box-shadow:none;

}

.form-control:focus{

    border-color:#C6A15B;
    box-shadow:0 0 0 5px rgba(198,161,91,.12);

}
.section-padding{

    padding:100px 0;

}

.container{
    max-width:1200px;
}
    /* --- BRANDING / LOGO --- */
    .img-logo{
 width: 120px;
}
.logo-box {
        width: 32px;
        height: 34px;
        border: 2px solid #0b1a30;
        position: relative;
        display: inline-block;
    }
    .inner-square {
        width: 8px;
        height: 8px;
        border: 2px solid #0b1a30;
        position: absolute;
        bottom: 4px;
        left: 4px;
    }
    .brand-title {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1.1;
        color: #0b1a30;
    }
    .brand-sub {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.5px;
        line-height: 1.1;
        color: #0b1a30;
    }

    /* --- STICKY NAVIGATION STYLES --- */
    
.sticky-header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
   
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    border-bottom: 1px solid #f1f1f1;
    transition: all .35s ease;
	backdrop-filter:blur(14px);
    background:rgba(255,255,255,.95)!important;
}
    .container-nav-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .navbar .navbar-collapse {
        width: 100%;
    }
    .main-nav-links {
	
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        margin-top: 1rem;
    }
    .navbar .nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #555555 !important;
    padding: 0 15px !important;
    transition: color 0.3s ease;
}


    .navbar .nav-link.active, 
    .navbar .nav-link:hover {
        color: #c48a43 !important;
    }
	.navbar .nav-link:after{

    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:2px;
    background:#C6A15B;
    transition:.35s;
    transform:translateX(-50%);

}
.navbar .nav-link:hover:after,
.navbar .nav-link.active:after{

    width:80%;

}

    /* --- HERO SECTION --- */
    .hero-section {
        height: 80vh; 
        min-height: 550px;
        position: relative;
        overflow: hidden;
    }
    .hero-bg-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://brickbybrickstudio.in/assets/images/hero.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
        background-repeat: no-repeat;
    }

    @media (min-width: 992px) {
        .hero-bg-img {
            width: 100%;
        }
        .hero-bg-img::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 50%;
            background: linear-gradient(to right, #ffffff, transparent);
        }
    }

    .hero-content-col {
        z-index: 2;
    }
    .hero-tagline {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: #c48a43;
        display: inline-block;
        line-height: 1.5;
    }
    .hero-title {
        
        font-size: 3.5rem;
        font-weight: 600;
        color: #0b1a30;
        line-height: 1.1;
    }
    .hero-title em {
        
        font-style: italic;
        font-weight: 400;
    }
    .hero-description {
        font-size: 14px;
        color: #4a5568;
        line-height: 1.6;
        max-width: 90%;
    }
    .btn-explore {
        background-color: #0b1a30;
        color: #ffffff !important;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 14px 32px;
        border-radius: 0px;
        transition: background-color 0.3s ease;
    }
    .btn-explore:hover {
        background-color: #162a4a;
    }
    .hero-mob {
        align-items: center; 
    }

    /* --- FIXED MOBILE ADJUSTMENTS --- */
    @media (max-width: 768px) {
        .container-nav-wrapper {
            flex-direction: row !important;
            justify-content: space-between !important;
            align-items: center !important;
            position: relative;
        }

        /* Mobile Dropdown Overlay (Sticky layout ke upar floating menu ke liye) */
        .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0px 10px 15px rgba(0,0,0,0.05);
            z-index: 1060;
            padding: 15px 0;
            border-top: 1px solid #f0f0f0;
        }

        .main-nav-links {
            flex-direction: column !important;
            margin-top: 0;
            text-align: center;
            gap: 15px !important;
        }

        .navbar .nav-link {
            padding: 10px 0 !important;
            display: block;
            font-size: 12px;
        }

        .modern-toggler {
            border: 1px solid #0b1a30 !important;
            border-radius: 4px;
            padding: 5px 8px;
        }

        .hero-section {
            height: 85vh;
            min-height: 520px;
        }
        .hero-bg-img {
            background-image: url('https://brickbybrickstudio.in/assets/images/mob-hero.png');
            background-size: cover; 
            background-position: center bottom;
            opacity: 1;
            width: 100%;
        }
        .hero-bg-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .hero-title {
            font-size: 2.3rem;
            color: #ffffff !important;
            line-height: 1.2;
        }
        .hero-title em {
            color: #f3c178;
        }
        .hero-description {
            color: #e2e8f0 !important;
            font-size: 13px;
            max-width: 100%;
        }
        .hero-tagline {
            color: #f3c178;
        }
        .btn-explore {
            background-color: #f3c178;
            color: #0b1a30 !important;
            width: 100%;
            text-align: center;
        }
        .hero-mob {
            align-items: start; 
            padding: 30px 10px;
        }
		.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
}
.section-title h2,
.about-section h2,
.nupeak h2,
.location-section h2{

    font-size:32px !important;

}
    }
	
/*==========================================
BUTTONS
==========================================*/

.btn{

    padding:15px 34px;
    border-radius:0;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    transition:.4s;

}

.btn-gold{

    background:#102542;
    color:#fff;
    border:none;
box-shadow:0 10px 30px rgba(198,161,91,.25);

}

.btn-gold:hover{

    background:#C6A15B;
    color:#fff;
 transform:translateY(-3px);

}
.btn-blue{
    background: #C6A15B;
    color:#fff;
    border:none;
box-shadow:0 10px 30px rgba(198,161,91,.25);
}
.btn-blue:hover{

    background:#102542;
    color:#fff;
 transform:translateY(-3px);

}
.btn-outline{

    border:2px solid #172443;
    color:#172443;

}

.btn-outline:hover{

    background:#172443;
    color:#fff;

}


/*==========================================
ABOUT
==========================================*/
.about-section {
    text-align: left;
}
.about-section h6{

    color:#C6A15B;
    letter-spacing:2px;
    margin-bottom:15px;

}

.about-section h2{  
    color:#172443;
    margin-bottom:25px;
}

.about-section p{
    line-height:32px;
    color:#555;
}

.about-section img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/*==========================================
NUPEAK
==========================================*/

.nupeak{
    background:#fff;

}

.section-tag{

    color:#C6A15B;
    letter-spacing:2px;
    font-weight:600;

}

.nupeak h2{
    color:#172443;
    margin:15px 0;

}

.nupeak h3{
    color:#444;
    line-height:1.5;
    margin-bottom:25px;

}

.nupeak p{

    line-height:32px;
    margin-bottom:35px;
    color:#666;

}

.nupeak img{

    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==========================================
SECTION TITLE
==========================================*/
.section-title h2,
.about-section h2,
.nupeak h2,
.location-section h2{

    font-size:52px;
    font-weight:600;
    line-height:1.1;
    letter-spacing:-1px;

}

.section-title span{

    position:relative;
    display:inline-block;
    padding-left:60px;

}

.section-title span:before{

    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:45px;
    height:2px;
    background:#C6A15B;

}
/*==========================================
BUTTONS
==========================================*/

.btn{

    padding:15px 34px;
    border-radius:0;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    transition:.4s;

}

.btn-gold{

    background:#172443;
    color:#fff;
    border:none;

}

.btn-gold:hover{

    background:#C6A15B;
    color:#fff;

}

.btn-outline{

    border:2px solid #172443;
    color:#172443;

}

.btn-outline:hover{

    background:#172443;
    color:#fff;

}



/* Reveal Animation */

.highlights{

    background:#f8f5ef;
    position:relative;
    overflow:hidden;

}

.highlights::before{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#C6A15B15;
    border-radius:50%;
    left:-150px;
    top:-120px;

}

.highlights::after{

    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:#17244308;
    border-radius:50%;
    right:-120px;
    bottom:-120px;

}

.highlight-box{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    height:100%;

    border:1px solid #eee;

    position:relative;

    overflow:hidden;

}

.highlight-box::before{

    content:'';

    position:absolute;

    width:100%;

    height:4px;

    background:#C6A15B;

    left:0;

    top:0;

    transform:scaleX(0);

    transition:.4s;

}

.highlight-box:hover::before{

    transform:scaleX(1);

}

.highlight-box:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.10);

}

.icon-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#f7f4ee;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 25px;

}

.icon-circle img{

    width:42px;

}

.highlight-box h5{

    font-size:20px;

    color:#172443;

    margin-bottom:12px;

    font-weight:600;

}

.highlight-box p{

    font-size:15px;

    color:#666;

    line-height:28px;

}

.status-badge{

    display:inline-block;

    background:#C6A15B;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    letter-spacing:.5px;

}
/*==========================================
APARTMENT CONFIGURATIONS
==========================================*/

.configurations{

    background:#F8F6F2;
    position:relative;

}

.config-card{

    background:#ffffff;

    border-radius:20px;

    padding:55px;

    height:100%;

    border:1px solid #ece8df;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.config-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#C8A96A;

}

.config-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.active-card{

    border:2px solid #C8A96A;

}

.config-tag{

    display:inline-block;

    background:#172443;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.config-tag.gold{

    background:#C8A96A;

}

.config-card h3{

    font-size:34px;

    

    color:#172443;

    margin-bottom:10px;

}

.config-card h1{

    font-size:72px;

    

    color:#C8A96A;

    margin-bottom:5px;

    line-height:1;

}

.config-card h1 small{

    font-size:22px;

    color:#555;

}

.config-text{

    color:#666;

    line-height:30px;

    margin:25px 0;

}

.divider{

    width:70px;

    height:2px;

    background:#C8A96A;

    margin:30px 0;

}

.features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.features div{

    font-size:15px;

    color:#444;

}

.features i{

    color:#C8A96A;

    margin-right:10px;

}

.config-card .btn{

    margin-top:35px;

    padding:14px 30px;

    border-radius:50px;

}

.config-card:hover .btn{

    background:#C6A15B;
    color: white;

}

@media(max-width:768px){

.config-card{

padding:35px;

}

.config-card h1{

font-size:52px;

}

.config-card h3{

font-size:28px;

}

.features{

grid-template-columns:1fr;

}

}
footer{
    background: #172443;
     /*background:linear-gradient(180deg,#1E1F24,#111319);*/
    color:#fff;
    padding:70px 0 25px;

}

footer hr{

    border-color:rgba(255,255,255,.08);

}
footer a{

    color:#d0d0d0;

}

footer a:hover{

    color:#C69C4D;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

}
ul.footer-menu{
    list-style: none;
float: right;
}
.location-section{

    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#FBF8F2 0%,#F6F2EA 50%,#FDFCF9 100%);

}

.location-section .section-tag{

display:inline-block;

letter-spacing:4px;

text-transform:uppercase;

font-size:13px;

color:#C69C4D;

margin-bottom:18px;

font-weight:600;

}

.location-section h2{
color:#172443;
margin-bottom:25px;
line-height:1.05;
}

.location-section p{

font-size:18px;

line-height:34px;

color:#666;

margin-bottom:40px;

}

.location-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

}

.location-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 18px 40px rgba(0,0,0,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.location-card:before{

content:"";

position:absolute;

left:0;

top:0;

width:5px;

height:100%;

background:#C69C4D;

}

.location-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.location-icon{

width:70px;

height:70px;

background:#F8F5EF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#C69C4D;

margin-bottom:25px;

}

.location-card h5{

font-size:22px;

color:#172443;

margin-bottom:10px;

font-weight:600;

}

.location-card span{

font-size:16px;

color:#888;

}
.location-gap{
        gap: 2em;
}
.investment-section{

    position:relative;

    padding:140px 0;

    background:url("https://brickbybrickstudio.in/assets/images/master.jpeg") center center/cover no-repeat;

    overflow:hidden;

    text-align:center;

    color:#fff;

}

.investment-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(8,17,34,.78),
               rgba(8,17,34,.82));

}

.investment-section .container{

    position:relative;

    z-index:2;

}

.investment-section .section-tag{

    color:#C69C4D;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

}

.investment-section h2{
    margin:25px 0;

    line-height:1.05;

    color:#fff;

}

.investment-section p{

    max-width:850px;

    margin:0 auto 60px;

    font-size:21px;

    line-height:38px;

    color:#f5f5f5;

}

.investment-section .btn{

    border:1px solid #C69C4D;

    color:#C69C4D;

    padding:16px 45px;

    text-transform:uppercase;

    letter-spacing:2px;

    transition:.35s;

}

.investment-section .btn:hover{

    background:#C69C4D;

    color:#fff;

}
/* ==========================================
SCROLL REVEAL ANIMATION
========================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .9s ease;
    will-change:transform,opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.reveal-left{
    opacity:0;
    transform:translateX(-70px);
    transition:all .9s ease;
}

.reveal-left.active{
    opacity:1;
    transform:translateX(0);
}

.reveal-right{
    opacity:0;
    transform:translateX(70px);
    transition:all .9s ease;
}

.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

.reveal-zoom{
    opacity:0;
    transform:scale(.9);
    transition:all .8s ease;
}

.reveal-zoom.active{
    opacity:1;
    transform:scale(1);
}

/* Hero Animation */

.hero-tagline,
.hero-title,
.hero-description,
.btn-explore{

    animation:fadeUp .9s ease forwards;
    opacity:0;

}

.hero-title{
    animation-delay:.2s;
}

.hero-description{
    animation-delay:.45s;
}

.btn-explore{
    animation-delay:.7s;
}

.hero-bg-img{
    animation:zoomHero 8s ease-in-out infinite alternate;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes zoomHero{

from{
transform:scale(1);
}

to{
transform:scale(1.08);
}

}