.hero-banner-container {
    position: relative;
    width: 100%;
    height: auto; /* Adjust as needed */
    min-height: 400x;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Prevents image from repeating */
    animation: zoomIn 5s ease forwards;
    opacity: 0; /* Start with the image being transparent */
    transition: opacity 1s ease-in-out; /* Smooth transition for the opacity */
    z-index: 1;
}

.hero-banner-image[style*="display: block"] {
    opacity: 1;
}

.hero-banner-overlay {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(20, 15, 0, 0.2); /* Adjust color and opacity as needed */
    z-index: 2; /* Ensure it's above the images but below the text/buttons */
}

.hero-banner-content {
    position: absolute;
    padding: 0px;
    margin: 0px;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3; /* Above the overlay */
    color: #f4f4f4; /* Adjust text color as needed */
}

.hero-banner-button {
    display: inline-block;
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #f4f4f4; /* Button background color */
    color: #131313; /* Button text color */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-banner-button:hover {
    background-color: #011936; /* Darker shade on hover */
    color: #f4f4f4;
}

#custom-popup-container {
    position: absolute; /* Changed from fixed to absolute */
    right: -100%; /* Start off-screen to the right */
    bottom: 64px;
    width: 250px;
    background-color: #f4f4f4;
    border-radius: 6px 0px 0px 6px; /* top-left, top-right, bottom-right, bottom-left */
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: right 1.5s ease-out; /* Smooth transition for sliding in */
    z-index: 10; /* Ensure it appears above other content */
}

#custom-popup-container.show {
    right: 0px; /* Slide in to 0px from the right edge */
}

.custom-popup-text {
    color: #333;
    font-size: 16px;
    margin-left: 8px;
}

#hero-banner-progress-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

.progress-bar-item {
    width: 180px;
    height: 8px;
    border-radius: 6px;
    background-color: #f4f4f4;
    margin-right: 24px;
    margin-left: 24px;
    cursor: pointer;
    opacity: 0.3;
    filter: blur(0.1px);
    transition: background-color 0.9s ease, opacity 0.6s ease, filter 0.3s ease;
}

.progress-bar-item.active {
    background-color: #f4f4f4; /* Active color */
    opacity: 0.8;
    filter: blur(0px);
}

.progress-bar-item:hover {
    background-color: #f4f4f4; /* Active color */
    opacity: 0.6;
    filter: blur(0px);
}


