/* Home Banner Block Styles */
.home-banner-swiper {
    width: 98%;
    margin: 1rem auto;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.home-banner-swiper .swiper-slide {
    position: relative;
}
.home-banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}
.home-banner-swiper .slide-caption {
    position: absolute; 
    bottom: 20px; 
    left: 20px; 
    color: #fff; 
    background: rgba(0,0,0,0.5); 
    padding: 10px 20px; 
    border-radius: 4px; 
    pointer-events: none;
}
.home-banner-swiper .slide-caption h3 {
    margin: 0;
}
.home-banner-swiper .slide-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.home-banner-swiper .slide-btn:hover {
    background-color: #0056b3;
}
.home-banner-swiper .slide-btn-absolute {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Swiper Navigation Arrows */
.home-banner-swiper .swiper-button-next,
.home-banner-swiper .swiper-button-prev {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}
.home-banner-swiper .swiper-button-next:after,
.home-banner-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}
.home-banner-swiper .swiper-button-next:hover,
.home-banner-swiper .swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

/* Swiper Pagination */
.home-banner-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.home-banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

/* Home Buttons */
#btns {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

#btns button {
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fbfbfb;
    cursor: pointer;
}

#btns button:hover {
    background: #f6f6f6;
    border: 1px solid #d7d7d7;
}
