/* Industry Pages Common Styles */

/* Form styling */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 228, 252, 0.3);
}

/* CTA button hover effects */
.cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 1, 144, 0.4);
}

/* Light line animations (generic for all industry pages) */
.industry-light-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #6FE4FC, transparent);
    animation: industryLightMove 3s ease-in-out infinite;
    opacity: 0.6;
}

.industry-light-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.industry-light-line:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.industry-light-line:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

@keyframes industryLightMove {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Slider animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}











