﻿:root {
   
    --accent-color: #4499D5;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {

    background: linear-gradient(to right, #ffffff 60%, var(--primary-color) 40%);
    padding: 60px 0 100px;
}

.hero {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
    gap: 40px; 
}

.hero-content {
    flex: 1 1 300px; 
    min-width: 280px;
    padding-right: 20px; 
    text-align: left; 
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

    .hero h1 span {
        color: var(--primary-color);
    }

.hero p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1 1 300px; 
    min-width: 280px;
    text-align: center;
    
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 768px) {
    header {
       
        background: var(--primary-color);
        padding: 40px 0; 
    }

    .hero {
        flex-direction: column; 
        gap: 30px; 
        text-align: center; 
    }

    .hero-content {
        order: 1;
        width: 100%; 
        min-width: unset;
        padding: 30px 20px;
        background-color: #fff; 
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; 
    }

    .hero h1 {
        font-size: 2rem; 
        color: #333; 
    }

    .hero p {
        font-size: 1em; 
    }

    .hero-image {
        order: 2; 
        width: 100%; 
        min-width: unset; 
        padding: 0 20px;
        box-sizing: border-box;
    }

        .hero-image img {
            width: 100%; 
            height: auto; 
            display: block; 
        }

  
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
}

.card {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card p {
    color: #666;
    font-size: 1rem;
}

.about {
    padding: 60px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.about-text, .about-image {
    flex: 1 1 300px;
    min-width: 280px;
}

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

        .about-text h2 span {
            color: var(--primary-color);
        }

    .about-text p {
        color: #666;
        margin-bottom: 20px;
    }

.about-list {
    list-style: none;
    padding-left: 20px;
}

    .about-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

        .about-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stats {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item strong {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.testimonial {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

    .testimonial h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .testimonial p {
        color: #666;
        max-width: 700px;
        margin: auto;
        margin-bottom: 20px;
    }

.container {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px; 
    font-family: Arial, sans-serif; 
    line-height: 1.6;
}
.content-wrapper {
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    align-items: center; 
}


.text-section {
    flex: 1; 
    padding: 20px;
    background-color: #f9f9f9; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

    .text-section h3 {
        color: #333; 
        margin-bottom: 15px; 
        font-size: 1.8em; 
    }

    .text-section p {
        color: #555;
        margin-bottom: 10px;
        font-size: 1em;
    }
.image-section {
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

    .image-section img {
        max-width: 100%; 
        height: auto; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    }


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    padding: 80px 20px;
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -50px;
        right: -50px;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        bottom: -100px;
        left: -100px;
    }

    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .contact-section p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
    }

.contact-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

    .contact-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }





@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row; 
    }
}


@media (min-width: 1024px) {
    .text-section {
        padding: 30px;
    }

        .text-section h3 {
            font-size: 2.2em; 
        }

        .text-section p {
            font-size: 1.1em;
        }
}





@media (max-width: 768px) {
    .hero, .about-content, .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }
}
