/* consultancy.css */

.consultancy-section {
    padding: 70px 20px;
    background: linear-gradient(to right, #ffffff, #f1faff);
    text-align: center;
}

.consultancy-section h2 {
    font-size: 32px;
    font-family: 'Ubuntu', sans-serif;
    color: #002b5c;
    margin-bottom: 20px;
    font-weight: 700;
}

.consultancy-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consultancy-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.consultancy-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    padding: 30px 20px;
    max-width: 300px;
    flex: 1;
    transition: 0.3s ease;
}

.consultancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.consultancy-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #138808;
}

.consultancy-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Ubuntu', sans-serif;
}

.consultancy-desc {
    font-size: 14px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.consultancy-slider {
    max-width: 1100px;
    margin: 50px auto 0;
    border-radius: 12px;
    overflow: hidden;
}

/* Swiper container */
.swiper {
    width: 100%;
    height: 350px; /* Fixed height for desktop */
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out;
}

/* Optional: zoom on hover */
.swiper-slide img:hover {
    transform: scale(1.03);
}



/* Responsive for mobile */
@media (max-width: 768px) {
    .swiper {
        height: 250px; /* smaller height for mobile */
    }

    .swiper-slide img {
        border-radius: 10px;
    }
}
