.elementor-95 .elementor-element.elementor-element-074599c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-95 .elementor-element.elementor-element-7937255{--e-image-carousel-slides-to-show:1;}.elementor-95 .elementor-element.elementor-element-945b6a9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-95 .elementor-element.elementor-element-69490da{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-95 .elementor-element.elementor-element-5f3af3b{width:100%;max-width:100%;}.elementor-95 .elementor-element.elementor-element-e8682a1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-95 .elementor-element.elementor-element-b0fa6be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-95 .elementor-element.elementor-element-945b6a9{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-95 .elementor-element.elementor-element-4b2557e{--e-image-carousel-slides-to-show:1;width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-95 .elementor-element.elementor-element-074599c{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-074599c *//**
 * A2 Cricket - Hero Carousel Styles
 * Add to Appearance → Customize → Additional CSS
 */

/* ============================================
   HERO CAROUSEL CONTAINER
   ============================================ */

.a2-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.a2-carousel-track {
    position: relative;
    width: 100%;
}

/* ============================================
   SLIDES
   ============================================ */

.a2-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.a2-carousel-slide:first-child {
    position: relative; /* First slide sets the height */
}

.a2-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Link */
.a2-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Slide Image */
.a2-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Desktop: Fixed height for consistency */
@media (min-width: 1025px) {
    .a2-carousel-slide img {
        height: 600px;
        object-fit: cover;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
    .a2-carousel-slide img {
        height: 500px;
        object-fit: cover;
    }
}

/* Mobile: Let it be natural height for vertical banners */
@media (max-width: 600px) {
    .a2-carousel-slide img {
        height: auto;
        max-height: 80vh;
        object-fit: contain;
    }
}


/* ============================================
   NAVIGATION ARROWS
   ============================================ */

.a2-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.a2-hero-carousel:hover .a2-carousel-arrow {
    opacity: 1;
}

.a2-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.a2-arrow-prev {
    left: 20px;
}

.a2-arrow-next {
    right: 20px;
}

/* Mobile: Smaller arrows, always visible */
@media (max-width: 768px) {
    .a2-carousel-arrow {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }
    
    .a2-arrow-prev {
        left: 10px;
    }
    
    .a2-arrow-next {
        right: 10px;
    }
}


/* ============================================
   NAVIGATION DOTS
   ============================================ */

.a2-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.a2-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.a2-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.a2-carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Mobile */
@media (max-width: 600px) {
    .a2-carousel-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .a2-carousel-dot {
        width: 10px;
        height: 10px;
    }
}


/* ============================================
   PROGRESS BAR (Optional)
   ============================================ */

.a2-carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.a2-carousel-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width linear;
}

.a2-hero-carousel[data-autoplay="true"] .a2-carousel-progress-bar {
    animation: progressBar var(--carousel-speed, 5s) linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}


/* ============================================
   SLIDE TRANSITIONS - ALTERNATIVE EFFECTS
   ============================================ */

/* Fade (Default - already applied above) */

/* Slide Effect - Add class "a2-slide-effect" to carousel */
.a2-slide-effect .a2-carousel-slide {
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.6s ease;
}

.a2-slide-effect .a2-carousel-slide.active {
    transform: translateX(0);
}

.a2-slide-effect .a2-carousel-slide.prev {
    transform: translateX(-100%);
}

/* Zoom Effect - Add class "a2-zoom-effect" to carousel */
.a2-zoom-effect .a2-carousel-slide {
    transform: scale(1.1);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.a2-zoom-effect .a2-carousel-slide.active {
    transform: scale(1);
    opacity: 1;
}


/* ============================================
   PLACEHOLDER STATE
   ============================================ */

.a2-hero-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 20px;
    text-align: center;
    color: #666;
}

.a2-hero-placeholder p {
    margin: 0;
    font-size: 16px;
}

.a2-hero-placeholder strong {
    color: #fff;
}


/* ============================================
   LOADING STATE
   ============================================ */

.a2-hero-carousel.loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a2-hero-carousel.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ============================================
   TOUCH/SWIPE INDICATOR (Mobile)
   ============================================ */

@media (max-width: 768px) {
    .a2-hero-carousel {
        cursor: grab;
    }
    
    .a2-hero-carousel:active {
        cursor: grabbing;
    }
}/* End custom CSS */