
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f5f7fb;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-col {
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.custom-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border-top: 4px solid #0e346b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.card-badge {
    background-color: #0e346b;
    color: #fff !important;
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.card-title-navy {
    color: #0a2240;
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 15px;
}

.card-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-details {
    background-color: #0e346b;
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    display: block;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

    .btn-details:hover {
        background-color: #0a2240;
    }

@media (max-width: 992px) {
    .service-col {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .service-col {
        width: 100%;
    }
}

.main-footer-platform {
    background-color: #0f172a;
    color: #ffffff;
}

