/*==================================================
PROJECT LAUNCHES
Premium Real Estate Website
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
    color:#222;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*==============================
NAVBAR
==============================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    transition:.4s;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 6%;

    background:rgba(8,13,23,.75);
    backdrop-filter:blur(12px);

}

.logo img{

    height:58px;
    width:auto;

}

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links li a{

    color:#fff;
    font-size:15px;
    font-weight:500;
    position:relative;

}

.nav-links li a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.3s;

}

.nav-links li a:hover::after{

    width:100%;

}

.nav-links li a:hover{

    color:#d4af37;

}

/*==============================
BUTTONS
==============================*/

.nav-buttons{

    display:flex;
    align-items:center;
    gap:15px;

}

.call-btn{

    padding:11px 24px;
    border-radius:40px;
    color:#fff;
    border:1px solid #d4af37;
    font-size:14px;
    font-weight:500;

}

.call-btn:hover{

    background:#d4af37;
    color:#111;

}

.whatsapp-btn{

    background:#25D366;
    color:#fff;

    padding:11px 24px;

    border-radius:40px;

    font-size:14px;

    font-weight:500;

}

.whatsapp-btn:hover{

    transform:translateY(-3px);

}

.menu-btn{

    color:#fff;
    display:none;
    font-size:26px;
    cursor:pointer;

}

/*==============================
HERO
==============================*/

.hero{

    height:70vh;

    background:url("/Images/Project\ Launches\ Banner.jpg") center center/cover no-repeat;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    rgba(94, 94, 95, 0.363),
    rgba(10, 10, 10, 0.11));

}

.hero-content{

    position:relative;
    z-index:2;

    width:90%;
    max-width:1000px;

    text-align:center;

}

.hero-content h1{

    color:#fff;

    font-size:58px;

    line-height:1.2;

    margin-bottom:18px;

    font-weight:700;

}

.hero-content p{

    color:#eee;

    font-size:19px;

    margin-bottom:45px;

}

/*==============================
SEARCH BOX
==============================*/

