.elementor-158031 .elementor-element.elementor-element-6e5c56c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS for container, class: .elementor-element-6e5c56c *//* Add styles here */
* {
    font-family: 'Poppins';
}

.container {
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    
}

.slide-video .videoLink {
    display: none;
}

.carousel-container {
    max-width: 1440px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: start;
    justify-content: start;
    
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
url('https://www.wordtext.com.ph/wp-content/uploads/2025/07/Sophos-Super-Recharge.png');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
url('https://www.wordtext.com.ph/wp-content/uploads/2025/07/Manage-Detection-and-Response.png');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
url('https://www.wordtext.com.ph/wp-content/uploads/2025/07/XG-Firewall-End-of-Life.png');
}

.slide-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('https://www.wordtext.com.ph/wp-content/uploads/2025/07/AI-powered-Cyber-Defenses.png')
}

.slide-4 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start;
    color: white;
    height: 100%;
    max-width: 70%;
    animation: slideInUp 0.8s ease-out;
    padding: 40px 120px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 2rem !important;
    font-weight: bold;
    margin-bottom: 20px;
    background-clip: text;
    line-height: 36px;
}

.slide-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.inquire-btn {
    color: #fff;
    border: 2px solid #fff;
    background-color: transparent;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.inquire-btn a {
    color: #fff;
}

.inquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.inquire-btn:hover::before {
    left: 100%;
}

.inquire-btn:hover {
    transform: translateY(-2px);
}

.inquire-btn:active {
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
   .carousel-arrow {
       top: 91%;
    }
    
    .carousel-arrow.prev {
        left: -10px;
    }
    
    .carousel-arrow.next {
        right: -10px;
    }
    
    .slide {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .slide-video {
        display: flex;
        flex-direction: column;
    }
    
    .slide-video h2 {
        font-size: 24px !important;
    }
    
    iframe {
        display: none;
    }
    
    .slide-video .videoLink {
        display: flex;
        position:absolute;
        top: 55%;
        
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
       top: 91%;
    }
    
    .carousel-arrow.prev {
        left: -10px;
    }
    
    .carousel-arrow.next {
        right: -10px;
    }
    
    .slide-content {
        max-width: 100%;
        padding: 6px;
    }
    
    .slide-video {
        display: flex;
        flex-direction: column;
    }
    
    .slide-video h2 {
        font-size: 24px !important;
    }
    
    iframe {
        display: none;
    }
    
    .slide-video .videoLink {
        display: flex;
        position:absolute;
        top: 65%;
    }
    
    .slide-desc {
        font-size: 15px;
    }
    
    .inquire-btn {
        padding: 6px 12px;
    }
}



iframe {
    padding: 12px;
    height: 80%;
}/* End custom CSS */