﻿body {
    margin: 0;
    background: #f5f7fa;
    color: #333;
}

/* container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* header */
.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: center;text-align:right
}

    .header img {
        width: 100%;
        border-radius: 15px;
    }

.header-text h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.header-text p {
    line-height: 1.9;
    color: #666;direction:rtl
}

/* stats */
.stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .stat-box strong {
        display: block;
        font-size: 18px;
        margin-bottom: 5px;
    }

/* features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .feature:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.feature p {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    direction: rtl;
}

/* responsive */
@media(max-width: 768px) {
    .header {
        grid-template-columns: 1fr;
    }
}

.fast {
   width: 30%;
}

.about1 {
display: flex;flex-direction: row-reverse;
}

