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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header/Navigation */
header {
    background: linear-gradient(135deg, #1a3d3a 0%, #00796b 100%);
    color: white;
    padding: 0.75em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo
{
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 1.3em;
    font-weight: bold;
}
.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.business-hours {
    max-width: 700px;
    margin: 0 auto 3rem;
}
/* Navigation Menu */
nav {
    display: flex;
    gap: 2em;
}

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

nav a:hover {
    opacity: 0.8;
    border-bottom: 2px solid #ffc107;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background-color: #ffc107;
    color: #1a3d3a;
    padding: 0.75em 1em;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quick-contact-bar a {
    color: #1a3d3a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    transition: all 0.3s;
}

.quick-contact-bar a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3d3a 0%, #00796b 100%);
    color: white;
    padding: 2em 1em;
    text-align: center;
    background-image: url('data:image/svg+xml,...');
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
    font-weight: 700;
}

.hero p {
margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1em 2em;
    font-size: 1em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background-color: #ffc107;
    color: #1a3d3a;
}

.btn-primary:hover {
    background-color: #ffb300;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #00796b;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a3d3a;
    margin-bottom: 3em;
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 5em 1em;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
}

.service-card {
    background: white;
    padding: 2.5em;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #ffc107;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card .icon {
    font-size: 3.5em;
    margin-bottom: 1em;
}

.service-card h3 {
    color: #1a3d3a;
    margin-bottom: 1em;
    font-size: 1.4em;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.service-card a {
    color: #00796b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-card a:hover {
    color: #1a3d3a;
}

/* Why Choose Us */
.why-us {
    padding: 5em 1em;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.why-us-item {
    text-align: center;
    padding: 2em;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f4 100%);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-us-item:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
}

.why-us-item .number {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.why-us-item h4 {
    color: #1a3d3a;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    font-weight: 600;
}

.why-us-item p {
    color: #666;
}

/* Gallery Section */
.gallery-section {
    padding: 5em 1em;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover img {
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 121, 107, 0.9);
    color: white;
    padding: 1em;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    padding: 5em 1em;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.testimonial-card {
    background: white;
    padding: 2em;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.testimonial-card p {
    margin-bottom: 1em;
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1a3d3a;
}

.stars {
    color: #ffc107;
    margin-bottom: 0.5em;
    font-size: 1.2em;
}

/* Footer */
footer {
    background: #1a3d3a;
    color: white;
    padding: 3em 1em 1em 1em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-bottom: 2em;
}

.footer-section h4 {
    margin-bottom: 1em;
    color: #ffc107;
    font-size: 1.1em;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.7em;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #00796b;
    padding-top: 1.5em;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a3d3a;
        flex-direction: column;
        padding: 1em;
        gap: 0.5em;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.75em 0;
        border-bottom: 1px solid #00796b;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .quick-contact-bar {
        flex-direction: column;
        gap: 0.75em;
    }

    .quick-contact-bar a {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2em;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1em;
    }

    .logo-icon {
        font-size: 1.5em;
    }

    .hero {
        padding: 3em 1em;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .services,
    .why-us,
    .gallery-section,
    .testimonials {
        padding: 3em 1em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .service-card,
    .why-us-item {
        padding: 1.5em;
    }

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

    .gallery-item {
        height: 200px;
    }

    .quick-contact-bar {
        flex-direction: column;
        font-size: 0.9em;
    }
}
