/* Clients Section - Simple & Professional Design */

.clients-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}


/* Simple Animated Background */

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.05) 0%, transparent 50%);
    animation: gentleFloat 15s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Container */

.clients-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Header Section */

.clients-header {
    text-align: center;
    margin-bottom: 80px;
}

.clients-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 500;
}


/* Partners Grid */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.partner-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


/* Partners Slider */

.partners-slider {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    align-items: center;
    animation: slide 25s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    flex-shrink: 0;
    width: 180px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: scale(1.1);
}

.slider-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    animation: slideLogoFloat 3s ease-in-out infinite;
}

.slider-item:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes slideLogoFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}


/* Responsive Design */

@media (max-width: 1200px) {
    .clients-title {
        font-size: 3rem;
    }
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0 60px;
    }
    .clients-title {
        font-size: 2.5rem;
    }
    .clients-subtitle {
        font-size: 1.1rem;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .partner-card {
        padding: 30px 25px;
    }
    .partner-logo {
        height: 80px;
    }
    .slider-item {
        width: 140px;
        height: 60px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .clients-container {
        padding: 0 1rem;
    }
    .clients-title {
        font-size: 2rem;
    }
    .partner-card {
        padding: 25px 20px;
    }
    .partner-logo {
        height: 70px;
    }
    .slider-item {
        width: 120px;
        height: 50px;
        margin: 0 15px;
    }
}