.under-header-division{
    min-height: 20px;
    max-height: 40px;
    max-width: 100%;
    width: 100%;
    background-color: var(--bg-secondary);
    position: relative;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 850px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        hsla(204, 85%, 7%, 0.5) 0%,
        hsla(204, 85%, 7%, 0.2) 30%,
        hsla(204, 85%, 7%, 0.1) 60%,
        hsla(204, 85%, 7%, 0.0) 100%
    );
    z-index: 1;
    pointer-events: none;
}


.hero-content-grid{
    position: absolute;
    top: 0;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    justify-content: right;
}

/* Content Box */
.hero-content {
    position: absolute;
    max-width: 400px;
    height: 100%;
    z-index: 5;
    background-color: var(--bg-secondary);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: var(--text-padding-rl);
    padding-top: 8rem;
}



.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.hero-content h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--btn-color);
    border: 2px solid transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
    background: var(--bg-secondary);
    transform:  translateY(-2px);
    border: 2px solid var(--hover-color);
    box-shadow: 0px 0px 12px 1px var(--shadow-color);
}

/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #fff;
    border-color: var(--primary-color, #007bff);
    transform: scale(1.2);
}

/* Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    right: 20px;
}

.hero-arrow-next {
    left: 20px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-content {
        width: 280px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
    }
}

/* Responsive - Mobile */
@media (max-width: 620px) {
    .hero-banner {
        height: 35vh;
        min-height: 35vh;
    }
    .hero-slider {
        height: 100%;
        width: 100%;
    }
    .hero-slide {
        height: 100%;
    }
    .hero-background {
        height: 100%;
    }
    .hero-background img {
        object-fit: cover;
        object-position: center;
        background-repeat: no-repeat;
        background-position: center;
    }
    .hero-overlay {
        display: none;
    }
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .dot.active {
    background: transparent;
    border-color: transparent;
    }
    .hero-arrow {
        width: 60px;
        min-height: 100vh;
        height: 100%;
        background: transparent;
        border: none;
        border-radius: 0%;
        color: transparent;
        backdrop-filter: none;
    }
    .hero-arrow:hover {
    background: transparent;
    border-color: transparent;
    }

    .hero-arrow-prev {
        right: 10px;
    }

    .hero-arrow-next {
        left: 10px;
    }
}