/* Features Section - Extended Styles */
/* These styles extend the base features styles in style.css */

.features__description {
    line-height: 2;
}

.features__link:hover {
    background: #1e7a2e;
    color: white;
    text-decoration: none;
}

/* Service Cards */
.khadamat-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.khadamat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* About Cards */
.card-about {
    transition: all 0.3s ease;
}

.card-about:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}