.specialization-section {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.specialization-section .container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #0a2540;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card as Link */
.spec-card {
    border: 1px solid #d9e0e7;
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spec-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: capitalize;
    transition: 0.3s;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    background: #f17900;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Hover */
.spec-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.spec-card:hover .arrow-btn {
    background: #183985;
}

.spec-card:hover p {
    color: #183985;
}

/* Responsive */
@media (max-width: 992px) {
    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specialization-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }
}