/* ============================================================
   INDUSTRY CARD SLIDER - STYLES
   ============================================================ */

/* Wrapper */
.ics-slider-wrapper-1c268926 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Swiper container */
.ics-swiper-1c268926 {
    overflow: hidden;
    padding-bottom: 50px;
}

/* Card */
.ics-card-1c268926 {
    position: relative;
    height: 650px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ics-card-1c268926:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Card Image */
.ics-card-image-1c268926 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ics-card-image-1c268926 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ics-card-1c268926:hover .ics-card-image-1c268926 img {
    transform: scale(1.08);
}

/* Dark Gradient Overlay */
.ics-card-overlay-1c268926 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 28px 32px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.0) 100%
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 45%;
}

/* Title */
.ics-card-title-1c268926 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Description */
.ics-card-desc-1c268926 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Arrows */
.ics-nav-prev-1c268926,
.ics-nav-next-1c268926 {
    position: absolute;
    top: 50%;
    transform: translateY(-calc(50% + 25px));
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ics-nav-prev-1c268926 {
    left: 0;
}

.ics-nav-next-1c268926 {
    right: 0;
}

.ics-nav-prev-1c268926:hover,
.ics-nav-next-1c268926:hover {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.3);
}

/* Pagination */
.ics-pagination-1c268926 {
    text-align: center;
    margin-top: 8px;
}

.ics-pagination-1c268926 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c4c4c4;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.ics-pagination-1c268926 .swiper-pagination-bullet-active {
    background: #1a1a2e;
    width: 28px;
    border-radius: 5px;
}

/* Hidden state for arrows/pagination when disabled */
.ics-nav-hidden-1c268926 {
    display: none !important;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1024px) {
    .ics-slider-wrapper-1c268926 {
        padding: 30px 50px;
    }

    .ics-card-1c268926 {
        height: 550px;
    }

    .ics-card-title-1c268926 {
        font-size: 22px;
    }

    .ics-card-desc-1c268926 {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .ics-card-overlay-1c268926 {
        padding: 30px 22px 26px;
    }
}

@media (max-width: 767px) {
    .ics-slider-wrapper-1c268926 {
        padding: 20px 40px;
    }

    .ics-card-1c268926 {
        height: 500px;
    }

    .ics-card-title-1c268926 {
        font-size: 20px;
    }

    .ics-card-desc-1c268926 {
        font-size: 13px;
    }

    .ics-nav-prev-1c268926,
    .ics-nav-next-1c268926 {
        width: 36px;
        height: 36px;
    }

    .ics-nav-prev-1c268926 svg,
    .ics-nav-next-1c268926 svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .ics-slider-wrapper-1c268926 {
        padding: 16px 12px;
    }

    .ics-card-1c268926 {
        height: 450px;
    }

    .ics-nav-prev-1c268926 {
        left: -4px;
    }

    .ics-nav-next-1c268926 {
        right: -4px;
    }
}
