body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f7f3;
}

.navbar {
    background: #1f3d1f;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.nav-links a:hover {
    color: #7CFC00;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://images.pexels.com/photos/6728925/pexels-photo-6728925.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 170px 20px;
}





.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cta-button {
    background: #2e8b57;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background: #246b45;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.service-grid,
.gallery-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 90%;
    margin: auto;
}

.service-card,
.review-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.stars {
    color: gold;
    font-size: 20px;
    margin-bottom: 10px;
}

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