html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    user-select: none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*Logo */
.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
}

.logo img{

    width:100px;

    height:auto;

    display:block;

    object-fit:contain;
    border-radius: 50%;

    margin-right:-15px;
  
     filter:
    contrast(100%)
    brightness(50%)
    saturate(150%)
    drop-shadow(0 0 2px #D4A75B);
}
@media(max-width:600px){

.logo img{
    width:140px;
}

}
/* TOPBAR */

.topbar{
    background:#111;
    color:#fff;
    padding:10px 0;
}

.topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
/* DROPDOWN MENU */

.nav-links li{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:35px;
    left:0;

    background:#fff;

    min-width:220px;

    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

    display:none;

    flex-direction:column;

    padding:10px 0;

    z-index:999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{

    display:block;

    padding:12px 20px;

    color:#111;

    text-decoration:none;

    font-weight:500;

    transition:0.3s;
}

.dropdown-menu li a:hover{

    background:#f5f5f5;

    color:#D4A75B;
}




/* GALLERY SECTION */

.gallery{
    padding:100px 0;
    background:#fafafa;
}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:15px;

    transition:0.4s;

    cursor:pointer;
}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}


/* PROJECT STATUS */

.project-status{
    padding:100px 0;
    background:#fff;
}

.status-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.status-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.status-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(212,167,91,0.25);
}

.status-card img{

    width:100%;

    height:240px;

    object-fit:cover;
}

.status-content{
    padding:25px;
}

.status-tag{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;
}

.upcoming{
    background:#fff3cd;
    color:#856404;
}

.completed{
    background:#d4edda;
    color:#155724;
}

.ongoing{
    background:#cce5ff;
    color:#004085;
}


/* MOBILE */

@media(max-width:991px){

.gallery-grid,
.status-grid{
    grid-template-columns:1fr 1fr;
}

.dropdown-menu{

    position:static;

    box-shadow:none;

    background:#fafafa;

    margin-top:10px;
}

}

