/* Industries Page */

/* ============================================================================
   INDUSTRIES HERO SECTION
   ============================================================================ */

.industries-hero {
    /* Background image is now set via inline styles from template */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white-color);
    position: relative;
}

/* Benefits Carousel Component */
.benefits-carousel {
    position: relative;
}

.benefits-carousel .carousel-content {
    position: relative;
    overflow: hidden;
}

.benefits-carousel .benefit-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 420px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.benefits-carousel .benefit-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.benefits-carousel .benefit-card .card {
    height: 100%;
    min-height: 420px;
}

.benefits-carousel .benefit-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
}

.benefits-carousel .benefit-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-carousel .benefit-card .card-text {
    flex-grow: 1;
    line-height: 1.6;
}

.benefits-carousel .carousel-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.benefits-carousel .carousel-controls button:hover {
    transform: scale(1.1);
}

.benefits-carousel .carousel-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.benefits-carousel .carousel-controls button:disabled:hover {
    transform: none;
}

.benefits-carousel .carousel-indicators {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.benefits-carousel .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gray-color);
    background: transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.benefits-carousel .carousel-dot.active,
.benefits-carousel .carousel-dot:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.benefits-carousel .carousel-counter {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Benefits Carousel Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.benefits-carousel .benefit-card.slide-in {
    animation: slideInRight 0.4s ease-out;
}

.benefits-carousel .benefit-card.slide-out {
    animation: slideOutLeft 0.4s ease-out;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS (Industries Page)
   ============================================================================ */

@media (max-width: 768px) {
    .industries-hero {
        padding: 80px 0;
    }
    
    .industries-hero h1 {
        font-size: 2.5rem;
    }
    
    .industries-hero p {
        font-size: 1rem;
    }
}