/* ==========================
   Moodish Walls Styling
   ========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
}


/* Navigation */

header {
    background: #0D3B66;
    padding: 20px 8%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width:160px;
    height:auto;
    display:block;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.estimate-btn {
    background: #F4B400;
    color: #222;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


/* Hero Section */

.hero {
    height: 85vh;

    background:
    linear-gradient(
       rgba(179, 176, 176, 0.192)
       
    ),
    url("https://images.unsplash.com/photo-1589939705384-5185137a7f0f")
    center center / cover no-repeat;

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


.hero-content {
    color: white;
    max-width: 850px;
    padding: 20px;
    margin-top: 40px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

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


.hero-btn {
    background: #F4B400;
    color: #222;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}



/* Services */

.services {
    padding: 70px 8%;
    text-align: center;
}

.services h2,
.about h2 {
    font-size: 38px;
    color: #0D3B66;
    margin-bottom: 40px;
}


.service-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}


.card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
}


.card h3 {
    color:#0D3B66;
    margin-bottom:15px;
}


/* About */

.about {
    background: #f5f5f5;
    padding: 70px 15%;
    text-align: center;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.features > div {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
}


/* Footer */



/* Mobile */

@media(max-width:768px){

    nav {
        flex-direction: column;
        gap: 20px;
    }


    nav ul {
        flex-direction: column;
        text-align:center;
        gap:15px;
    }


    .logo img {
        height:55px;
    }


    .hero {
        height:auto;
        min-height:85vh;
        padding:40px 20px;
    }


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


    .hero-subtitle {
        font-size:22px;
    }


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


    .service-container {
        flex-direction:column;
    }


    .card {
        width:100%;
    }


    .features {
        flex-direction:column;
    }


    .gallery-container {
        flex-direction:column;
    }


    .project-card {
        width:100%;
    }


    .before-after {
        flex-direction:column;
    }


    .before-after div {
        width:100%;
    }


    .before-after img {
        height:220px;
    }


    .footer-container {
        flex-direction:column;
        text-align:center;
    }


}

}/* Features */

.features {
    display:flex;
    gap:30px;
    margin-top:40px;
    justify-content:center;
}


.features div {
    background:white;
    padding:25px;
    border-radius:10px;
}


/* Contact */

.contact {
    padding:70px 10%;
    text-align:center;
}


.contact form {
    max-width:600px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}


.contact input,
.contact textarea,
.contact select {
    padding:15px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:5px;

}


.contact textarea {
    height:150px;
}


.contact button {

    background:#0D3B66;
    color:white;
    border:none;
    padding:15px;
    font-size:18px;
    cursor:pointer;



}/* ==========================
   Footer
========================== */

footer{

background:#0D3B66;
color:white;

padding:60px 8% 30px;

margin-top:60px;

}


.footer-container{

display:flex;

justify-content:space-between;

gap:50px;

flex-wrap:wrap;

}


.footer-container div{

flex:1;
min-width:220px;

}


.footer-container h3{

margin-bottom:20px;

color:#F4B400;

}


.footer-container p{

margin-bottom:12px;

line-height:1.7;

}


footer hr{

margin:40px 0 20px;

border:none;

height:1px;

background:#ffffff30;

}


.copyright{

text-align:center;

font-size:14px;

color:#ddd;

}footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #F4B400;
}.hero-subtitle{

font-size:28px;

margin:25px 0;

font-weight:600;

}


.hero-text{

font-size:22px;

margin-bottom:45px;

color:#f5f5f5;

}


.hero-btn{

transition:.3s ease;

}


.hero-btn:hover{

background:white;

color:#0D3B66;

transform:translateY(-3px);



nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}.hero-location{
    font-size:20px;
    color:#F4B400;
    margin-bottom:20px;
    font-weight:600;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 5px;
    margin-left: 15px;
    transition: .3s ease;
}

.secondary-btn:hover {
    background: white;
    color: #0D3B66;
    transform: translateY(-3px);
}

.trust-line{
    margin-top:20px;
    font-size:18px;
    color:#f0f0f0;
}/* Why Choose Us */

.why-us{

padding:70px 8%;

text-align:center;

}


.why-container{

display:flex;

gap:30px;

justify-content:center;

flex-wrap:wrap;

}


.why-card{

background:#f5f5f5;

padding:30px;

border-radius:10px;

width:30%;

min-width:260px;

transition:.3s ease;

}


.why-card:hover{

transform:translateY(-8px);

box-shadow:0 10px 25px rgba(0,0,0,.15);

}


.why-card h3{

margin-bottom:15px;

color:#0D3B66;

}/* Service Cards */

.card{

background:white;

padding:35px 25px;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s ease;

}


.card:hover{

transform:translateY(-8px);

box-shadow:0 12px 30px rgba(0,0,0,.15);

}


.service-icon{

font-size:40px;

margin-bottom:20px;

}


.card h3{

color:#0D3B66;

margin-bottom:15px;

font-size:24px;

}/* About Section */

.about{

padding:70px 8%;

text-align:center;

}


.about h2{

color:#0D3B66;

margin-bottom:25px;

}


.about > p{

max-width:850px;

margin:0 auto 20px;

font-size:18px;

line-height:1.7;

}


.features{

display:flex;

gap:30px;

justify-content:center;

flex-wrap:wrap;

margin-top:50px;

}


.features > div{

background:#f5f5f5;

padding:30px;

border-radius:12px;

width:280px;

transition:.3s ease;

}


.features > div:hover{

transform:translateY(-6px);

box-shadow:0 10px 25px rgba(0,0,0,.12);

}


.features h3{

color:#0D3B66;

margin-bottom:15px;

}.thank-you{

height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:40px;

}

.thank-you h1{

font-size:56px;

color:#0D3B66;

margin-bottom:20px;

}

.thank-you p{

font-size:22px;

max-width:650px;

margin-bottom:40px;

line-height:1.6;

}.before-after {
    display: flex;
    gap: 15px;
}

.before-after div {
    width: 50%;
}

.before-after img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.before-after p {
    margin-top: 8px;
    font-weight: bold;
    color: #0D3B66;
}nav ul {
    gap:15px;
}