body {
    font-family: 'Cairo', Arial, sans-serif;
    margin: 0;
    padding: 0 0 80px 0;
    /* Add bottom padding for footer space */
    background: #f7f7f7;
    color: #222;
    scroll-behavior: smooth;
}

header {
    background: #007b5e;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.about,
.services,
.why-choose,
.testimonials {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.about h2,
.services h2,
.why-choose h2,
.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.services li {
    background: #f1f1f1;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.why-choose .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.why-choose .feature {
    background: #e6f7f1;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.testimonials {
    background: #f9f9f9;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial {
    background: #fff;
    border-left: 4px solid #007b5e;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    max-width: 350px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial span {
    color: #007b5e;
    font-size: 0.95em;
}

.products {
    padding: 2rem 1rem;
    background: #fff;
}

.products h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product {
    background: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 1rem;
    width: 250px;
    text-align: center;
}

.product img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
}

.product h3 {
    margin: 1rem 0 0.5rem 0;
}

.product button {
    background: #007b5e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
}

.product button:hover {
    background: #005f47;
}

/* Navbar */
.navbar {
    background: #007b5e;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #ffd700;
}

/* Hamburger Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-btn .bar {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-btn.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-btn.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #007b5e 60%, #ffd700 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
    position: relative;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-btn {
    background: #ffd700;
    color: #007b5e;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #007b5e;
    color: #ffd700;
}

/* About Section */
.about-flex {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-text ul {
    margin-top: 1rem;
    padding-right: 1.2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.about-img {
    flex: 1;
    min-width: 180px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Services Section */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-card {
    background: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem;
    width: 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    display: block;
}

/* Why Choose Us Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature {
    background: #e6f7f1;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.feature span {
    font-size: 1.5rem;
}

/* Products Section */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    width: 270px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 2px solid #007b5e;
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-info h3 {
    margin: 1rem 0 0.5rem 0;
}

.product-info button {
    background: #007b5e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    font-size: 1rem;
    transition: background 0.2s;
}

.product-info button:hover {
    background: #ffd700;
    color: #007b5e;
}

/* Testimonials Section */
.testimonials {
    background: #f9f9f9;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial-card {
    background: #fff;
    border-left: 4px solid #ffd700;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    text-align: right;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: #ffd700;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-card span {
    color: #007b5e;
    font-size: 0.95em;
}

/* Partners Section */
.partners {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.partners-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.partner-logo {
    background: #f1f1f1;
    border-radius: 8px;
    padding: 1rem 2rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    height: 80px;
}

.partner-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin: 0 0 0.5rem 0;
    color: #007b5e;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.contact-details {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 2;
}

.contact-details a {
    color: #007b5e;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 2rem 1rem;
    border-top: 2px solid #007b5e;
    max-width: 400px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.contact h2 {
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.close-btn {
    background: #ffd700;
    color: #007b5e;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.close-btn:hover {
    background: #007b5e;
    color: #ffd700;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: flex-start;
        background: #007b5e;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        padding: 1rem 2rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
        display: none;
    }

    .nav-links.nav-active {
        display: flex;
    }

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

    .about-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .services-cards,
    .features,
    .product-list,
    .testimonial-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .product-card,
    .service-card {
        width: 100%;
        min-width: 0;
    }

    footer {
        position: static;
    }

    .partners-list {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-list,
    .contact-details {
        font-size: 1rem;
    }
}