/* Boxes Slider Widget Styles */
.noxx-boxes-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.noxx-boxes-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.noxx-boxes-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.noxx-boxes-slider-dots {
    margin: 40px auto;
}
.noxx-boxes-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-column-gap: 40px;
}

.noxx-box {
    display: flex;
    flex-direction: column;
    border: 0.5px solid rgba(255, 255, 255, 0.48);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
}


.noxx-box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.noxx-box-icon svg {
    width: 78px;
    height: 78px;
}

.noxx-box-title {
    font-family: 'Poppins', sans-serif !important;
    color: #FFFFFF !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
    line-height: normal !important;
    margin-bottom: 20px !important;
    min-height: 40px;
}

.noxx-box-description {
    color: #FFFFFF !important;
    font-family: 'Poppins';
    font-size: 20px !important;
    line-height: 28px !important;
    text-align: center !important;
    flex-grow: 1;
}

/* Navigation Dots */
.noxx-boxes-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.noxx-boxes-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.noxx-boxes-slider-dots .dot.active {
    background-color: #FFFFFF;
}

/* Draggable functionality styles */
.noxx-boxes-slider.dragging {
    cursor: grabbing;
}

.noxx-boxes-slider-track.dragging {
    transition: none;
}
.elementor-widget-noxx_boxes_slider {
    transform: initial !important;
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .noxx-boxes-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    div#heroBGF {
        margin-top: -15px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 35px;
    }
    div#heroBGHelper .elementor-widget-container div {
        transform: rotateZ(-1deg) !important;
        height: 100% !important;
    }
    .fuckthisSheetContainer {
        background: linear-gradient(225deg, #2BADFF -28.99%, #0C2949 63.38%) !important;
        margin: auto !important;
    }
    .fuckthisSheetContainer .e-con-inner {
        padding: 60px 10px !important;
    }
    .noxx-boxes-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .noxx-box {
        padding: 30px 20px;
    }
    
    .noxx-box-title {
        font-size: 16px !important;
    }
    
    .noxx-box-description {
        font-size: 14px !important;
    }
    
    .noxx-box-icon svg {
        width: 40px;
        height: 35px;
    }
    .noxx-box {
        width: calc(50% - 10px) !important;
    }
    .noxx-box-description {
        line-height: normal !important;
    }
    .noxx-box {
        padding: 20px 14px !important;
    }
    .noxx-box {
        padding: 20px 14px !important;
    }
    .noxx-boxes-slide {
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 0 !important;
        grid-gap: 10px !important;
    }
    .noxx-box {
        height: auto !important;
    }
} 