:root {
    --bg-white: #FFFFFF;
    --text-dark: #1A252C;
    --primary-orange: #F05423;
    --font-urbanist: 'Urbanist', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-urbanist);
    margin: 0;
    padding: 0;
}

.industrial-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 60px;
}

/* Swiper Overrides */
.swiper-industrial {
    width: 100%;
    overflow: visible;
}

.industrial-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.swiper-slide-active.industrial-slide {
    opacity: 1 !important;
}

.industrial-image {
    flex: 1.2;
/*     height: 550px; */
    border-radius: 0px;
    overflow: hidden;
}

.industrial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.industrial-image {
    position: relative;
}

.industrial-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(240, 84, 35, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.industrial-image:hover::after {
    opacity: 1;
}

.industrial-content {
    flex: 0.8;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: -webkit-fill-available;
}

.text-content-container {
    height: 80%;
    display: flex;
    flex-direction: column;
/*     justify-content: flex-end; */
}

.content-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #141414;
	font-family: 'Urbanist';
}
.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.content-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin-bottom: calc(150px - 3vw);
    max-width: 500px;
}

.swiper-slide[data-swiper-slide-index="1"] .content-description {
	margin-bottom: calc(90px - 3vw) !important;}

.highlight-orange {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Custom Navigation */
.industrial-nav {
    display: flex;
    gap: 5px;
}

.nav-box {
    width: 35px;
    height: 35px;
    background-color: var(--primary-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.2s, background-color 0.2s;
}

.nav-box:hover {
    background-color: #d8481c;
    transform: scale(1.1);
}

.nav-box img {
    width: 17px;
    height: auto;
}

.arrow-flipped {
    transform: scaleX(-1);
}

/* Responsiveness */
@media (max-width: 1100px) {
    .industrial-slide {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .industrial-image {
        width: 100%;
        height: 450px;
    }

    .industrial-content {
        width: 100%;
        height: auto;
        justify-content: flex-start;
        padding-right: 0;
    }

    .text-content-container {
        height: auto;
/*         justify-content: flex-start; */
    }

    .content-description {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .industrial-section {
        padding: 60px 25px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .industrial-image {
        height: 100%;
    }

    .content-title {
        font-size: 26px;
        line-height: 36px;
    }

    .content-description {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: transparent;
    border: none;
}

.modal-content video {
    width: 100%;
    height: auto;
/*     border-radius: 8px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
	padding: 0px;
    position: absolute;
    top: -5px;
    right: 10px;
    color: #f05423;
    font-size: 32px;
	line-height:30px
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
	z-index:9;
}

.close-modal:hover {
    color: var(--primary-orange);
    background: transparent;
}

@media (max-width: 767px) {
    .modal-content {
        width: 95%;
    }
    
    .close-modal {
        font-size: 24px;
    }
}