/* Hero Slider Styles - Updated to match Blue/Teal Reference */
.home-slider-main {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Reduced height to 85vh */
    /* Full viewport height */
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 991px) {
    .home-slider-main {
        height: 70vh;
    }
}

.swiper.homeslider,
.swiper.homeslider .swiper-wrapper,
.swiper.homeslider .swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper.homeslider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Overlay - Darkened for Readability */
.swiper.homeslider .swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker gradient (0.8 to 0.6 opacity) to ensure text readability */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Content Box */
/* Content Box */
.home-slider-main .swiper-slide .content-box {
    position: relative !important;
    z-index: 10 !important;
    /* Ensure content is above overlay */
    width: 100%;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    text-align: center;
    /* Centered text */
    display: block !important;
    /* Force block display */
}

.home-slider-main .btn-box {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 30px;
}

/* Typography */
/* Typography */
.home-slider-main .title {
    font-size: 5.5rem;
    /* Increased size */
    font-weight: 900;
    /* Extra Bold / Black */
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
    letter-spacing: -1px;
    /* Tighter tracking for bold impact */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    /* Faux boldness */
}

.home-slider-main .sub-title {
    font-size: 1.35rem;
    /* Slightly larger */
    color: #f8f9fa;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 400;
    /* Bolder sub-title */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Stronger shadow */
}

@media (max-width: 768px) {
    .home-slider-main .title {
        font-size: 2.2rem;
    }

    .home-slider-main .sub-title {
        font-size: 1rem;
    }
}

/* Button Style - Blue Pill with Arrow */
.home-slider-main .btn-box {
    margin-top: 30px;
}

.home-slider-main .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00bcd4;
    /* Cyan/Blue tone closer to reference, or standard brand blue */
    background: linear-gradient(90deg, #17a2b8 0%, #0d6efd 100%);
    /* Blue gradient */
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.home-slider-main .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #0d6efd 0%, #17a2b8 100%);
}

.home-slider-main .theme-btn i {
    margin-left: 10px;
    font-size: 14px;
}

/* Navigation Arrows - Circular Glassy */
.home-slider-main .swiper-button-next,
.home-slider-main .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.home-slider-main .swiper-button-next:hover,
.home-slider-main .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Remove any unwanted pseudo-elements or borders */
.home-slider-main .swiper-button-next::before,
.home-slider-main .swiper-button-prev::before {
    content: none !important;
    display: none !important;
}

.home-slider-main .swiper-button-next,
.home-slider-main .swiper-button-prev {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.home-slider-main .swiper-button-next::after,
.home-slider-main .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination Dots */
.home-slider-main .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

.home-slider-main .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0d6efd;
    transform: scale(1.2);
}