/* Updated General Styles for Sleek Theme */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light grey background */
    color: #333; /* Dark grey text */
    line-height: 1.7; /* Slightly increased line height for better readability */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px; /* Increased padding */
}

/* Updated Header Styles */
header {
    background-color: #fff;
    /*padding: 25px 0; /* Adjusted padding */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* More subtle shadow */
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 55px; /* Adjusted padding */
}

.logo img {
    height: 100px; /* Slightly smaller logo */
    margin-right: 20px;
}

.logo h1 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    margin: 0;
    font-size: 1.8em; /* Slightly smaller logo text */
    font-weight: 700;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 25px; /* Increased spacing */
}

.nav-links li a {
    text-decoration: none;
    color: #555; /* Medium grey */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffb300; /* Softer Yellow (Gold) */
}

.cta-button {
    background-color: #ffb300; /* Softer Yellow (Gold) */
    color: #fff !important;
    padding: 12px 24px; /* Adjusted padding */
    border-radius: 5px; /* More subtle rounded corners */
    font-weight: 600;
}

.cta-button:hover {
    background-color: #f57f17; /* Slightly darker gold */
}

/* Updated Hero Section Styles */
.hero-section {
    background-color: #f9f9f9;
    padding: 120px 30px; /* Increased padding */
    display: flex;
    justify-content: space-around; /* Distribute content more evenly */
    align-items: center;
    text-align: left; /* Align text to the left */
}

.hero-content {
    max-width: 550px;
    margin-bottom: 0; /* Removed bottom margin */
}

.hero-content h1 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.8em; /* Slightly larger */
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.15em; /* Slightly smaller */
    color: #666; /* Lighter dark grey */
    margin-bottom: 35px;
}

.cta-buttons a {
    display: inline-block;
    padding: 14px 28px; /* Adjusted padding */
    text-decoration: none;
    color: #fff;
    border-radius: 5px; /* More subtle rounded corners */
    font-weight: 600;
    margin-right: 15px; /* Add spacing between buttons */
    transition: background-color 0.3s ease;
}

.primary-cta {
    background-color: #2e7d32; /* Muted Green (Forest Green) */
}

.primary-cta:hover {
    background-color: #1b5e20; /* Darker green */
}

.secondary-cta {
    background-color: #ffb300; /* Softer Yellow (Gold) */
}

.secondary-cta:hover {
    background-color: #f57f17; /* Slightly darker gold */
}

.hero-image {
    width: 500px; /* Adjust the width as needed for your desired circle size */
    height: auto; /* Should be the same as the width for a perfect circle */
    border-radius: 50%; /* Creates the circular shape */
    overflow: hidden; /* Hides the parts of the image that go outside the circle */
}


.hero-image img {
    width: 100%; /* Make the image fill the circular container */
    height: 100%; /* Make the image fill the height as well */
    object-fit: cover; /* Ensures the image covers the entire container without distortion (crops if necessary) */
    display: block; /* Prevent extra space below the image */
}

/* Updated Services Section Styles */
.services-section {
    padding: 100px 30px; /* Increased padding */
    background-color: #fff;
    text-align: center;
}

.services-section h2 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.4em; /* Slightly larger */
    margin-bottom: 40px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Slightly wider cards */
    gap: 40px; /* Increased gap */
    padding: 30px; /* Increased padding */
}

.service-card {
    background-color: #fff; /* White cards */
    padding: 35px; /* Increased padding */
    border-radius: 8px; /* Less rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* More subtle shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #eee; /* Added a light border */
}

.service-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
    transform: translateY(-3px);
}

.service-card i {
    font-size: 2.8em; /* Adjusted icon size */
    color: #ffb300; /* Softer Yellow (Gold) */
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 1em;
}

/* Updated USP Section Styles */
.usp-section {
    padding: 100px 30px; /* Increased padding */
    background-color: #f9f9f9;
    text-align: center;
}

.usp-section h2 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.4em; /* Slightly larger */
    margin-bottom: 40px;
    font-weight: 700;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Slightly wider items */
    gap: 40px; /* Increased gap */
    padding: 30px; /* Increased padding */
}

