﻿body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f4f7fb;
    color: #1b2664;
    line-height: 1.8;
}

h2, h3 {
    font-weight: 700;
}

.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.rounded-img {
    border-radius: 16px;
    object-fit: cover;
    height: 200px;
    width: 100%;
    max-width: 250px;
    transition: transform 0.4s ease;
}

    .rounded-img:hover {
        transform: scale(1.05);
    }

.projects-wrapper {
    background-color: #eef4fa;
    padding: 80px 20px;
}

.projects-title {
    position: relative;
    font-size: 1.9rem;
    margin-bottom: 50px;
}

    .projects-title::after {
        content: '';
        width: 70px;
        height: 4px;
        background-color: #102c57;
        position: absolute;
        bottom: -12px;
        right: 0;
        border-radius: 3px;
    }

.project-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border-right: 6px solid #102c57;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-4px);
    }

.progress-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

    .progress-card:hover {
        transform: scale(1.02);
    }

.custom-blue {
    background-color: #102c57 !important;
    color: #ffffff;
}

.company-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
}

    .company-card img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .company-card h6 {
        font-weight: 600;
        font-size: 1rem;
        color: #1b2664;
    }

.bi {
    color: #102c57;
    margin-left: 10px;
    font-size: 1.3rem;
}

.counter-box {
    background: linear-gradient(135deg, #102c57, #365486);
    color: white;
    padding: 30px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .counter-box:hover {
        transform: translateY(-5px);
    }

    .counter-box i {
        font-size: 40px;
        margin-bottom: 10px;
        display: block;
    }

    .counter-box h3 {
        font-size: 32px;
        font-weight: bold;
        margin: 10px 0;
    }

    .counter-box p {
        margin: 0;
        font-size: 16px;
    }

.fas {
    color: #EEF4FA;
}
