/* Hero Section Full Width */
#hero {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
    height: auto;
}

#hero-slider {
    width: 100%;
    height: auto;
    position: relative;
}

#hero-slider .slide-item {
    width: 100%;
    height: auto;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}

#hero-slider .slide-item .container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Navigation Arrows */
#hero .slick-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 20px;
}

#hero .slick-arrow {
    pointer-events: auto;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .slick-arrow:hover {
    background: transparent;
}

#hero .slick-arrow-left {
    margin-left: 0;
}

#hero .slick-arrow-right {
    margin-right: 0;
}

/* Bullets */
#hero .slick-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}


.slick-arrows .slick-arrow {
    text-decoration: none;
    position: absolute;
    top: auto;
    left: 0;
}