@media(max-width:600px){

.gallery-grid,
.status-grid{
    grid-template-columns:1fr;
}

}
/* NAVBAR */
/* Social icon*/
.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-icons a{

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    border-radius:50%;

    text-decoration:none;

    transition:0.3s ease;

    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* Facebook */

.social-icons a:nth-child(1) i{
    color:#1877F2;
}

/* Instagram */

.social-icons a img{

    width:20px;
    height:20px;
    object-fit:contain;
}

/* X Twitter */

.social-icons a:nth-child(3) i{
    color:#000;
}

/* LinkedIn */

.social-icons a:nth-child(4) i{
    color:#0A66C2;
}

.social-icons a:hover{

    transform:translateY(-5px) scale(1.08);
}

.social-icons i{
    font-size:18px;
}


/* Nav bar*/
nav{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h2{
    color:#D4A75B;
}

.logo span{
    font-size:13px;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{

    text-decoration:none;
    color:#111;
    font-weight:500;
    position:relative;
}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-5px;

    width:0;
    height:2px;

    background:#D4A75B;

    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.btn{

    background:#D4A75B;

    padding:12px 24px;

    border-radius:5px;

    text-decoration:none;

    color:#111;

    font-weight:600;

    transition:0.3s;
}

.btn:hover{
    background:#b88b42;
}


/* HERO */

.hero{
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;

    display:flex;
    align-items:center;
}

.hero-text{
    color:#fff;
    max-width:650px;
}

.hero-text h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text span{
    color:#D4A75B;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.btn-outline{

    border:2px solid #fff;

    padding:12px 24px;

    color:#fff;

    text-decoration:none;

    border-radius:5px;

    transition:0.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}


/* FEATURES */

.features{
    padding:80px 0;
    background:#fafafa;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-box{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(212,167,91,0.25);
}

.feature-box i{

    font-size:40px;

    color:#D4A75B;

    margin-bottom:20px;
}


/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
}


/* PROPERTIES */

.properties{
    padding:100px 0;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.property-card{

    background:#fff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.property-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(212,167,91,0.25);
}

.property-card img{

    width:100%;

    height:250px;

    object-fit:cover;
}

.property-content{
    padding:25px;
}

.property-content span{

    display:block;

    color:#D4A75B;

    font-weight:600;

    margin:10px 0;
}

.btn-small{

    display:inline-block;

    margin-top:10px;

    background:#D4A75B;

    color:#111;

    padding:10px 20px;

    text-decoration:none;

    border-radius:5px;
}


/* VIDEO SECTION */

.video-section{
    padding:100px 0;
    background:#fff;
}

.video-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.video-slider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    width:100%;
}

.video-slider::-webkit-scrollbar{
    display:none;
}

.video-card{

    min-width:340px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    flex-shrink:0;

    transition:0.4s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card iframe{

    width:100%;

    height:500px;

    border:none;
}

.video-content{
    padding:20px;
}

.video-btn{

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#D4A75B;

    color:#111;

    font-size:18px;

    cursor:pointer;

    position:absolute;

    z-index:10;
}

.prev-video{
    left:-25px;
}

.next-video{
    right:-25px;
}


/* ABOUT */

.about{
    padding:100px 0;
    background:#fafafa;
}

.about-container{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px;

    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.stats{
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.box h2{
    font-size: 60px;
    color: #D4A75B;
    font-weight: bold;
}




/* SERVICES */

.services{
    padding:100px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-box{

    background:#fff;

    padding:40px;

    border-radius:10px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(212,167,91,0.25);
}

.service-box i{

    font-size:40px;

    color:#D4A75B;

    margin-bottom:20px;

    transition:0.4s;
}

.service-box:hover i{
    transform:scale(1.2);
}
/* BLOG SECTION */

.blog-section{
    padding: 80px 8%;
    background: #fff;
}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card{
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;

    transition: 0.4s;
}

.blog-card:hover{
    transform: translateY(-10px);
}

.blog-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content{
    padding: 25px;
}

.blog-content span{
    color: #d4a64f;
    font-size: 14px;
    font-weight: 600;
}

.blog-content h3{
    color: #fff;
    font-size: 24px;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-content p{
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-content a{
    color: #d4a64f;
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover{
    letter-spacing: 1px;
}

/* Blog Page1 */
/* BLOG PAGE */

.blog-page{
    padding: 100px 8%;
    background: #111;
    color: #fff;
}

.blog-page img{
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
}

.blog-page h1{
    font-size: 42px;
    margin-bottom: 20px;
}

.blog-page p{
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 18px;
}

/* MOBILE */

@media(max-width:768px){

    .blog-section{
        padding: 60px 5%;
    }

    .blog-card img{
        height: 220px;
    }

    .blog-content h3{
        font-size: 20px;
    }

}

/* TESTIMONIAL */

.testimonial{
    padding:100px 0;
    background:#fafafa;
}

.testimonial-slider{

    display:flex;

    gap:20px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:10px;
}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

.testimonial-box{

    min-width:32%;

    background:#fff;

    padding:40px;

    border-radius:10px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    flex-shrink:0;
}

.stars{
    margin-bottom:20px;
    color:#D4A75B;
}

.testimonial-box span{

    display:block;

    margin-top:15px;

    color:#D4A75B;

    font-weight:600;
}


/* CONTACT */

.contact{
    padding:100px 0;
    background:#111;
    color:#fff;
}

.contact-container{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{

    padding:15px;

    border:none;

    outline:none;
}

button{

    background:#D4A75B;

    border:none;

    padding:15px;

    font-weight:600;

    cursor:pointer;
}
/* Google Map*/

.contact-map{
    width: 100%;
    margin-top: 25px;
}

.contact-map iframe{
    width: 100%;
    height: 220px;

    border: 0;
    border-radius: 10px;
}

/* FOOTER */

footer{

    background:#0F0F0F;

    color:#fff;

    padding-top:70px;
}

.footer-content{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    padding-bottom:50px;
}

footer ul{
    list-style:none;
}

footer ul li{
    margin-bottom:10px;
}

footer ul li a{

    color:#fff;

    text-decoration:none;

    transition:0.3s;
}

footer ul li a:hover{
    color:#D4A75B;
}

.copyright{

    text-align:center;

    padding:20px;

    border-top:1px solid rgba(255,255,255,0.1);
}


/* FLOATING BUTTONS */

.floating-buttons{
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-btn img,
.instagram-btn img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn img:hover,
.instagram-btn img:hover{
    transform: scale(1.1);
}
/* FLOATING BUTTON ANIMATION */

.whatsapp-btn{

    animation: whatsappPopup 1s ease forwards;
}

@keyframes whatsappPopup{

    0%{
        transform:translateY(100px);
        opacity:0;
    }

    100%{
        transform:translateY(0);
        opacity:1;
    }
}

/* MOBILE MENU */

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* RESPONSIVE */

@media(max-width:991px){

.nav-container{
    position:relative;
}

.menu-btn{
    display:block;
}

.desktop-btn{
    display:none;
}

.nav-links{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:#fff;

    flex-direction:column;

    text-align:center;

    padding:20px 0;

    display:none;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.nav-links.active{
    display:flex;
}

.nav-links a{

    display:inline-block;

    padding:12px 0;

    position:relative;
}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:5px;

    width:0;

    height:2px;

    background:#D4A75B;

    transition:0.4s;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a:active::after{

    width:100%;
}

.hero-text h1{
    font-size:45px;
}

.feature-grid,
.property-grid,
.about-container,
.service-grid,
.contact-container,
.footer-content{
    grid-template-columns:1fr;
}

.video-card{
    min-width:280px;
}

.video-card iframe{
    height:430px;
}

.testimonial-box{
    min-width:48%;
}

.hero{
    height:auto;
    padding:120px 0;
}

}


/* MOBILE */

@media(max-width:600px){

.video-card{
    min-width:100%;
}

.video-card iframe{
    height:380px;
}

.video-btn,
.slider-btn{
    width:42px;
    height:42px;
}

.testimonial-box{
    min-width:100%;
}

.hero-text h1{
    font-size:36px;
}

.hero-buttons{
    flex-direction:column;
}

.stats{
    flex-direction:column;
    gap:20px;
}

}

/* pop up contact form */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.7);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.popup-box{
    width: 420px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    position: relative;

    animation: popup 0.4s ease;
}

@keyframes popup{
    from{
        transform: scale(0.7);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box h2{
    margin-bottom: 20px;
    text-align: center;
}

.popup-box input,
.popup-box textarea{
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
}

.popup-box textarea{
    height: 120px;
    resize: none;
}

.popup-box button{
    width: 100%;
    padding: 14px;
    border: none;
    background: #d4a64f;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.close{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}
/* FINAL MOBILE NAVBAR + DROPDOWN FIX */

@media(max-width:991px){

    .menu-btn{
        display:block;
        z-index:1001;
    }

    .nav-container{
        position:relative;
    }

    .nav-links{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        padding:15px 0;

        display:none;

        box-shadow:0 5px 20px rgba(0,0,0,0.1);

        z-index:999;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a{

        display:block;

        width:96%;

        padding:15px 25px;

        border-bottom:1px solid #f1f1f1;
    }

/* ===== FINAL PROJECT DROPDOWN CLEAN FIX ===== */

.dropdown{
    position: relative;
}

.project-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

.project-link{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

.dropdown-arrow{
    cursor:pointer;
    display:flex;
    align-items:center;
    font-size:15px;
}

/* DESKTOP */

@media(min-width:992px){

    .dropdown-menu{

        position:absolute;

        top:35px;

        left:0;

        min-width:220px;

        background:#fff;

        border-radius:10px;

        box-shadow:0 10px 25px rgba(0,0,0,0.1);

        padding:10px 0;

        display:none;

        z-index:999;
    }

   .dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu{
    display:block;
}

}

/* MOBILE */

@media(max-width:991px){

    .project-toggle{
        justify-content:center;
        width:99%;
    }

    .dropdown-menu{

        position:static;

        width:100%;

        background:#f8f8f8;

        box-shadow:none;

        border-radius:0;

        display:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{

        display:block;

        text-align:center;

        padding:14px 20px;

        border-bottom:1px solid #eee;
    }

}}