.hero {
    position: relative;
    height: 83vh;
    overflow: hidden;
    max-height: none;
    /* IMPORTANT */
}

/* Video fills the section */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Text on top */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    max-width: 900px;
}

.hero-content p {
    margin-top: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 600px;
}

/* Call-to-action button */
.hero-btn {
    margin-top: 2rem;
    padding: 0.75rem 1.75rem;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    line-height: 1.4;
    white-space: normal;
}

.hero-btn:hover {
    background-color: #1d4ed8;
}

/* .hero-btn2 {
    margin-top: 2rem;
    padding: 0.75rem 1.75rem;

    background-color: #2563eb !important;
    color: #ffffff !important;

    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    line-height: 1.4;
    white-space: normal;
}

.hero-btn2:hover {
    background-color: #1d4ed8;
} */

.feature-split {
    display: flex;
    height: 350px;
    background-color: #ffffff;
}

/* Left side text */
.feature-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    max-width: 520px;
}

/* Right side image */
.feature-image {
    flex: 1;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* object-fit: cover; */
}

.spacer {
    height: 25px;
    background-color: #ffffff;
}

.industries {
    padding: 80px 20px;
    background: #f8f9fb;
    text-align: center;
}

.industries .container {
    max-width: 1000px;
    margin: 0 auto;
}

.industries h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.industries-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.industries-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.industries-list li {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-weight: 500;
}


/* Desktop-only offset */
@media (min-width: 1024px) {
    .feature-text {
        padding-left: 3rem;
    }
}


@media (max-width: 768px) {
    .feature-split {
        flex-direction: column;
        height: auto;
    }

    .feature-content {
        order: 1;
        padding: 2rem;
    }

    .feature-image {
        order: 2;
        height: 150px;
    }

}