.sumeru-hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.sumeru-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.sumeru-hero-slide {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    box-sizing: border-box;
    overflow: hidden;
}

/* HTML Image Tag Native Responsiveness */
.sumeru-hero-picture {
    display: block;
    width: 100%;
    height: auto;
}

.sumeru-hero-slide-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Background Overlay over Image */
.sumeru-hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Absolutely Positioned Content Container Over Image */
.sumeru-hero-slide-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    pointer-events: none;
}

.sumeru-hero-slide-content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    pointer-events: auto;
}

/* Slide Elements Spacing & Layout */
.sumeru-hero-small-heading {
    display: block;
    margin-bottom: 1px;
}

.sumeru-hero-main-heading {
    margin: 0 0 1px 0;
    word-break: break-word;
    line-height: 1.25em;
    min-height: 1.25em;
}

.sumeru-hero-description {
    margin-bottom: 24px;
}

.sumeru-hero-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.sumeru-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    cursor: pointer;
    line-height: 1.2;
}

.sumeru-hero-btn .btn-icon-left {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

.sumeru-hero-btn .btn-icon-right {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
}

.sumeru-hero-btn .btn-icon-left svg,
.sumeru-hero-btn .btn-icon-right svg {
    height: 1em;
    width: auto;
    fill: currentColor;
    transition: fill 0.3s ease;
}

/* Navigation Custom Styling */
.sumeru-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    opacity: 0.7;
}

.sumeru-hero-arrow:hover {
    opacity: 1;
}

.sumeru-hero-arrow-prev {
    left: 20px;
}

.sumeru-hero-arrow-next {
    right: 20px;
}

.sumeru-hero-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Pagination Custom Styling */
.sumeru-hero-pagination {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sumeru-hero-pagination .swiper-pagination-bullet {
    transition: all 0.3s ease;
}

/* Animated Text Framework */
.sumeru-hero-slide [data-sumeru-animate] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Subtitle & Button Animations */
.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="fade-down"] {
    opacity: 1;
    transform: translateY(0);
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="fade-down"] {
    opacity: 0;
    transform: translateY(-30px);
}

.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="fade-left"] {
    opacity: 1;
    transform: translateX(0);
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
}

.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="fade-right"] {
    opacity: 1;
    transform: translateX(0);
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
}

.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="zoom"] {
    opacity: 1;
    transform: scale(1);
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="zoom"] {
    opacity: 0;
    transform: scale(0.8);
}

.sumeru-hero-slide.swiper-slide-active [data-sumeru-animate="fade"] {
    opacity: 1;
}

.sumeru-hero-slide:not(.swiper-slide-active) [data-sumeru-animate="fade"] {
    opacity: 0;
}

/* Typewriter Cursor Styling */
.sumeru-typewriter-cursor {
    display: inline-block;
    margin-left: 0;
    animation: sumeruBlink 0.75s step-end infinite;
}

@keyframes sumeruBlink {
    50% {
        opacity: 0;
    }
}

/* High Resolution & Mobile adjustments */
@media (max-width: 767px) {
    .sumeru-hero-arrow {
        /* display: none; */
        height: 42px !important;
        width: 42px !important;
        font-size: calc(42px * 0.4) !important;
        padding: 0 !important;
    }

    .sumeru-hero-slide-content-box {
        width: calc(100% - 30px);
    }
}