/* Applications Section */
.top-banner img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    object-position: 50% 50%;
}


.apps-section {
    padding: 40px 0 50px;
    background-color: #fff;
}

/* Intro Wrapper */
.intro-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8; overflow:hidden
}

.intro-content {
    flex: 1;
}

.apps-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b3058;
    margin-bottom: 20px;
    line-height: 1.3;
}

.apps-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #486482;
    text-align: justify;
}

.intro-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Industry Cards Section */
.industry-cards {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-height: 200px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.industry-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Markets Section */
.markets-title {
    font-size: 30px;
    font-weight: 700;
    color: #0b3058;
    margin-bottom: 40px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.market-item {
    display: flex;
    gap: 20px;
}

.market-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.market-content {
    flex: 1;
}

.market-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b3058;
    margin-bottom: 12px;
}

.market-description {
    font-size: 14px;
    line-height: 1.7;
    color: #486482;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .intro-image {
        width: 100%;
        height: auto;
        max-height: 250px;
    }

    .apps-title {
        font-size: 28px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-name {
        font-size: 16px;
    }

    .markets-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .apps-section {
        padding: 30px 0 40px;
    }

    .intro-wrapper {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .apps-title {
        font-size: 24px;
    }

    .apps-intro {
        font-size: 14px;
    }

    .intro-image {
        max-height: 200px;
    }

    .industry-cards {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .industry-grid {
        gap: 12px;
    }

    .industry-card {
        max-height: 150px;
    }

    .industry-name {
        font-size: 14px;
    }

    .markets-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .market-item {
        gap: 15px;
    }

    .market-icon {
        width: 50px;
        height: 50px;
    }

    .market-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .market-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .apps-section {
        padding: 20px 0 30px;
    }

    .intro-wrapper {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .apps-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .apps-intro {
        font-size: 14px;
        line-height: 1.6;
    }

    .intro-image {
        max-height: 180px;
    }

    .industry-cards {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .industry-card {
        max-height: 120px;
    }

    .industry-name {
        font-size: 13px;
    }

    .markets-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .markets-grid {
        gap: 20px;
    }

    .market-item {
        gap: 12px;
    }

    .market-icon {
        width: 45px;
        height: 45px;
    }

    .market-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .market-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .intro-image img {
        width: 195px;
        object-fit: contain;
    }
}