﻿.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-slider-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.slide-item {
    flex: 1 1 30%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

    .slide-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

.slide-heading {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-size: 1.25rem;
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: slideIn 1s ease forwards;
}

.slide-left.animate {
    animation-delay: 0s;
}

.slide-top.animate {
    animation-delay: 0.5s;
}

.slide-right.animate {
    animation-delay: 1s;
}

/* Partner section */
.partners-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
    margin-top: 40px;
}

.partners-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    max-height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    filter: grayscale(40%);
}

    .partner-logo:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        filter: grayscale(0%);
    }
