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

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #2c5f2d;
    color: white;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9em;
    opacity: 0.9;
}

.contact-info {
    text-align: right;
}

.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #4a7c59;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    white-space: nowrap;
}

.contact-details p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://res.cloudinary.com/dyuhtpg5y/image/upload/v1752440572/broom-tree/WhatsApp_Image_2025-07-03_at_22.15.20_3_ilgfkg.jpg");
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://res.cloudinary.com/dyuhtpg5y/image/upload/v1752440574/broom-tree/WhatsApp_Image_2025-07-03_at_22.15.19_3_ib8dt4.jpg"); */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #4a7c59;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2c5f2d;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #2c5f2d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-category h3 {
    color: #4a7c59;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.service-category h4 {
    color: #4a7c59;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.service-category li:before {
    content: "✓";
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery Section - IMPROVED */
.gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #2c5f2d;
}

/* Slick Slider Styles */
.slick-slider {
    margin: 0 auto;
    max-width: 100%;
}

.slick-slider .slide {
    padding: 0 10px;
    outline: none;
}

.slick-slider .slide img {
    width: 100%;
    /* height: 700px; */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slick-slider .slide img:hover {
    transform: scale(1.05);
}

/* Slick Navigation Buttons */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: #4a7c59 !important;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    color: white !important;
    font-size: 20px;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

/* Slick Dots */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: #4a7c59 !important;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #2c5f2d !important;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial cite {
    color: #4a7c59;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #2c5f2d;
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #a8d5aa;
    margin-bottom: 10px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #a8d5aa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

.submit-button {
    background: #4a7c59;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #a8d5aa;
}

/* Footer */
.footer {
    background: #1a3a1c;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        text-align: center;
        margin-top: 20px;
    }

    .badges {
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .slick-prev {
        left: -30px;
    }

    .slick-next {
        right: -30px;
    }

    .slick-slider .slide img {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }

    .slick-slider .slide img {
        /* height: 200px; */
    }
}
