/* Hero Page Styles */
.hero-page {
    padding: 20px 0;
    color: #fff;
    width: 100%;
}

/* Hero Info Box */
.hero-info-box {
    position: relative;
    margin-bottom: 30px;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    background: var(--ast-global-color-8);
}

/* Background Image on the Right */
.hero-info-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; /* Covers 50% of the container */
    height: 100%;
    background-size: cover;
    background-position: center -60px;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    background-image: var(--hero-bg); /* Dynamically set via inline style */
}

/* Content (Text) */
.hero-info-content {
    position: relative;
    z-index: 2; /* Ensure content stays above the background */
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    margin-top: -15px;
}

.hero-description {
    margin-top: 10px;
    color: #ccc;
    font-size: 1.2rem;
    width: 60%;
    text-transform: none;
}

.role-icon {
    width: 40px; /* Adjust icon size */
    height: 40px;
    margin-bottom: 10px;
}

/* Items Grid */

.hero-items {
    text-transform: uppercase;
}




@media (max-width: 968px) {
    .hero-info-box::after {
        width: 100%;
        background-position: center;
        opacity: 0.02;
    }

    .hero-description {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-items h2 {
        text-align: center;
    }
}