.usp-item {
    background-color: #fff; /* White items */
    padding: 35px; /* Increased padding */
    border-radius: 8px; /* Less rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* More subtle shadow */
    border: 1px solid #eee; /* Added a light border */
}

.usp-item i {
    font-size: 2.8em; /* Adjusted icon size */
    color: #ffb300; /* Softer Yellow (Gold) */
    margin-bottom: 20px;
}

.usp-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.usp-item p {
    color: #666;
    font-size: 1em;
}

/* Updated Testimonials Section Styles */
.testimonials-section {
    padding: 100px 30px; /* Increased padding */
    background-color: #fff;
    text-align: center;
}

.testimonials-section h2 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.4em; /* Slightly larger */
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial-slider {
    padding: 30px; /* Increased padding */
}

.testimonial {
    background-color: #f9f9f9; /* Light grey background */
    padding: 30px;
    border-radius: 8px; /* Less rounded corners */
    margin-bottom: 30px; /* Increased margin */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* More subtle shadow */
    border: 1px solid #ddd; /* Lighter border */
}

.testimonial p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

/* Updated Contact Section Styles */
.contact-section {
    padding: 120px 30px; /* Increased padding */
    background-color: #f9f9f9;
    text-align: center;
}

.contact-section h2 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.4em; /* Slightly larger */
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-section p {
    font-size: 1.15em; /* Slightly smaller */
    color: #666;
    margin-bottom: 40px;
}

.contact-buttons a {
    display: inline-block;
    padding: 16px 32px; /* Adjusted padding */
    text-decoration: none;
    color: #fff;
    border-radius: 5px; /* More subtle rounded corners */
    font-weight: 600;
    margin: 0 15px;
    transition: background-color 0.3s ease;
}

/* Updated FAQ Section Styles */
.faq-section {
    padding: 100px 30px; /* Increased padding */
    background-color: #fff;
    text-align: center;
}

.faq-section h2 {
    color: #2e7d32; /* Muted Green (Forest Green) */
    font-size: 2.4em; /* Slightly larger */
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-list {
    max-width: 900px; /* Slightly wider */
    margin: 0 auto;
    padding: 30px; /* Increased padding */
}

.faq-item {
    background-color: #f9f9f9; /* Light grey */
    margin-bottom: 20px; /* Increased margin */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee; /* Light border */
}

.faq-question {
    background-color: #e8f5e9; /* Very light green */
    color: #2e7d32; /* Muted Green (Forest Green) */
    padding: 20px; /* Increased padding */
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.4em; /* Slightly larger */
}

.faq-question.active::after {
    content: '-';
}

.faq-question:hover {
    background-color: #dcedc8; /* Slightly darker light green */
}

.faq-answer {
    padding: 25px; /* Increased padding */
    background-color: #f1f8e9; /* Lighter green */
    color: #555;
    display: none;
    font-size: 1em;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Updated Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 35px 30px; /* Increased padding */
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 15px; /* Increased margin */
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 20px; /* Increased margin */
}

.footer-links li a {
    color: #eee; /* Lighter grey */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffb300; /* Softer Yellow (Gold) */
}

/* Responsive Design */

/* For tablets and larger mobile devices (up to 768px wide) */
@media (max-width: 768px) {
    header {
        position: static; /* Override sticky positioning */
        top: auto;      /* Reset top property */
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee; /* Add a separator for mobile nav */
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
    }

    .services-grid,
    .usp-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonial-slider {
        padding: 20px;
    }

    .testimonial {
        min-width: 100%; /* Make testimonials full width on smaller screens */
    }

    .contact-section {
        padding: 80px 20px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons a {
        margin: 10px 0;
        width: 80%; /* Make buttons wider on smaller screens */
        text-align: center;
    }

    .faq-list {
        padding: 15px;
    }
}

/* For smaller mobile devices (up to 480px wide) */
@media (max-width: 480px) {
    header {
        position: static; /* Override sticky positioning */
        top: auto;      /* Reset top property */
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-buttons a {
        padding: 12px 24px;
        font-size: 0.9em;
        width: 90%;
    }

    .services-grid,
    .usp-grid {
        grid-template-columns: 1fr; /* Single column layout on very small screens */
    }

    .testimonial p {
        font-size: 1em;
    }

    .contact-buttons a {
        font-size: 0.9em;
    }
}