/* =========================================
   Industries Hero Entrance Animation
========================================= */

.industries-hero-content {
    opacity: 0;
    transform: translateY(35px);
    animation: industriesHeroEntrance 0.9s ease-out forwards;
}


@keyframes industriesHeroEntrance {

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

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

}


/* Mobile */

@media (max-width: 639px) {

    .industries-hero-content {
        animation-duration: 0.7s;
    }

}

/* =========================================
   INDUSTRY CARDS
========================================= */

.industry-card {
    position: relative;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.65);
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(18px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}


.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 103, 214, 0.75);
    box-shadow: 0 0 35px rgba(0, 103, 214, 0.12);
}


.industry-card h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
}


.industry-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #0067D6, #22d3ee);
    color: #ffffff;
}


.industry-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}


/* Divider */

.industry-divider {
    width: 100%;
    height: 1px;
    margin: 1.5rem 0;
    background: linear-gradient(90deg, transparent, rgba(71, 85, 105, 0.8), transparent);
}


/* Content Blocks */

.industry-content-block {
    margin-top: 1.25rem;
}


.industry-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}


.industry-label svg {
    width: 0.95rem;
    height: 0.95rem;
}


.challenge-label {
    color: #fbbf24;
}


.solution-label {
    color: #38bdf8;
}


.benefit-label {
    color: #22c55e;
}


.industry-content-block ul {
    margin-top: 0.7rem;
    padding-left: 0;
    list-style: none;
}


.industry-content-block li {
    position: relative;
    padding-left: 1rem;
    margin-top: 0.45rem;
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}


.industry-content-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #0067D6;
}


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

.scroll-animate {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}


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


/* Mobile */

@media (max-width: 639px) {

    .industry-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }


    .industry-icon {
        width: 2.75rem;
        height: 2.75rem;
    }


    .industry-card h3 {
        font-size: 1rem;
    }


    .industry-content-block li {
        font-size: 0.82rem;
    }

}

/* =====================================================
   INDUSTRIES ENQUIRY FORM
===================================================== */

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

.industry-input:focus,
.industry-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);
}

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

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

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

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

/* Success Modal Animation */

#industrySuccessModal {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#industrySuccessModal.modal-show {
    opacity: 1;
}

#industrySuccessModal > div {
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s ease;
}

#industrySuccessModal.modal-show > div {
    transform: translateY(0) scale(1);
}