/* ST Slider Styles */
.st-slider-wrapper {
    width: 100%;
    max-width: 100%;
}

.st-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background-color: #fff;
    height: 600px; /* Default height for desktop */
    width: 100%;
    perspective: 1300px;
}

.st-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.st-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    pointer-events: none;
}

.st-slide.st-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: all;
}

.st-slide.st-exit {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.st-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.15); /* Start slightly zoomed in (reduced from 1.3 for subtlety) */
    transition: transform 15s ease-out; /* Much longer transition for smoother zoom effect */
    /* Ensure image maintains aspect ratio on all screen sizes */
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: none; /* Reset any animation */
}

.st-slide.st-active .st-slide-bg {
    transform: scale(1); /* Zoom out to normal scale */
    animation: zoomOutBg 15s cubic-bezier(0.1, 0.1, 0.25, 1) forwards; /* Slower animation with custom easing */
}

/* Background zoom animation */
@keyframes zoomOutBg {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.st-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0;
    color: white;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.3s;
    width: 100%;
}

.st-content-container {
    max-width: 1500px !important;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}

.st-slide.st-active .st-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.st-slide-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.st-slide-content h2, .st-slide-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    color: white !important;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.5s;
    max-width: 800px;
    line-height: 1.2 !important;
}

.st-slide.st-active .st-slide-content h2,
.st-slide.st-active .st-slide-content .st-slide-title {
    transform: translateY(0);
    opacity: 1;
}

.st-style2 .st-slide.st-active .st-slide-content {
    opacity: 1;
}

.st-style2 .st-slide.st-active .st-slide-title {
    transform: translateY(0);
    opacity: 1;
}

.st-style2 .st-slide.st-active .st-slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.st-style2 .st-slide.st-active .st-slide-btn {
    transform: translateY(0);
    opacity: 1;
}

.st-slide-content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.7s;
}

.st-slide.st-active .st-slide-content p {
    transform: translateY(0);
    opacity: 1;
}

.st-slide-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #111;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, background-color 0.3s ease;
    transition-delay: 0.9s;
}

.st-slide.st-active .st-slide-btn {
    transform: translateY(0);
    opacity: 1;
}

.st-slide-btn:hover {
    background-color: #E3A72F;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Navigation Buttons */
.st-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.st-slider-btn:hover {
    opacity: 1;
    color: #E3A72F;
    transform: translateY(-50%) scale(1.1);
}

.st-prev-btn {
    left: 20px;
}

.st-next-btn {
    right: 20px;
}

/* Add a subtle hover effect to show which direction user can navigate */
.st-prev-btn:hover i {
    transform: translateX(-3px);
}

.st-next-btn:hover i {
    transform: translateX(3px);
}

/* Reduce the width of Style 1 navigation arrows */
.st-style1 .st-next-btn,
.st-style1 .st-prev-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.st-slider-btn i {
    transition: transform 0.3s ease;
}

/* Progress Bar */
.st-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    z-index: 10;
}

.st-progress-bar {
    height: 100%;
    width: 0;
    background: #0046BE;
    transition: width 0.1s linear;
}

/* Indicators */
.st-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 20;
}

.st-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid transparent;
}

.st-indicator:hover {
    transform: scale(1.2);
}

.st-indicator.st-active {
    background-color: #0046BE;
    transform: scale(1.2);
}

.st-indicator::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.st-indicator.st-active::after {
    border-color: rgba(0, 70, 190, 0.3);
}

