body, .hero-section { font-family: 'Tajawal', 'Cairo', sans-serif; }
.main-header {
    background: #fff;
    border-bottom: 1px solid #e3eafc;
}
.hero-section {
    background: linear-gradient(120deg,#e3eafc 0%,#f5f7fa 100%);
}
.hero-text h1 {
    color: #1976D2;
}
.hero-text p {
    color: #607d8b;
}
.btn-primary {
    background: #1976D2;
    border-color: #1976D2;
}
.btn-outline-primary {
    color: #1976D2;
    border-color: #1976D2;
}
.btn-outline-primary:hover {
    background: #1976D2;
    color: #fff;
}
.clients-bar {
    margin-top: -10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #1976d111;
}
.client-logo {
    height: 32px;
    max-width: 90px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    background: #fff;
    border-radius: 8px;
    padding: 2px 8px;
}
.client-logo:hover {
    opacity: 1;
    transform: scale(1.07);
}
.verify-bar {
    background: #e3f0ff;
    border-radius: 16px;
    min-height: 44px;
    margin-top: 18px;
    margin-bottom: 0;
    box-shadow: 0 2px 12px #1976d111;
    font-size: 1.08rem;
}
.verify-icon {
    color: #1976D2;
    font-size: 1.4rem;
    background: #fff;
    border-radius: 50%;
    width: 32px; height: 32px;
    box-shadow: 0 2px 8px #1976d122;
}
.verify-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
}
.benefit-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #1976d111;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 4px 24px #1976d144;
}
.benefit-icon {
    font-size: 2.6rem;
    color: #1976D2;
    background: #e3f0ff;
    border-radius: 50%;
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
@media (max-width: 767.98px) {
    .main-header {
        flex-direction: row;
        gap: 0;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    .hero-text {
        padding: 2rem 0 0 0 !important;
        text-align: center !important;
    }
    .hero-img {
        padding: 1rem 0 2rem 0 !important;
    }
    .clients-bar {
        border-radius: 12px;
        padding: 8px 2px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .client-logo {
        height: 26px;
        max-width: 60px;
        padding: 1px 4px;
    }
    .verify-bar {
        border-radius: 10px;
        font-size: 0.98rem;
        min-height: 36px;
        margin-top: 10px;
        margin-bottom: 0;
        padding: 6px 8px;
    }
    .verify-icon {
        font-size: 1.1rem;
        width: 24px; height: 24px;
    }
    .benefit-icon { font-size: 2rem; width: 54px; height: 54px; }
    .benefit-card { border-radius: 14px; }
}


