/* =====================================================
   SCROLL ANIMATION
===================================================== */

.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}


/* =====================================================
   INDUSTRIES TESTIMONIAL SLIDER
===================================================== */

.industry-slider {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: industryMarquee 45s linear infinite;
}

.industry-slider:hover {
    animation-play-state: paused;
}

.industry-card {
    position: relative;
    width: 360px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.35s;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: #0067D6;
    box-shadow: 0 0 40px rgba(0, 103, 214, 0.20);
}

.industry-avatar {
    width: 72px;
    height: 72px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 103, 214, 0.12);
    border: 1px solid rgba(0, 103, 214, 0.25);
    margin-bottom: 22px;
}

.industry-avatar svg {
    width: 34px;
    height: 34px;
    color: #ffffff;
}

.industry-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.industry-card p {
    color: #94A3B8;
    line-height: 1.8;
    font-size: 15px;
}

.industry-quote {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    color: #0067D6;
    opacity: 0.18;
}

@keyframes industryMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* =====================================================
   INDUSTRIES RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .industry-card {
        width: 300px;
        padding: 26px;
    }

    .industry-slider {
        gap: 18px;
        animation-duration: 30s;
    }

}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-select option {
    background: #0F172A;
    color: #ffffff;
}

.contact-input,
.contact-select,
.contact-textarea {
    transition: all 0.35s ease;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 103, 214, 0.35),
        0 0 30px rgba(0, 103, 214, 0.18);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #64748B;
    transition: 0.3s;
}

.contact-input:focus::placeholder,
.contact-textarea:focus::placeholder {
    opacity: 0.5;
}

.contact-form {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transition: 0.4s;
}

.contact-form:hover {
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}


/* changes started Here ----------------------------------------------------- */


/* =====================================================
   HERO ANIMATIONS
===================================================== */

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.animate-fadeLeft {
    animation: fadeLeft 1s ease forwards;
    animation-delay: 0.25s;
}

.animate-fadeRight {
    animation: fadeRight 1s ease forwards;
    animation-delay: 0.45s;
}


/* =====================================================
   FADE UP ANIMATION - ABOUT SECTION
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.animate-fadeUp {
    animation: fadeUp 1s ease forwards;
}

.animate-delay-200 {
    animation-delay: 0.25s;
}