.search-box{

    background:#fff;

    border-radius:70px;

    padding:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.search-box select{

    flex:1;

    border:none;

    background:#f5f6fa;

    padding:17px;

    border-radius:40px;

    font-size:15px;

    font-family:'Poppins';

    outline:none;

    cursor:pointer;

}

.search-box button{

    border:none;

    background:#d4af37;

    color:#111;

    padding:18px 35px;

    border-radius:40px;

    font-size:15px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.search-box button:hover{

    background:#b88a18;

    color:#fff;

    transform:translateY(-2px);

}

/*==============================
SECTION TITLE
==============================*/

.projects{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#0b1320;

    margin-bottom:12px;

}

.section-title p{

    color:#666;

    font-size:17px;

    max-width:700px;

    margin:auto;

}

/*=========================================
PROJECT SLIDER
=========================================*/

.project-slider{
    display:flex;
    gap:30px;
    overflow-x:auto;
    padding:10px 5px 20px;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.project-slider::-webkit-scrollbar{
    display:none;
}

/*=========================================
PROJECT CARD
=========================================*/

.project-card{

    min-width:340px;
    max-width:340px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

/*=========================================
PROJECT IMAGE
=========================================*/

.project-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.08);

}

/*=========================================
PROJECT INFO
=========================================*/

.project-info{

    padding:25px;

}

.project-info h3{

    font-size:24px;

    color:#111;

    margin-bottom:8px;

    font-weight:600;

}

.project-info p{

    color:#777;

    margin-bottom:25px;

    font-size:15px;

}

/*=========================================
VIEW BUTTON
=========================================*/

.project-info a{

    display:inline-block;

    padding:13px 30px;

    border-radius:40px;

    background:#d4af37;

    color:#111;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.project-info a:hover{

    background:#111;

    color:#fff;

}

/*=========================================
PROJECT CARD BORDER EFFECT
=========================================*/

.project-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#d4af37;

}

/*=========================================
COMING SOON SECTION
=========================================*/

.pune-section{

    background:#fff;

}

.coming-soon{

    max-width:800px;

    margin:0 auto;

    background:#f8f9fb;

    border-radius:20px;

    padding:70px 50px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.coming-soon i{

    font-size:70px;

    color:#d4af37;

    margin-bottom:25px;

}

.coming-soon h3{

    font-size:34px;

    margin-bottom:18px;

    color:#111;

}

.coming-soon p{

    font-size:17px;

    color:#666;

    line-height:1.8;

    max-width:650px;

    margin:0 auto 35px;

}

/*=========================================
NOTIFY BUTTON
=========================================*/

.notify-btn{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:16px 40px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.notify-btn:hover{

    background:#111;

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================
PROJECT CARD ANIMATION
=========================================*/

.project-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
SECTION SPACING
=========================================*/

.projects .container{

    width:92%;

    max-width:1450px;

}

.projects{

    position:relative;

}

.section-title{

    margin-bottom:55px;

}

/*=========================================
FOOTER
=========================================*/

footer{

    background:#0b1320;

    color:#fff;

    padding:80px 0 0;

}

.footer-container{

    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;

}

.footer-about img{

    width:180px;
    margin-bottom:25px;

}

.footer-about p{

    color:#bdbdbd;
    line-height:1.8;
    font-size:15px;

}

.footer-links h4,
.footer-contact h4,
.footer-social h4{

    font-size:20px;
    margin-bottom:25px;
    color:#fff;

}

.footer-links ul li{

    margin-bottom:15px;

}

.footer-links ul li a{

    color:#bdbdbd;
    transition:.3s;

}

.footer-links ul li a:hover{

    color:#d4af37;
    padding-left:8px;

}

.footer-contact p{

    margin-bottom:18px;
    color:#bdbdbd;
    font-size:15px;

}

.footer-contact i{

    color:#d4af37;
    margin-right:12px;

}

.social-icons{

    display:flex;
    gap:15px;

}

.social-icons a{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:#1d2838;

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:#d4af37;
    color:#111;

    transform:translateY(-5px);

}

.copyright{

    text-align:center;

    padding:25px;

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#aaa;

    font-size:14px;

}


/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:30px;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero-content h1{

font-size:48px;

}

.search-box{

flex-wrap:wrap;
border-radius:20px;

}

.search-box select{

flex:1 1 250px;

}

.search-box button{

width:100%;

}

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:992px){

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:17px;

}

.project-card{

min-width:320px;

}

}


@media(max-width:768px){

.navbar{

padding:18px 5%;

}

.logo img{

height:48px;

}

.nav-buttons{

display:none;

}

.hero{

height:90vh;

}

.hero-content{

width:95%;

}

.hero-content h1{

font-size:34px;
line-height:1.3;

}

.hero-content p{

font-size:16px;
margin-bottom:30px;

}

.search-box{

padding:20px;

}

.search-box select,
.search-box button{

width:100%;

}

.section-title h2{

font-size:34px;

}

.section-title p{

font-size:15px;

}

.project-card{

min-width:300px;

}

.coming-soon{

padding:45px 25px;

}

.coming-soon h3{

font-size:28px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

}


@media(max-width:576px){

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:15px;

}

.project-card{

min-width:280px;

}

.section-title h2{

font-size:30px;

}

.call-btn,
.whatsapp-btn{

padding:10px 20px;

font-size:13px;

}

}


/*=========================================
UTILITY CLASSES
=========================================*/

.text-center{

text-align:center;

}

.mt-50{

margin-top:50px;

}

.mb-50{

margin-bottom:50px;

}

.pt-100{

padding-top:100px;

}

.pb-100{

padding-bottom:100px;

}

.d-flex{

display:flex;

}

.align-center{

align-items:center;

}

.justify-center{

justify-content:center;

}


/*=========================================
TRANSITIONS
=========================================*/

button,
a,
.project-card,
img{

transition:.35s ease;

}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:.6s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.nav-links a.active{
    color:#d4af37;
}

.dragging{
    cursor:grabbing;
}

.loaded{
    overflow-x:hidden;
}

/*=========================================
BLOG CTA
=========================================*/

.blog-cta{

    padding:100px 0;

    background:#f8f9fb;

}

.blog-cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#fff;

    padding:70px 50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.blog-cta-content h2{

    font-size:42px;

    color:#111;

    margin-bottom:20px;

}

.blog-cta-content p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    max-width:700px;

    margin:0 auto 35px;

}

.blog-btn{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.blog-btn:hover{

    background:#111;

    color:#fff;

    transform:translateY(-3px);

}

@media(max-width:768px){

.blog-cta-content{

padding:50px 25px;

}

.blog-cta-content h2{

font-size:32px;

}

.blog-cta-content p{

font-size:16px;

}

}

.page-header{

    background:#0b1320;

    color:#fff;

    text-align:center;

    padding:80px 20px;

}

.page-header h1{

    font-size:48px;

    margin-bottom:15px;

}

.page-header p{

    color:#ccc;

}

.sitemap-section{

    padding:80px 0;

    background:#f8f9fb;

}

.city{

    background:#fff;

    border-radius:15px;

    padding:40px;

    margin-bottom:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.city h2{

    color:#d4af37;

    margin-bottom:25px;

}

.city ul{

    list-style:none;

    columns:2;

    padding:0;

}

.city li{

    margin-bottom:15px;

}

.city a{

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.city a:hover{

    color:#d4af37;

    padding-left:6px;

}

@media(max-width:768px){

.city ul{

columns:1;

}

.page-header h1{

font-size:36px;

}

}

/*==============================
POPUP
==============================*/

/*.popup-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.6);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

}

.popup-box{

    background:#fff;

    width:90%;
    max-width:500px;

    border-radius:15px;

    padding:40px;

    position:relative;

    animation:popup .3s ease;

}

@keyframes popup{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.popup-box h2{

margin-bottom:15px;

font-size:30px;

}

.popup-box p{

margin-bottom:25px;

color:#666;

}

.popup-box input{

width:100%;

padding:15px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:15px;

}

.popup-box button{

width:100%;

padding:15px;

border:none;

background:#d4af37;

border-radius:8px;

font-size:16px;

font-weight:600;

cursor:pointer;

}

.popup-box button:hover{

background:#111;

color:#fff;

}

.close-popup{

position:absolute;

top:15px;

right:20px;

font-size:30px;

cursor:pointer;

}*/