/* Mobile Hero Slider Fixes */
@media only screen and (max-width: 767px) {
    /* Fix for consistent slider height on all mobile devices */
    .hero-slider-item.ptb-300 {
        min-height: 280px !important;
        height: 280px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    
    .hero-slider-item .container {
        width: 100%;
    }
    
    /* Ensure consistent content spacing */
    .hero-slider-content {
        padding: 15px 0;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-slider-content .top-title {
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-slider-content h1 {
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    /* Mobile Dark Mode drop shadow effect */
    .hero-slider-content.mobile-dark-mode .top-title,
    .hero-slider-content.mobile-dark-mode h1 {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            1px 1px 2px rgba(0, 0, 0, 0.9);
        color: #ffffff;
        font-weight: bold;
    }
}

/* Services Carousel Indicators Fix - Desktop and Tablet Only */
@media (min-width: 768px) {
    .single-services-section .single-services-details-content .carousel.slide.services-carousel .carousel-indicators,
    .single-services-section .carousel-indicators,
    .services-carousel .carousel-indicators,
    #serviceImageCarousel .carousel-indicators {
        transform: translateY(-20px) !important;
        bottom: auto !important;
        margin-bottom: -70px !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Alternative approach - add margin to H2 to create space */
    .single-services-section .single-services-details-content h2 {
        margin-top: 30px !important;
        position: relative !important;
        z-index: 2 !important;
    }
}