/* ألوان بطاقات الخدمات والبرامج */

/* ألوان بطاقات الخدمات */
.feature-color-1 {
    background-color: #f8f9fa;
    border: 2px solid #4361ee;
    color: #2b2d42;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
}

.feature-color-1 .feature-simple-icon {
    background-color: white;
    color: #4361ee;
    border: 2px solid #4361ee;
}

.feature-color-2 {
    background-color: #f8f9fa;
    border: 2px solid #3f37c9;
    color: #2b2d42;
    box-shadow: 0 5px 15px rgba(63, 55, 201, 0.15);
}

.feature-color-2 .feature-simple-icon {
    background-color: white;
    color: #3f37c9;
    border: 2px solid #3f37c9;
}

.feature-color-3 {
    background-color: #f8f9fa;
    border: 2px solid #4895ef;
    color: #2b2d42;
    box-shadow: 0 5px 15px rgba(72, 149, 239, 0.15);
}

.feature-color-3 .feature-simple-icon {
    background-color: white;
    color: #4895ef;
    border: 2px solid #4895ef;
}

.feature-color-4 {
    background-color: #f8f9fa;
    border: 2px solid #3a56d4;
    color: #2b2d42;
    box-shadow: 0 5px 15px rgba(58, 86, 212, 0.15);
}

.feature-color-4 .feature-simple-icon {
    background-color: white;
    color: #3a56d4;
    border: 2px solid #3a56d4;
}

/* ألوان بطاقات البرامج */
.program-color-1 {
    background-color: #f8f9fa;
    border: 2px solid #4361ee;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
}

.program-color-1 .program-icon-wrap {
    background-color: white;
    color: #4361ee;
    border: 2px solid #4361ee;
}

.program-color-1 .program-name {
    color: #2b2d42;
    font-weight: 600;
}

.program-color-2 {
    background-color: #f8f9fa;
    border: 2px solid #3f37c9;
    box-shadow: 0 5px 15px rgba(63, 55, 201, 0.15);
}

.program-color-2 .program-icon-wrap {
    background-color: white;
    color: #3f37c9;
    border: 2px solid #3f37c9;
}

.program-color-2 .program-name {
    color: #2b2d42;
    font-weight: 600;
}

.program-color-3 {
    background-color: #f8f9fa;
    border: 2px solid #4895ef;
    box-shadow: 0 5px 15px rgba(72, 149, 239, 0.15);
}

.program-color-3 .program-icon-wrap {
    background-color: white;
    color: #4895ef;
    border: 2px solid #4895ef;
}

.program-color-3 .program-name {
    color: #2b2d42;
    font-weight: 600;
}

.program-color-4 {
    background-color: #f8f9fa;
    border: 2px solid #3a56d4;
    box-shadow: 0 5px 15px rgba(58, 86, 212, 0.15);
}

.program-color-4 .program-icon-wrap {
    background-color: white;
    color: #3a56d4;
    border: 2px solid #3a56d4;
}

.program-color-4 .program-name {
    color: #2b2d42;
    font-weight: 600;
}

/* تحسينات عامة للبطاقات */
.feature-simple {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    padding: 20px 15px;
    text-align: center;
}

.feature-simple:hover {
    transform: translateY(-5px);
}

.feature-simple-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.feature-simple-icon i {
    font-size: 32px;
}

.feature-simple-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.program-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px 15px;
    text-align: center;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.program-icon-wrap i {
    font-size: 28px;
}

.program-name {
    font-size: 17px;
    margin-top: 10px;
}
