/* Basic Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Body Styles */
body {
    font-family: 'Roboto', sans-serif; /* Using Roboto as a modern, readable font */
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Light background */
}

/* Container for Centering Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #004d40; /* Dark teal/blue for a professional look */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.site-title {
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: 700;
}

/* Navigation Styles */
.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.main-nav a:hover {
    color: #ffd700; /* Gold accent on hover */
}

/* Section Spacing */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(even) {
    background-color: #f2f2f2; /* Light grey for alternating sections */
}

h2 {
    font-size: 2.5em;
    color: #004d40;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8em;
    color: #004d40;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #ffd700; /* Gold button */
    color: #004d40; /* Dark text on gold */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.btn:hover {
    background-color: #ffc107; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-color: #e0f2f1; /* Light blue-green */
    color: #004d40;
    padding: 100px 0;
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    margin-bottom: 10px;
    color: #004d40;
}

/* Contact Section */
.contact-section p strong {
    color: #004d40;
}

.contact-section a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #004d40;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer p {
    margin-bottom: 0;
    color: #bbb;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

    .main-nav ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .main-nav li {
        margin: 5px 0;
    }

    .site-title {
        margin-bottom: 15px;
    }

    h2 {
        font-size: 2em;
    }

    .hero-section h2 {
        font-size: 2.8em;
    }

    .service-grid {
        grid-template-columns: 1fr; /* Stack services on small screens */
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1.1em;
    }
}

/* Add to your existing style.css */

/* Gallery Section */
.gallery-section {
    background-color: #f8f8f8;
}

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

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* Ensures image corners are rounded */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    display: block;
}

.gallery-item p {
    padding: 15px;
    margin-bottom: 0;
    font-size: 0.95em;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e0f2f1; /* Light blue-green */
}

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

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes signature to bottom */
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #444;
}

.testimonial-item span {
    font-weight: 500;
    color: #004d40;
    display: block; /* Ensures signature is on its own line */
    margin-top: 10px; /* Space from quote */
}

/* Contact Section Refinements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-info-item h3 {
    color: #004d40;
    margin-bottom: 10px;
}

.contact-info-item p {
    margin-bottom: 5px;
    color: #555;
}

.contact-info-item a {
    font-weight: 500;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #004d40;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Roboto', sans-serif; /* Ensure font consistency */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00796b;
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.2);
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .btn-primary {
    width: auto; /* Revert button width from 100% */
    display: block;
    margin: 30px auto 0; /* Center the button */
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Footer Social Links (requires icons) */
.social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 28px; /* Size of social icons */
    height: 28px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icons white */
    transition: filter 0.3s ease;
}

.social-links a:hover img {
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(30deg) brightness(120%) contrast(100%); /* Gold tint on hover */
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .image-gallery, .testimonial-grid, .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 25px;
    }
}


/* added by me */
li {
    list-style: none !important;
}