﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: #1a5e33; /* Green color */
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #1a5e33;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px 0;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Tajawal;
}

    .btn:hover {
        background: #134827;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    border: 2px solid #1a5e33;
    color: #1a5e33;
}

    .btn-outline:hover {
        background: #e8f5e9;
    }

.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(26, 94, 51, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #2e7d32;
}

.highlight {
    background: #a5d6a7;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #1a5e33;
    }

    .feature-card h3 {
        color: #1a5e33;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-card ul {
        list-style: none;
        padding: 0;
    }

    .feature-card li {
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }

        .feature-card li:last-child {
            border-bottom: none;
        }

.testimonials {
    background: #f0f9f4;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}

    .testimonial-card::before {
        content: """; position: absolute;
        top: 10px;
        right: 20px;
        font-size: 6rem;
        color: #e0e0e0;
        font-family: Georgia, serif;
        line-height: 1;
    }

    .testimonial-card p {
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .testimonial-card .author {
        font-weight: bold;
        color: #1a5e33;
        display: block;
    }

.cta-section {
    text-align: center;
    background: #1a5e33;
    color: white;
    padding: 60px 0;
}

    .cta-section h2 {
        color: white;
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        color: #c8e6c9;
        max-width: 700px;
        margin: 0 auto 30px;
    }

.offer-section {
    background: #f9f3cf;
    padding: 60px 0;
    text-align: center;
}

    .offer-section h2 {
        color: #5d4037;
    }

    .offer-section p {
        font-size: 1.2rem;
        color: #4e342e;
    }

.offer-badge {
    background: #ff8f00;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

.trust-bar {
    background: #e8f5e9;
    padding: 15px 0;
    text-align: center;
    font-size: 1rem;
    color: #1a5e33;
    border-top: 1px solid #c8e6c9;
    border-bottom: 1px solid #c8e6c9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
        font-family: 'Tajawal', sans-serif;
    }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1a5e33;
            box-shadow: 0 0 0 2px rgba(26, 94, 51, 0.2);
        }

.image-section {
    text-align: center;
    padding: 60px 0;
}

.image-container {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 100%;
}

    .image-container img {
        max-width: 100%;
        height: auto;
        display: block;
    }

@@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1.2rem;
        }

    section {
        padding: 60px 0;
    }
}
