
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f6f3;
    color:#222;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    color:white;
    font-size:24px;
    font-weight:bold;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#d4a373;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    background:#d4a373;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

.btn:hover{
    background:#b08968;
    transform:translateY(-3px);
}

/* =========================
   SECTIONS
========================= */

.about,
.services,
.portfolio,
.testimonials,
.contact{
    padding:100px 8%;
}

.about h2,
.services h2,
.portfolio h2,
.testimonials h2,
.contact h2{
    text-align:center;
    font-size:48px;
    margin-bottom:25px;
}

.about p{
    max-width:1000px;
    margin:auto;
    text-align:center;
    line-height:1.9;
    font-size:18px;
    color:#554;
}

/* =========================
   SERVICES
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.card{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
}

/* =========================
   PORTFOLIO
========================= */

.gallery{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.project-card{
    width:400px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s;
}

.project-card:hover{
    transform:scale(1.03);
}

.project-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.project-card h3{
    padding:20px;
    text-align:center;
}
.project-card a{
    text-decoration:none;
    color:inherit;
    display:block;
}

/* =========================
OUR DESIGN PROCESS 
/* =========================

========================= */

.process{
    padding:80px 10%;
    background:linear-gradient(135deg,#111827,#1f2937);
    text-align:center;
}

.process h2{
    color:white;
    font-size:45px;
    margin-bottom:50px;
}

.process-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.process-card{
    width:220px;
    background:white;
    padding:30px;
    border-radius:20px;
    border:3px solid #fbbf24;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.4s;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(251,191,36,0.35);
}

.number{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#fbbf24;
    color:#111827;
    font-size:28px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.process-card h3{
    margin-bottom:15px;
    color:#111827;
}

.process-card p{
    color:#555;
    line-height:1.8;
}

@media(max-width:768px){

    .process-card{
        width:100%;
    }

}

/* =========================
   CONTACT
========================= */

.contact{
    background:#f5f5f5;
}

.contact-container{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}

.contact-info{
    width:420px;
    background:linear-gradient(135deg,#111827,#1f2937);
    color:white;
    padding:35px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
    transition:0.4s;
}

.contact-info:hover{
    transform:translateY(-5px);
}

.contact-info h3{
    background:#111;
    color:#fbbf24;
    text-align:center;
    padding:18px;
    margin:-35px -35px 25px -35px;
    font-size:30px;
    letter-spacing:2px;
}

.contact-info p{
    font-size:18px;
    margin-bottom:15px;
    line-height:1.8;
}

/* =========================
   POPUP
========================= */

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:9999;
}

.popup-content{
    background:white;
    width:90%;
    max-width:500px;
    padding:30px;
    border-radius:20px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.close-btn{
    float:right;
    font-size:32px;
    cursor:pointer;
}

.popup-content h2{
    text-align:center;
    margin-bottom:20px;
}

.popup-content form{
    width:100%;
}

.popup-content input,
.popup-content textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.popup-content textarea{
    min-height:120px;
    resize:none;
}
.popup-content textarea::placeholder{
    color:#666;
    font-size:16px;
    opacity:1;
}
.popup-content button{
    width:100%;
    padding:15px;
    background:#111827;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

.popup-content button:hover{
    background:#fbbf24;
    color:black;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    font-size:36px;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .contact-info,
    .project-card{
        width:100%;
    }
}
@media (max-width: 768px) {

    .navbar{
        flex-direction: column;
        padding: 10px;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero h1{
        font-size: 32px;
    }

    .hero p{
        font-size: 16px;
    }

    .cards,
    .gallery,
    .process-container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card,
    .project-card,
    .process-step{
        width: 90%;
        max-width: 350px;
    }

    .about p{
        padding: 0 15px;
        text-align: center;
    }

    .contact-container{
        flex-direction: column;
    }

    img{
        max-width: 100%;
        height: auto;
    }
}
html{
    scroll-behavior:smooth;
}
@media (max-width:768px){

    .logo{
        font-size:18px !important;
        letter-spacing:1px !important;
    }

}
