.solutions-section {
    padding: 60px 0;
    background: #f8fafc;
}

.solutions-section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
}

.solutionsSwiper {
    padding: 20px 0;
}

.solution-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    text-align: center;
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-info {
    padding: 15px;
}

.solution-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* 📱 Mobilde kartlar alt alta gelsin, slider gibi kaymasın */
@media (max-width:600px) {
    .solutionsSwiper .swiper-wrapper {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        transform: none !important;
    }

    .solutionsSwiper .swiper-slide {
        width: 100% !important;
        flex-shrink: 0;
    }

    .solution-card img {
        height: 160px;
    }
}

.solutions-description {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.solutions-icon {
    width: 120px;
    height: auto;
    margin: 10px 0 20px 0;
    opacity: 0.9;
}

.solutions-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}