* {
    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: #0d47a1; /* Blue color */
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0d47a1;
    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);
}

    .btn:hover {
        background: #0a3a82;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    border: 2px solid #0d47a1;
    color: #0d47a1;
}

    .btn-outline:hover {
        background: #e3f2fd;
    }

.hero {
    background: linear-gradient(135deg, #e3f2fd 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(13, 71, 161, 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: #1565c0;
}

.highlight {
    background: #90caf9;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-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;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #0d47a1;
    }

    .service-card h3 {
        color: #0d47a1;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
    }

    .service-card li {
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }

        .service-card li:last-child {
            border-bottom: none;
        }

.testimonials {
    background: #f0f7ff;
    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: #0d47a1;
        display: block;
    }

.cta-section {
    text-align: center;
    background: #0d47a1;
    color: white;
    padding: 60px 0;
}

    .cta-section h2 {
        color: white;
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        color: #bbdefb;
        max-width: 700px;
        margin: 0 auto 30px;
    }

.about-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

    .about-section h2 {
        color: #0d47a1;
    }

    .about-section p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d47a1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.trust-bar {
    background: #e3f2fd;
    padding: 15px 0;
    text-align: center;
    font-size: 1rem;
    color: #0d47a1;
    border-top: 1px solid #bbdefb;
    border-bottom: 1px solid #bbdefb;
    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: #0d47a1;
            box-shadow: 0 0 0 2px rgba(13, 71, 161, 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;
    }
}
