/* ================================
   Modern Tech Hero Slider
   ================================ */

/* Override default slider section */
.ori-slider-section-1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ori-slider-content-wrapper-1 {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hide original line animation - we use global now */
.ori-slider-section-1 .line_animation {
    display: none;
}

/* Tech Slider Container */
.tech-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px 40px;
}

/* Slide Layout */
.tech-slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-slide.slick-active {
    opacity: 1;
}

/* Left Content */
.tech-slide-content {
    flex: 1;
    max-width: 600px;
}

/* Tag/Label */
.tech-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #26d300;
}

.tech-slide-tag i {
    font-size: 10px;
}

/* Title */
.tech-slide-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.tech-slide-title span {
    color: #26d300;
    display: block;
    position: relative;
}

/* Arrow icon in title */
.tech-slide-title .title-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #26d300;
    border-radius: 8px;
    margin-left: 15px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.tech-slide-title .title-arrow i {
    font-size: 20px;
    color: #000;
    transform: rotate(-45deg);
}

.tech-slide:hover .tech-slide-title .title-arrow {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(38, 211, 0, 0.4);
}

/* Description */
.tech-slide-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    max-width: 500px;
}

/* CTA Button */
.tech-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    margin-top: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.tech-slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(38, 211, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.tech-slide-btn:hover {
    border-color: #26d300;
    color: #26d300;
    box-shadow: 0 0 30px rgba(38, 211, 0, 0.2);
}

.tech-slide-btn:hover::before {
    left: 100%;
}

.tech-slide-btn i {
    transition: transform 0.3s ease;
}

.tech-slide-btn:hover i {
    transform: translateX(5px);
}

/* Right Image */
.tech-slide-visual {
    flex: 1;
    max-width: 550px;
    position: relative;
}

/* Image container with effects */
.tech-slide-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

.tech-slide-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(38, 211, 0, 0.15));
    transition: all 0.5s ease;
}

.tech-slide:hover .tech-slide-image img {
    filter: drop-shadow(0 0 50px rgba(38, 211, 0, 0.25));
    transform: scale(1.02);
}

/* Glow effect behind image */
.tech-slide-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(38, 211, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Decorative frame around image */
.tech-slide-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid rgba(38, 211, 0, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

.tech-slide-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-top: 2px solid #26d300;
    border-left: 2px solid #26d300;
    border-radius: 5px 0 0 0;
}

.tech-slide-frame::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid #26d300;
    border-right: 2px solid #26d300;
    border-radius: 0 0 5px 0;
}

/* Floating animation */
@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Social Links */
.tech-slider-social {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-slider-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: all 0.3s ease;
}

.tech-slider-social a:hover {
    background: rgba(38, 211, 0, 0.1);
    border-color: rgba(38, 211, 0, 0.3);
    color: #26d300;
    transform: translateX(5px);
}

/* Slider Navigation */
.tech-slider-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.tech-slider-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-slider-nav-num {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.tech-slider-nav-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-slider-nav-item.active .tech-slider-nav-num {
    color: #26d300;
}

.tech-slider-nav-item.active .tech-slider-nav-line {
    width: 50px;
    background: rgba(38, 211, 0, 0.3);
}

.tech-slider-nav-item.active .tech-slider-nav-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #26d300;
    animation: navProgress 5s linear forwards;
}

@keyframes navProgress {
    from { width: 0; }
    to { width: 100%; }
}

.tech-slider-nav-item:hover .tech-slider-nav-num {
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll indicator */
.tech-slider-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-slider-scroll .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.tech-slider-scroll .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #26d300;
    border-radius: 2px;
    animation: scrollMouse 1.5s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* Slick overrides */
.tech-slider-wrap .slick-list {
    overflow: visible;
}

.tech-slider-wrap .slick-track {
    display: flex;
    align-items: center;
}

/* Hide default dots */
.tech-slider-wrap .slick-dots {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .tech-slider-container {
        padding: 100px 30px 60px;
    }
    
    .tech-slide {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .tech-slide-content {
        max-width: 100%;
    }
    
    .tech-slide-title {
        font-size: 42px;
    }
    
    .tech-slide-desc {
        max-width: 100%;
    }
    
    .tech-slide-visual {
        max-width: 400px;
    }
    
    .tech-slider-social {
        left: 20px;
    }
    
    .tech-slider-nav {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .tech-slider-container {
        padding: 100px 20px 100px;
    }
    
    .tech-slide-title {
        font-size: 32px;
    }
    
    .tech-slide-title .title-arrow {
        width: 35px;
        height: 35px;
    }
    
    .tech-slide-title .title-arrow i {
        font-size: 16px;
    }
    
    .tech-slider-social,
    .tech-slider-nav {
        display: none;
    }
    
    .tech-slide-tag {
        font-size: 10px;
        padding: 6px 15px;
    }
}
