﻿/* Hero Banner Styles - Bottom Centered Text */
.hero-banner-area {
    position: relative;
    width: 100%;
}
.hero-banner-slider {
    width: 100%;
}
.hero-banner-slide {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (max-width: 1199px) {
    .hero-banner-slide {
        min-height: 500px;
    }
}
@media (max-width: 991px) {
    .hero-banner-slide {
        min-height: 450px;
    }
}
@media (max-width: 767px) {
    .hero-banner-slide {
        min-height: 350px;
    }
}
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px 80px 20px;
    max-width: 800px;
}
@media (max-width: 767px) {
    .hero-banner-content {
        padding: 0 15px 50px 15px;
    }
}
.hero-banner-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .hero-banner-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
}
.hero-banner-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 1199px) {
    .hero-banner-title {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .hero-banner-title {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .hero-banner-title {
        font-size: 18px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
}
.hero-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.hero-banner-btn:hover {
    background-color: rgba(60, 60, 60, 0.9);
    color: #fff;
}
@media (max-width: 767px) {
    .hero-banner-btn {
        padding: 10px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }
}
.hero-banner-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}
.hero-banner-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}
.hero-banner-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
}
