.slider-block {
    width: 100%;
    height: 500px;
    /*margin: 40px auto;*/
    position: relative;
    /*border-radius: 12px;*/
    overflow: hidden;
    background-color: #000;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
}

    .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #ffffff;
}

    .slide-content h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .slide-content p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0;
        opacity: 0.9;
    }

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    margin-bottom:10px;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 768px) {
    .slider-block {
        height: 350px;
    }

    .slide-content h3 {
        font-size: 1.55rem;
    }
}


/*fix fullwidth issues */
.full-width-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-top:-40px;
    z-index:-1;
}
/* fix action boxes overlap with slider pagination */
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 80px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

/* main carousel button */
/*.btn-slider {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2e3192;*/ /* Professional Blue */
    /*color: #ffffff !important;*/ /* Ensure text stays white */
    /*text-decoration: none;
    border-radius: 50px;*/ /* Rounded pill shape */
    /*font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #2e3192;
}

    .btn-slider:hover {
        background-color: transparent;
        color: var() !important;
        text-decoration: none;
    }

:root {
    --btn-color: #3544b1;*/ /* Your brand primary */
    /*--btn-text: #ffffff;
}*/
    /* Smart version */
/* 1. Base Button Styles (Common to all) */
.btn-slider {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth transition */
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

    /* 2. Solid Button + Hover */
    .btn-slider.btn-solid {
        background-color: #3544b1;
        color: #ffffff !important;
        border-color: #3544b1;
    }

        .btn-slider.btn-solid:hover {
            background-color: #232e75;
            border-color: #232e75;
            transform: translateY(-3px); /* Lifts the button up */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

    /* 3. Outline Button + Hover */
    .btn-slider.btn-outline {
        background-color: transparent;
        color: #3544b1 !important;
        border-color: #3544b1;
    }

        .btn-slider.btn-outline:hover {
            background-color: #3544b1;
            color: #ffffff !important;
            transform: translateY(-3px);
        }

    /* 4. Ghost Button + Hover */
    .btn-slider.btn-ghost {
        background-color: rgba(53, 68, 177, 0.05); /* Very light tint */
        color: #3544b1 !important;
    }

        .btn-slider.btn-ghost:hover {
            background-color: rgba(53, 68, 177, 0.15); /* Darkens slightly */
            color: #232e75 !important;
            text-decoration: underline; /* Standard for ghost buttons */
        }

    /* Active State (When clicked) */
    .btn-slider:active {
        transform: translateY(-1px); /* Pushes it back down slightly */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.btn-slider-custom {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid;
    transition: all 0.3s ease;
}

    /* This works on ANY background color picked in Umbraco */
    .btn-slider-custom:hover {
        filter: brightness(85%); /* Slightly darkens the custom color */
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-decoration: none;
    }

/*.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,112px))!important;
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,12px))!important;
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}*/
.swiper-pagination-bullet {
   width:15px!important;
   height:15px!important;
}
.swiper-pagination-bullet-active {
    width: 15px !important;
    height: 15px !important;
}