/* Responsive adjustments */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
    .st-slider-container {
        height: 550px;
    }

    .st-slide-content {
        padding: 50px 0;
    }

    .st-content-container {
        padding: 0 50px;
    }

    .st-slide-content h2,
    .st-slide-content .st-slide-title {
        font-size: 38px;
        max-width: 700px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
    .st-slider-container {
        height: 500px;
    }

    .st-slide-content {
        padding: 45px 0;
    }

    .st-content-container {
        padding: 0 60px;
    }

    .st-slide-content h2,
    .st-slide-content .st-slide-title {
        font-size: 34px;
        margin-bottom: 12px;
        max-width: 600px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }

    .st-slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .st-slider-btn {
        width: 45px;
        height: 45px;
        /* Move buttons slightly away from content */
        background-color: transparent;
    }
    
    .st-prev-btn {
        left: 15px;
    }
    
    .st-next-btn {
        right: 15px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    .st-slider-container {
        height: 450px;
    }

    .st-slide-content {
        padding: 35px 0;
    }

    .st-content-container {
        /* Increase padding to prevent text from getting too close to arrows */
        padding: 0 50px;
    }

    .st-slide-content h2,
    .st-slide-content .st-slide-title {
        font-size: 28px;
        margin-bottom: 10px;
        max-width: 500px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }

    .st-slide-content p {
        font-size: 16px;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .st-slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .st-slider-btn {
        /* Make buttons smaller and more transparent on mobile */
        width: 38px;
        height: 38px;
        font-size: 14px;
        opacity: 0.6;
        /* Move buttons to edges */
        background-color: transparent;
    }

    .st-prev-btn {
        left: 10px;
    }

    .st-next-btn {
        right: 10px;
    }
    
    /* Improve background image positioning for mobile */
    .st-slide-bg {
        background-position: center center;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .st-slider-container {
        height: 400px;
    }

    .st-slide-content {
        padding: 30px 0;
    }

    .st-content-container {
        /* Increase horizontal padding to prevent text from getting too close to arrows */
        padding: 0 45px;
    }

    .st-slide-tag {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }

    .st-slide-content h2,
    .st-slide-content .st-slide-title {
        font-size: 24px;
        margin-bottom: 10px;
        max-width: 100%;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }

    .st-slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .st-slide-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .st-slider-btn {
        /* Position the buttons at the edges and make them smaller */
        width: 34px;
        height: 34px;
        font-size: 12px;
        opacity: 0.6;
        top: 50%;
    }
    
    .st-prev-btn {
        left: 8px;
    }
    
    .st-next-btn {
        right: 8px;
    }

    .st-slider-progress {
        height: 3px;
    }

    .st-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .st-indicator {
        width: 8px;
        height: 8px;
    }
    
    /* Optimize background image for mobile */
    .st-slide-bg {
        background-position: center center;
    }
}

/* Very small devices (small phones, less than 400px) */
@media (max-width: 399px) {
    .st-slider-container {
        height: 350px;
    }

    .st-slide-content {
        padding: 30px 0;
    }

    .st-slide-tag {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 6px;
    }

    .st-slide-content h2,
    .st-slide-content .st-slide-title {
        font-size: 20px;
        margin-bottom: 8px;
        max-width: 100%;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }

    .st-slide-content p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .st-slide-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .st-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
        opacity: 0.8;
    }
}

/* Style 1 - Alternative Slider Design */

/* Main wrapper styles */
.st-style1 .st-slider-container {
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Content positioning and styling */
.st-style1 .st-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
        rgba(0, 10, 50, 0.98) 0%,
        rgba(0, 15, 70, 0.9) 10%,
        rgba(0, 20, 90, 0.8) 20%,
        rgba(0, 30, 110, 0.6) 30%,
        rgba(0, 40, 130, 0.4) 40%,
        rgba(0, 50, 150, 0.2) 50%,
        rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.st-style1 .st-slide-content {
    background: transparent;
    padding: 80px 0 50px;
    z-index: 2;
}

/* Title styling */
.st-style2 .st-slide-title {
    font-size: 40px;
    font-weight: 700 !important;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    color: white !important;
    margin-bottom: 20px;
    line-height: 1.1 !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.st-style1 .st-slide-title {
    font-size: 44px;
    font-weight: 900 !important;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #E3A72F;
    padding-left: 20px;
    line-height: 1.1 !important;
    max-width: 700px;
}

/* Tag styling */
.st-style1 .st-slide-tag {
    background: linear-gradient(135deg, #0046BE, #00A1FF);
    color: #fff;
    font-weight: 600;
    font-size: 10px !important;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 5px 14px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.st-style1 .st-slide-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.st-style1 .st-slide-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 70, 190, 0.4);
}

.st-style1 .st-slide-tag:hover::before {
    transform: translateY(0);
}

/* Button styling */
.st-style1 .st-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E3A72F;
    color: #000;
    border-radius: 30px;
    font-size: 11px !important;
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 70, 190, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.st-style1 .st-slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.st-style1 .st-slide-btn .fa-arrow-right {
    margin-left: 10px;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.st-style1 .st-slide-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 70, 190, 0.5);
}

.st-style1 .st-slide-btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.st-style1 .st-slide-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* Navigation buttons */
.st-style1 .st-slider-btn.st-style1-btn {
    background-color: rgba(227, 167, 47, 0.85);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 0;
    opacity: 0.9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-style1 .st-slider-btn.st-style1-btn:hover {
    background-color: #E3A72F;
    color: #000;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Style 1 indicators */
.st-style1 .st-indicators {
    bottom: 25px;
}

.st-style1 .st-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 2px;
    position: relative;
    overflow: hidden;
}

.st-style1 .st-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0046BE, #00A1FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.st-style1 .st-indicator:hover {
    transform: scale(1.3);
}

.st-style1 .st-indicator:hover::before {
    opacity: 0.7;
}

.st-style1 .st-indicator.st-active {
    width: 25px;
    border-radius: 5px;
    background-color: transparent;
    transform: scale(1);
}

.st-style1 .st-indicator.st-active::before {
    opacity: 1;
}

.st-style1 .st-indicator.st-active::after {
    border-color: transparent;
    box-shadow: 0 0 10px rgba(0, 70, 190, 0.5);
}

/* Style 1 navigation arrows */
.st-style1 .st-prev-btn,
.st-style1 .st-next-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 30, 100, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.7;
}

.st-style1 .st-prev-btn {
    left: 15px;
    border-radius: 50%;
    transform: translateX(-10px);
}

.st-style1 .st-next-btn {
    right: 15px;
    border-radius: 50%;
    transform: translateX(10px);
}

.st-style1 .st-prev-btn:hover,
.st-style1 .st-next-btn:hover {
    background: linear-gradient(135deg, #0046BE, #00A1FF);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 70, 190, 0.4);
    transform: translateX(0);
}

.st-style1 .st-slider-btn i {
    font-size: 20px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.st-style1 .st-prev-btn:hover i {
    transform: translateX(-3px) scale(1.1);
}

.st-style1 .st-next-btn:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Hide navigation arrows on tablets and mobile devices */
@media (max-width: 991px) {
    .st-slider-btn,
    .st-style1 .st-slider-btn.st-style1-btn {
        display: none;
    }
}

/* Indicators/dots positioned at the bottom */
.st-style1 .st-indicators-bottom {
    bottom: 20px;
    top: auto;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: inline-flex;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.st-style1 .st-indicator {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.st-style1 .st-indicator.st-active {
    background-color: #E3A72F;
    transform: none;
    box-shadow: 0 0 8px rgba(227, 167, 47, 0.6);
}

.st-style1 .st-indicator:hover {
    background-color: rgba(227, 167, 47, 0.7);
    transform: scaleY(1.2);
    box-shadow: 0 0 5px rgba(227, 167, 47, 0.4);
}

/* Progress bar at top */
.st-style1 .st-progress-top {
    bottom: 0;
    top: auto;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
}

.st-style1 .st-progress-bar {
    background: linear-gradient(to right, #E3A72F, #F5C462);
    box-shadow: 0 1px 5px rgba(227, 167, 47, 0.5);
    transition: width 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Style 4 - Modern Swiper Slider Design */

/* Main wrapper styles */
.st-style4 .st-slider-container {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Slide background and overlay */
.st-style4 .st-slide-bg {
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease-in-out;
    will-change: transform;
}

.st-style4 .st-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.85) 0%,
        rgba(44, 62, 80, 0.6) 50%,
        rgba(44, 62, 80, 0.4) 100%);
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.8s ease;
}

.st-style4 .swiper-slide-active .st-slide-bg {
    transform: scale(1.05);
}

.st-style4 .swiper-slide-active::before {
    opacity: 0.7;
}

/* Content positioning and styling */
.st-style4 .st-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    z-index: 2;
}

.st-style4 .st-content-container {
    max-width: 1000px;
    width: 85%;
    padding: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.2s;
}

.st-style4 .swiper-slide-active .st-content-container {
    transform: translateY(0);
    opacity: 1;
}

/* Tag styling */
.st-style4 .st-slide-tag {
    display: inline-block;
    background-color: #3498DB;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Title styling */
.st-style4 .st-slide-title {
    font-size: 48px;
    font-weight: 700 !important;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif !important;
    color: white !important;
    margin-bottom: 20px;
    line-height: 1.2 !important;
    letter-spacing: -0.5px;
    max-width: 800px;
}

/* Description styling */
.st-style4 .st-slide-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
}

/* Button styling */
.st-style4 .st-slide-btn {
    display: inline-flex;
    align-items: center;
    background-color: #3498DB;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
}

.st-style4 .st-slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s ease;
}

.st-style4 .st-slide-btn:hover {
    background-color: #2980B9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
}

.st-style4 .st-slide-btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.st-style4 .st-slide-btn .st-btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.st-style4 .st-slide-btn:hover .st-btn-icon {
    transform: translateX(5px);
}

/* Navigation buttons */
.st-style4 .st-navigation-container {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.st-style4 .st-slider-btn.st-style4-btn {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-style4 .st-slider-btn.st-style4-btn:hover {
    background-color: #3498DB;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.st-style4 .st-slider-btn.st-style4-btn svg {
    transition: transform 0.3s ease;
}

.st-style4 .st-prev-btn:hover svg {
    transform: translateX(-3px);
}

.st-style4 .st-next-btn:hover svg {
    transform: translateX(3px);
}

/* Pagination container */
.st-style4 .st-pagination-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Swiper pagination bullets */
.st-style4 .swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    margin-right: 20px;
}

.st-style4 .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 1.5px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.st-style4 .swiper-pagination-bullet-active {
    background-color: #3498DB;
    width: 50px;
}

/* Fraction pagination */
.st-style4 .st-fraction-pagination {
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.st-style4 .st-fraction-pagination .st-current {
    color: #3498DB;
    font-size: 24px;
    margin-right: 5px;
}

.st-style4 .st-fraction-pagination .st-separator {
    margin: 0 5px;
    opacity: 0.7;
}

.st-style4 .st-fraction-pagination .st-total {
    opacity: 0.7;
}

/* Progress bar at bottom */
.st-style4 .st-progress-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.st-style4 .st-progress-bar {
    background: linear-gradient(to right, #3498DB, #2980B9);
    height: 100%;
    width: 0;
    transition: width 0.1s linear;
}

/* Responsive styles */
@media (max-width: 991px) {
    .st-style4 .st-slide-title {
        font-size: 36px;
    }
    
    .st-style4 .st-slide-description {
        font-size: 16px;
    }
    
    .st-style4 .st-navigation-container {
        bottom: 20px;
        right: 20px;
    }
    
    .st-style4 .st-pagination-container {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .st-style4 .st-slide-title {
        font-size: 28px;
    }
    
    .st-style4 .st-content-container {
        padding: 20px;
    }
    
    .st-style4 .st-slider-btn.st-style4-btn {
        width: 40px;
        height: 40px;
    }
    
    .st-style4 .st-navigation-container {
        bottom: 15px;
        right: 15px;
    }
    
    .st-style4 .st-pagination-container {
        bottom: 15px;
        left: 15px;
    }
    
    .st-style4 .swiper-pagination-bullet {
        width: 20px;
    }
    
    .st-style4 .swiper-pagination-bullet-active {
        width: 35px;
    }
}

/* Style 2 - UCT Style Slider Design */

/* Main wrapper styles */
.st-style2 .st-slider-container {
    overflow: hidden;
    position: relative;
    height: 600px;
}

/* Pattern overlay */
.st-style2-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none" /></svg>');
    background-size: 100px 100px;
    opacity: 0.4;
    z-index: 3;
    pointer-events: none;
}

/* Content positioning and styling */
.st-style2 .st-slide-content {
    background: linear-gradient(to right,
        rgba(0, 30, 60, 0.9) 0%,
        rgba(0, 30, 60, 0.7) 50%,
        rgba(0, 30, 60, 0.2) 100%);
    padding: 60px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Tag styling */
.st-style2 .st-slide-tag {
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Button styling */
.st-style2 .st-slide-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0.7s;
}

.st-style2 .st-slide-btn:hover {
    background-color: #007acc;
    color: #fff;
}

/* Pagination counter (3/6 style) */
.st-style2-pagination {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    z-index: 10;
}

/* Navigation buttons */
.st-style2 .st-slider-btn.st-style2-btn {
    background-color: transparent;
    color: #fff;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-style2 .st-slider-btn.st-style2-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    opacity: 1;
}

.st-style2 .st-prev-btn {
    left: 20px;
}

.st-style2 .st-next-btn {
    right: 20px;
}

/* Hide indicators for style2 as per UCT design */
.st-style2 .st-indicators {
    display: none; /* Hide dots as they're not in the UCT design */
}

/* Progress bar */
.st-style2 .st-slider-progress {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
}

.st-style2 .st-progress-bar {
    background: #0099ff;
}

/* Responsive adjustments for Style 2 */
@media (max-width: 991px) {
    .st-style2 .st-content-container {
    max-width: 600px;
    padding-left: 80px;
    position: relative;
    z-index: 10;
}

.st-style2 .st-slide-content p {
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.5s;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
    
    .st-style2 .st-slide-title {
        font-size: 32px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .st-style2-pagination {
        left: 15px;
        padding: 8px 12px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .st-style2 .st-content-container {
        max-width: 90%;
        padding-left: 40px;
    }
    
    .st-style2 .st-slide-title {
        font-size: 28px;
        margin-bottom: 15px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .st-style2 .st-slide-content {
        background: linear-gradient(to right,
            rgba(0, 30, 60, 0.9) 0%,
            rgba(0, 30, 60, 0.7) 50%,
            rgba(0, 30, 60, 0.2) 100%);
        padding: 50px 0;
    }
    
    .st-style2-pagination {
        bottom: 15px;
        left: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .st-style2 .st-slider-btn.st-style2-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575px) {
    .st-style2 .st-content-container {
        max-width: 95%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .st-style2 .st-slide-title {
        font-size: 24px;
        margin-bottom: 10px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .st-style2 .st-slide-tag {
        font-size: 12px;
    }
    
    .st-style2 .st-slide-content {
        padding: 40px 0;
        background: linear-gradient(to right,
            rgba(0, 30, 60, 0.9) 0%,
            rgba(0, 30, 60, 0.7) 50%,
            rgba(0, 30, 60, 0.2) 100%);
    }
    
    .st-style2 .st-slide-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .st-style2 .st-slider-progress {
        height: 3px;
    }
}

/* Responsive adjustments for Style 1 */
@media (max-width: 991px) {
    .st-style1 .st-slide-title {
        font-size: 36px;
        padding-left: 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .st-style1 .st-slide-content {
        padding: 70px 20px 40px;
        background: transparent;
    }
    
    .st-style1 .st-content-container {
        width: 100%;
        padding: 0 15px;
    }
    
    .st-style1 .st-slide-content p {
        font-size: 18px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .st-style1 .st-slide-title {
        font-size: 25px !important;
        padding-left: 12px;
        max-width: 95%;
        border-left-width: 4px;
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    .st-style1 .st-slide-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .st-style1 .st-slide-content {
        padding: 60px 15px 40px;
        background: transparent;
    }
    
    .st-style1 .st-slide::before {
        background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 15%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 90%,
            rgba(0, 0, 0, 0) 100%);
    }
    
    .st-style1 .st-slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .st-style1 .st-indicators-bottom {
        bottom: 15px;
    }
}

@media (max-width: 575px) {
    .st-style1 .st-slide-title {
        font-size: 22px;
        padding-left: 10px;
        border-left-width: 3px;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .st-style1 .st-slide-content {
        padding: 50px 10px 30px;
    }
    
    .st-style1 .st-indicator {
        width: 20px;
        height: 3px;
        margin: 0 3px;
    }
    
    .st-style1 .st-indicators-bottom {
        bottom: 10px;
    }
    
    .st-style1 .st-slide-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .st-style1 .st-slide-tag {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    
    .st-style1 .st-slide-content p {
        font-size: 13px !important;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}
