/* Custom styles for carousel */
.owl-carousel.home-slider .slider-item {
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    min-height: 600px;
    height: 90vh;
    position: relative;
    background-color: transparent !important;
    /* Changed to transparent */
    /* Add padding to sides and ensure content is centered */
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove overlay completely */
.slider-item .overlay {
    display: none !important;
}

/* Container refinement to ensure z-index */
.slider-item .container {
    height: 100%;
    position: relative;
    z-index: 2;

    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
}

/* Adjust the text container - improved clarity and premium feel */
.slider-text {
    width: 100%;
    color: #fff;
}

.slider-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

.slider-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 30px;
}

/* Button Refinement */
.slider-text .btn-primary {
    background-color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.slider-text .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .slider-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .owl-carousel.home-slider .slider-item {
        height: 70vh;
        min-height: 350px;
        padding: 0;
    }

    .slider-text h1 {
        font-size: 32px;
    }

    .slider-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .owl-carousel.home-slider .slider-item {
        height: 50vh;
        min-height: 250px;
        padding: 0;
    }

    .slider-text h1 {
        font-size: 28px;
    }

    .slider-text {
        text-align: center;
    }

    .slider-text p {
        margin-left: auto;
        margin-right: auto;
    }
}