/* General Styles */
body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hero-section {
    background-color: #e0f2f7; 
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(235, 94, 76, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid #0ea5e9;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #0ea5e9; /* Light blue accent */
    font-weight: 700;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 35px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #0ea5e9; /* Light blue */
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #0c8cd7; /* Darker blue */
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9f5f8;
}

.feature-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.8em;
    color: #3f51b5; /* Indigo blue */
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1.1em;
    color: #666;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Pricing Section */
.pricing-section {
    background-color: #e0f2f7; 
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.pricing-plan {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9f5f8;
}

.pricing-plan.featured {
    background-color: #0ea5e9;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: none;
}

.pricing-plan.featured h3, .pricing-plan.featured .price, .pricing-plan.featured ul li {
    color: #fff;
}

.pricing-plan h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-plan.featured h3 {
    color: #fff;
}

.pricing-plan .price {
    font-size: 2.8em;
    font-weight: 700;
    color: #0ea5e9; /* Light blue */
    margin-bottom: 25px;
}

.pricing-plan.featured .price {
    color: #fff;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-plan ul li {
    margin-bottom: 15px;
    font-size: 1.15em;
    color: #555;
}

.pricing-plan.featured ul li {
    color: #fff;
}

.pricing-plan .cta-button {
    background-color: #2c3e50; /* Dark gray for contrast */
    color: #fff;
    padding: 14px 30px;
    font-size: 1.1em;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.pricing-plan .cta-button:hover {
    background-color: #34495e; /* Slightly lighter gray */
}

.pricing-plan.featured .cta-button {
    background-color: #fff;
    color: #0ea5e9;
}

.pricing-plan.featured .cta-button:hover {
    background-color: #e0e0e0;
    color: #0c8cd7;
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.testimonial-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9f5f8;
}

.testimonial-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #0ea5e9;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.15em;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    color: #0ea5e9;
    font-size: 1.2em;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: #2c3e50; /* Dark gray */
    color: #f4f7f6;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-section p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

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

    .cta-button {
        padding: 14px 28px;
        font-size: 1.1em;
    }

    .feature-grid, .pricing-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plan.featured {
        transform: scale(1);
    }
}