body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: #4CAF50;
    color: white;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
    margin: 0;
}


header .logo {
    font-size: 50px;
    font-weight: bold;
}


nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0px;
    background: #388e3c;
}

nav ul li {
    margin: 0 1px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    padding: 8px 15px;
}


.nav ul li a:hover {
    text-decoration: underline; 
}



.banner {
    background: url('https://source.unsplash.com/1600x600/?farm,agriculture') no-repeat center center/cover;
    color: #4CAF50;
    padding: 100px 20px;
}

.section {
    padding: 4px 20px;
}

.section-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: lightyellow;
    padding: 20px;
    border: 1px solid #ccc;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.service-item img {
    width: 75%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
}

.service-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
    color: #666;
}

.service-item button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border: 5px;
    margin-top: 10px;
}

.service-item button:hover {
    background: #367c39;

}

form input, form textarea {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
}

footer {
    background: gray;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

#contact {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

#contact-form input, #contact-form textarea {
    display: block;
    width: 90px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100px;
    border-radius: 5px;
}

.contact-options {
    margin: 20px;
    text-align: center;
}

.email-btn, .whatsapp-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
}

.whatsapp-btn {
    background: green;
}

.email-btn:hover, .whatsapp-btn:hover {
    opacity: 0.8;
}





#about {
    padding: 40px;
    text-align: center;
}

#about h2 {
    color: #4CAF50;
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.team-member h4 {
    margin-top: 10px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #666;
}







#ratings {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.star-rating {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.star {
    display: inline-block;
    padding: 5px;
    transition: color 0.3s;
}

.star:hover, .star.active {
    color: gold;
}



.price {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;
}


#about {
    text-align: center;
    padding: 20px;
}

.team-member {
    display: grid;
    grid-template-columns: repeat(auto-fit, mimax(150px, 1fr));
    gap: 10px; 
    padding: 10px;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

.service-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    img {
        width: 100%;
        height: auto;
    }
}


