.medical-section-aos {
display: flex;
gap: 25px;
justify-content: center;
flex-wrap: wrap;
padding: 30px 10px;
background-color: #fcfcfc;
}
.med-card {
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
width: 320px;
padding: 40px 25px;
text-align: center;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
text-decoration: none !important;
border-bottom: 4px solid #0056b3;
display: flex;
flex-direction: column;
align-items: center;
}
.med-card:hover {
transform: translateY(-12px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
background: #0056b3;
}
.icon-box {
font-size: 50px;
margin-bottom: 20px;
transition: 0.3s;
}
.med-card:hover .icon-box,
.med-card:hover .med-title,
.med-card:hover .med-text {
color: #ffffff !important;
}
.med-title {
color: #0056b3;
font-size: 24px;
font-weight: 800;
margin-bottom: 15px;
text-transform: uppercase;
}
.med-text {
color: #666;
font-size: 15px;
line-height: 1.5;
margin-bottom: 0;
}
/* استجابة الموبايل */
@media (max-width: 768px) {
.med-card {
width: 90%;
margin-bottom: 10px;
}
}