/* Hero Banner Section */
.hero-banner {
    margin-top: 0;
}

.hero-image-container {
    min-height: 400px;
    height: 45vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0056b3;
    /* Fallback color */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 86, 179, 0.5), rgba(0, 86, 179, 0.2));
    z-index: 1;
}

.hero-content-banner {
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
}

.hero-top-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    gap: 4rem;
}

.hero-logo-white {
    height: auto;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.hero-bottom-logo {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hero-logo-ampa {
    height: auto;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    display: block;
}

.hero-title-2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.95);
}

.hero-text-section {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Welcome text section without shadow */
.welcome-text-section {
    background: white;
    padding: 1rem 2rem;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image-container {
        height: 30vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content-banner {
        padding: 2rem 1rem;
    }

    .hero-text-section,
    .welcome-text-section {
        padding: 2rem 1rem;
    }

    .hero-top-logos {
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .hero-logo-white {
        max-height: 50px;
    }

    .hero-bottom-logo {
        margin-top: 1rem;
    }

    .hero-logo-ampa {
        max-height: 60px;
    }

    .hero-description {
        font-size: 1rem;
    }
}