/* Homepage Specific Styles */

/* Remove negative margin from CTA section on homepage only */
.cta-section {
    margin-bottom: 0;
}

/* Customer Showcase Section */
.customer-showcase-section {
    background: #f8f9fa;
}

/* Logo Carousel Styles */
.logo-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-carousel {
    display: flex;
    gap: 40px;
    align-items: center;
    cursor: grab;
    user-select: none;
    transition: transform 0.3s ease;
}

.logo-carousel:active {
    cursor: grabbing;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
}

.carousel-logo {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Navigation arrows for manual carousel control */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-item {
        width: 150px;
        height: 80px;
    }
    
    .carousel-logo {
        max-height: 50px;
        max-width: 140px;
    }
    
    .logo-carousel {
        gap: 30px;
    }
}