/* ==============================
   APPLICATION PAGE HERO (NEW)
============================== */

.app-hero {
    position: relative;
    min-height: 90vh;
    /* 👈 adjust freely per page */
    background-image: url('../assets/backgroundTwo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.app-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 32, 64, 0.65),
            rgba(0, 0, 0, 0.55));
    z-index: 1;
}

/* Text container */
.app-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    text-align: center;
}

.app-hero-content h1 {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.25;
}

/* Tablet */
@media (max-width: 991px) {
    .app-hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .app-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .app-hero-content h1 {
        font-size: 2.3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .app-hero {
        min-height: 80vh;
    }

    .app-hero-content h1 {
        font-size: 1.1rem;
    }
}


/* This matches your reference image exactly */
.industry-card {
    background-color: #ebf3f7;
    /* Light blue tint from your photo */
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Image at the top, no more circles or icons */
.industry-image {
    width: 100%;
    height: 180px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text area styling */
.industry-content {
    padding: 15px;
    text-align: left;
    /* Left aligned as per your image */
}

.industry-content h3 {
    color: #2c6eb5;
    /* Corporate blue color from your image */
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.industry-content p {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Highlight selected application */
.industry-card.active {
    border: 2px solid #daa520;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.15);
    transform: translateY(-6px);
}
