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

body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.7;

    background-color:#faf9f6;
    background-image:url("background.png");
    background-repeat:repeat;
    background-size:350px;
    background-attachment:fixed;
}
    color:#333;
    line-height:1.7;
}
.hero{
    min-height:100vh;
    background-image:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("background.png");
    background-size:100% auto;
    background-position:center top;
    background-repeat:no-repeat;
    background-color:#f7f6f2;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}
.overlay{
max-width:700px;
padding:35px;
background:rgba(0,0,0,.25);
backdrop-filter:blur(4px);
border-radius:20px;
}

.hero h1{
font-size:52px;
color:#fff;
margin-bottom:15px;
text-shadow:2px 2px 12px rgba(0,0,0,.5);
}

.hero p{
font-size:22px;
color:#fff;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#128C7E;
}

section{
    max-width:1100px;
    margin:40px auto;
    padding:60px 30px;

    background:rgba(255,255,255,.88);

    border-radius:20px;
}
}

section h2{
text-align:center;
margin-bottom:35px;
font-size:36px;
color:#2e7d32;
}

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

.card{
    background:rgba(255,255,255,.95);
    border-radius:18px;
    padding:25px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:15px;
height:300px;
object-fit:cover;
}

.contact{
text-align:center;
}

.contact p{
margin:12px 0;
}

footer{
background:#2e7d32;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
}

.floating-whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,.3);
}

@media(max-width:768px){

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

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

section h2{
font-size:28px;
}

}/* ===========================
   Customer Reviews
=========================== */

.reviews-section{
max-width:1000px;
margin:60px auto;
padding:40px;
background:#ffffff;
border-radius:20px;
box-shadow:0 8px 30px rgba(0,0,0,.08);
text-align:center;
}

.rating-summary{
margin-bottom:35px;
}

.rating-summary h1{
font-size:55px;
color:#f4b400;
margin-bottom:10px;
}

.rating-summary p{
font-size:18px;
color:#666;
}

.review-form{
display:flex;
flex-direction:column;
gap:15px;
margin-bottom:40px;
}

.review-form input,
.review-form select,
.review-form textarea{

padding:15px;
font-size:16px;
border-radius:12px;
border:1px solid #ddd;
outline:none;

}

.review-form textarea{
resize:vertical;
}

.review-card{

background:#fafafa;
padding:20px;
margin-bottom:20px;
border-radius:15px;
text-align:left;
box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.review-card h3{

color:#f4b400;
margin-bottom:10px;

}

.review-card small{

color:#777;

}
