/* Modern Service Cards */
.service-card {
    background: #023440;
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.35);
}

.service-card.featured {
    background: linear-gradient(135deg, #023440, #1c5b5e);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e0be74;
    color: #023440;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Soliman Lipi";
}

.service-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e0be74;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 28px;
    color: #023440;
}

.service-header h4 {
    font-family: "Soliman Lipi";
    font-size: 26.789px;
    font-weight: 700;
    color: #e0be74;
    margin: 0;
}

.service-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-family: "Soliman Lipi";
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    color: #e0be74;
}

.service-features li i {
    margin-right: 8px;
    font-size: 14px;
}

.service-footer {
    display: flex;
    justify-content: flex-end;
}

.service-btn {
    font-family: "Soliman Lipi";
    border-radius: 26.789px;
    border: 2px solid #e0be74;
    background: transparent;
    color: #e0be74;
    text-align: center;
    font-size: 20.092px;
    font-weight: 500;
    padding: 8px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #e0be74;
    color: #023440;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 24px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-header h4 {
        font-size: 22px;
    }
    
    .service-features li {
        font-size: 13px;
    }
    
    .service-btn {
        font-size: 18px;
        padding: 6px 20px;
    }
}