*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8f8f8;
}

nav{
position:fixed;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo{
font-size:28px;
font-weight:700;
color:#c9a227;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#222;
font-weight:500;
}
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;

    transform:scale(1);

    transition:
        opacity 1.5s ease,
        transform 8s ease;

    will-change:transform,opacity;
}

.slide.active{
    opacity:1;

    animation:kenburns 8s ease forwards;
}

.slide:nth-child(1){
    background-image:url("/static/uploads/hero1.png");
}

.slide:nth-child(2){
    background-image:url("/static/uploads/hero2.png");
}

.slide:nth-child(3){
    background-image:url("/static/uploads/hero3.png");
}

.slide:nth-child(4){
    background-image:url("/static/uploads/hero4.png");
}

@keyframes kenburns{

    0%{
        transform:scale(1) translate(0,0);
    }

    100%{
        transform:scale(1.15) translate(-2%,-2%);
    }

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color:white;

    width:90%;

    max-width:900px;

    z-index:10;

}

.hero h1{
    font-size:70px;
    margin:25px 0;
}

.hero p{
    font-size:22px;
    max-width:700px;
    margin-bottom:35px;
}

.tagline{
    color:#C9A227;
    letter-spacing:3px;
    font-weight:600;
}

.btn{
background:#c9a227;
padding:15px 35px;
color:white;
text-decoration:none;
border-radius:8px;
}

.services{
padding:100px 8%;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
}

.cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.portfolio{
padding:100px 8%;
background:white;
}

.portfolio h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
}

.gallery{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.project img{
width:100%;
height:320px;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.project img:hover{
transform:scale(1.03);
}

.contact{
padding:100px 8%;
}

.contact h2{
text-align:center;
margin-bottom:40px;
font-size:40px;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
}

textarea{
height:150px;
}

button{
background:#c9a227;
border:none;
padding:15px;
color:white;
border-radius:8px;
cursor:pointer;
}

footer{
background:#1b1b1b;
color:white;
text-align:center;
padding:40px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
text-decoration:none;
padding:15px 20px;
border-radius:50px;
font-weight:600;
}

@media(max-width:768px){

.overlay h1{
font-size:42px;
}

nav ul{
display:none;
}

}
.hero{
    height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
}

.hero-content{
    max-width:900px;
    padding:20px;
}

.tagline{
    color:#c9a227;
    font-weight:600;
    letter-spacing:3px;
}

.hero h1{
    font-size:72px;
    margin:25px 0;
    line-height:1.1;
}

.hero p{
    font-size:22px;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
}

.btn{
    background:#c9a227;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:8px;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:8px;
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:80px 10%;
    background:white;
    text-align:center;
}

.stats h2{
    font-size:48px;
    color:#c9a227;
}

.stats p{
    margin-top:10px;
}
@media(max-width:768px){

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .stats{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }
}
.portfolio{
    padding:120px 8%;
    background:#f8f8f8;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.section-header span{
    color:#c9a227;
    font-weight:600;
    letter-spacing:2px;
}

.section-header h2{
    font-size:48px;
    margin:15px 0;
}

.section-header p{
    color:#666;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.portfolio-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );

    color:white;
}

.portfolio-info h3{
    margin-bottom:8px;
}
.why-us{
    padding:120px 8%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    background:white;
}

.why-left span{
    color:#c9a227;
    font-weight:600;
}

.why-left h2{
    font-size:48px;
    margin:20px 0;
}

.why-left p{
    color:#555;
    line-height:1.8;
}

.feature{
    background:#f8f8f8;
    padding:25px;
    margin-bottom:20px;
    border-radius:12px;
    font-weight:600;
}
.furniture-showcase{
    padding:120px 8%;
    background:#f8f8f8;
}

.furniture-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.furniture-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.furniture-card:hover{
    transform:translateY(-10px);
}

.furniture-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.furniture-card:hover img{
    transform:scale(1.05);
}

.furniture-content{
    padding:25px;
}

.furniture-content h3{
    margin-bottom:10px;
    color:#222;
}

.furniture-content p{
    color:#666;
    line-height:1.6;
}
.cta-section{
    padding:120px 8%;
    text-align:center;
    background:#1b1b1b;
    color:white;
}

.cta-section h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    color:#ccc;
}
.logo-container{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width: 80px;
    height: 80px;
    object-fit:contain;
}

.logo-text{
    font-size:28px;
    font-weight:700;
    color:#c9a227;
    letter-spacing:2px;
}
.reviews{
    padding:100px 8%;
    background:#ffffff;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.review-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stars{
    color:#C9A227;
    font-size:24px;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:20px;
}

.review-card h4{
    color:#222;
}

.review-card span{
    color:#888;
}
.preview{
    padding:120px 8%;
    background:#f5f5f5;
    text-align:center;
}

.preview h2{
    font-size:46px;
    margin-bottom:20px;
}

.preview p{
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
    color:#666;
}

.preview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.preview-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.preview-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.preview-card h3{
    padding:20px;
}
.review-form-container {

    max-width: 650px;

    margin: 0 auto 60px;

    padding: 40px;

    background: #f8f8f8;

    border-radius: 20px;

    text-align: center;
}
/* =========================
   STAR RATING
========================= */

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 35px;
    color: #d5d5d5;
    cursor: pointer;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


/* HOVER */

.rating label:hover {
    color: #c9a227;
    transform: scale(1.1);
}


/* HIGHLIGHT HOVERED STAR + STARS BEFORE IT */

.rating label:hover,
.rating label:hover ~ label {
    color: #c9a227;
}


/* SELECTED STAR + STARS BEFORE IT */

.rating input:checked ~ label {
    color: #c9a227;
}


/* SELECTED STAR */

.rating input:checked + label {
    color: #c9a227;
}


/* RATING TITLE */

.rating-title {
    display: block;
    text-align: left;
    font-weight: 500;
    margin-top: 5px;
}