/* custom style for shortcode slider */

.ir-slider {
    position: relative;
    overflow: hidden;
    /* background: #f5f5f5; */
    padding: 30px 0;
    /* min-height: 1000px; */
    min-height: 52.083vw;
    /* height: 100%; */
    padding: 30px 0;
}
/* FADE EFFECT */
.ir-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.ir-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    /* position: relative; */
}

/* DOTS */
.controller-container {
    position: absolute;
    right: 20%;
    bottom: 10vw;
    z-index: 999;
}
.slider-cotroller {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-radius: 100px;
    background-color: #002e48;
}
.arrow {
    padding: 5px 10px;
    background: white;
    border-radius: 50%;
}
.arrow:hover{
    cursor: pointer;
}
.ir-dots {
    text-align: center;
}

.ir-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
}

.ir-dots .dot.active {
    background: #f15b29;
}


/* section style */
.intelliroll-section {
    padding: 50px 0;
    /* background: #f5f5f5; */
}

.intelliroll-section .container {
    width: 100%;
    max-width: 90vw;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.intelli-left {
    flex: 1;
}

.intelli-title {
    font-size: 35px;
    font-weight: 700;
    color: #f15a24;
    margin-bottom: 20px;
    /* font-family: 'inter-semi-bold-italic'; */
    font-family: sans-serif;
    font-weight: 600;
    font-style: italic;
}

.intelli-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: max-content;
}

.intelli-main-media {
    position: relative;
    margin-bottom: 25px;
}

.intelli-main-media img {
    width: 100%;
    border-radius: 4px;
}

.intelli-thumbs {
    display: flex;
    gap: 20px;
}

.intelli-thumbs img {
    width: 32%;
    border-radius: 4px;
}

/* RIGHT SIDE */
.intelli-right {
    flex: 1;
    text-align: right;
}

.intelli-right img {
    max-width: 100%;
    height: auto;
}

.wim3-section {
    padding: 50px 0;
    /* background: #f2f2f2; */
    position: relative;
}

/* Optional faded industrial background */
.wim3-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('industrial-bg.jpg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.wim3-container {
    width: 100%;
    max-width: 90vw;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.wim3-left {
    flex: 1;
}

.wim3-title {
    font-size: 35px;
    /* font-weight: 700; */
    color: #f15a24;
    margin-bottom: 25px;
    font-family: sans-serif;
    /* font-family: 'inter-semi-bold-italic'; */
    font-weight: 600;
    font-style: italic;
}

.wim3-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 650px;
}

.wim3-images {
    display: flex;
    gap: 30px;
}

.wim3-images img {
    width: 48%;
    border-radius: 4px;
}

/* RIGHT SIDE */
.wim3-right {
    flex: 1;
    text-align: right;
}

.wim3-right img {
    max-width: 100%;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    /* .wim3-container {
        flex-direction: column;
    } */

     /* .intelliroll-section .container {
        flex-direction: column; */
    /* } */

    .intelli-right {
        text-align: center;
    }

    .intelli-text {
        max-width: 100%;
    }
    .wim3-images img {
        width: 50%;
    }

    .wim3-right {
        text-align: center;
    }

    .wim3-images {
        flex-direction: row;
    }
    .ir-slider{
        min-height: 70vw;
    }
}

@media (max-width: 900px) {
    .ir-slider {
        min-height: 130vw;
    }
    .intelliroll-section .container, .wim3-container {
        flex-direction: column;
    }
    .intelli-thumbs img {
        width: 20%;
    }
    .wim3-images img {
        width: 25%;
    }
    .intelli-main-media img {
        width: 70%;
    }
    .intelli-thumbs, .wim3-images {
        justify-content: center;
    }
    .intelli-main-media{
        text-align: center;
    }
    .controller-container {
        right: 50%;
        bottom: 2vw;
        transform: translate(50%, 10px);
    }
}

@media (max-width: 600px){
    .ir-slider {
        min-height: 190vw;
    }
    .slider-cotroller{
        gap: 10px;
    }
    .ir-dots .dot {
        width: 8px;
        height: 8px;
    }
    .intelli-text, .wim3-text {
        font-size: 14px;
    }
    .intelli-thumbs img, .wim3-images img {
        width: 30%;
    }
    .controller-container{
        width: 206px;
    }
    .intelli-main-media img{
        width: 100%;
    }
}

@media (max-width: 500px){
    .ir-slider {
        min-height: 200vw;
    }
    .controller-container{
        bottom: 5vw;
    }
}

@media (max-width: 450px){
    .ir-slider {
        min-height: 220vw;
    }
}

@media (max-width: 400px){
    .intelli-thumbs {
        gap: 10px;
    }
    .ir-slider {
        min-height: 260vw;
    }
}
@media (max-width: 350px) {
    .ir-slider {
        min-height: 310vw;
    }
}