.slide-title.title-size-xlarge {
    font-family: 'Mukta Mahee', sans-serif;
    font-size: 120px;
    font-weight: 100;
    font-style: normal;
}

/* Hero Slider Block Styles */
.hero-slider-block {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Height Settings */
.height-small {
    height: 60vh;
    min-height: 400px;
}

.height-medium {
    height: 80vh;
    min-height: 500px;
}

.slide > img {
    height: 80vh !important;
		}

.height-large {
    height: 88vh;
    min-height: 600px;
}

.height-fullscreen {
    height: 100vh;
    min-height: 400px;
}

/* Slider Container */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider Track */
.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-speed, 600ms) ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.video-background iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 40px;
    box-sizing: border-box;
}

/* Content Width */
.content-width-narrow .content-wrapper {
    max-width: 60%;
}

.content-width-medium .content-wrapper {
    max-width: 80%;
}

.content-width-wide .content-wrapper {
    max-width: 90%;
}

.content-width-full .content-wrapper {
    max-width: 100%;
}

.content-wrapper {
    width: 100%;
}

/* Text Alignment */
.text-align-left .content-wrapper {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.text-align-center .content-wrapper {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-align-right .content-wrapper {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

/* Title Sizes */
.title-size-small .slide-title {
    font-size: 2.5rem;
}

.title-size-medium .slide-title {
    font-size: 3rem;
}

.title-size-large .slide-title {
    font-size: 3.5rem;
}

.title-size-xlarge .slide-title {
    font-size: 4rem;
}

/* Slide Title */
.slide-title {
    font-family: "Mukta Mahee", sans-serif !important;
    font-weight: 700;
    line-height: 0.9;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Subtitle Sizes */
.subtitle-size-small .slide-subtitle {
    font-size: 1.1rem;
}

.subtitle-size-medium .slide-subtitle {
    font-size: 1.3rem;
}

.subtitle-size-large .slide-subtitle {
    font-size: 3.5rem;
}

/* Slide Subtitle */
.slide-subtitle {
    font-family: "Charm", Arial, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-subtitle p {
    margin: 0;
}

/* Slide Button */
.slide-button-container {
    margin-top: 30px;
}

.slide-button {
    display: inline-block;
    padding: 2px 4px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

/* Button Styles */
.button-primary {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.button-primary:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-2px);
}

.button-secondary {
    background: #ffffff;
    color: #333333;
    border-color: #ffffff;
}

.button-secondary:hover {
    background: #f8f8f8;
    border-color: #f8f8f8;
    transform: translateY(-2px);
}

.button-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.button-outline:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.button-custom {
    /* Styles applied via inline CSS */
}

.button-custom:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #ffffff;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #007cba;
    transform: scale(1.1);
}

/* Accessibility */
.slider-arrow:focus,
.slider-dot:focus,
.slide-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
    
    .slider-arrow,
    .slider-dot,
    .slide-button {
        transition: none;
    }
}

/* Plugin Responsive Media Queries */
@media (max-width: 1540px) {
    .slide-title.title-size-xlarge {
        font-size: 100px;
    }
}

@media (max-width: 1440px) {
    .slide-title.title-size-xlarge {
        font-size: 90px;
    }
}

@media (max-width: 1200px) {
    .slide-title.title-size-xlarge {
        font-size: 80px;
    }
    
    .slide-subtitle {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .slide-title.title-size-xlarge {
        font-size: 70px;
    }
    
    .slide-subtitle {
        font-size: 38px;
    }
    
    .slide-content {
        padding: 35px;
    }
    
    .title-size-small .slide-title { font-size: 2.3rem; }
    .title-size-medium .slide-title { font-size: 2.6rem; }
    .title-size-large .slide-title { font-size: 3.2rem; }
    .title-size-xlarge .slide-title { font-size: 3.8rem; }
    
    .subtitle-size-small .slide-subtitle { font-size: 1.05rem; }
    .subtitle-size-medium .slide-subtitle { font-size: 1.25rem; }
    .subtitle-size-large .slide-subtitle { font-size: 1.4rem; }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .slide-title.title-size-xlarge {
        font-size: 50px;
    }
    
    .slide-subtitle {
        font-size: 32px;
    }
    
    /* FIXED: height-medium adjusted to ~30vh */
    .height-small {
        height: 40vh;
        min-height: 300px;
    }
    
    .height-medium {
        height: 30vh;
        min-height: 250px;
    }
    
    .height-large {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content {
        padding: 25px;
    }
    
    .content-width-narrow .content-wrapper,
    .content-width-medium .content-wrapper,
    .content-width-wide .content-wrapper {
        max-width: 95%;
    }
    
    .title-size-small .slide-title { font-size: 2.1rem; }
    .title-size-medium .slide-title { font-size: 2.3rem; }
    .title-size-large .slide-title { font-size: 2.7rem; }
    .title-size-xlarge .slide-title { font-size: 3.2rem; }
    
    .subtitle-size-small .slide-subtitle { font-size: 0.95rem; }
    .subtitle-size-medium .slide-subtitle { font-size: 1.1rem; }
    .subtitle-size-large .slide-subtitle { font-size: 1.25rem; }
    
    .slide-title {
        margin-bottom: 18px;
    }
    
    .slide-subtitle {
        margin-bottom: 28px;
    }
    
    .slide-button {
        padding: 2px 4px;
        font-size: 1.05rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 640px) {
    .slide-title.title-size-xlarge {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 28px;
    }
    
    .height-small {
        height: 35vh;
        min-height: 250px;
    }
    
    .height-medium {
        height: 28vh;
        min-height: 200px;
    }
    
    .height-large {
        height: 45vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .slide-title.title-size-xlarge {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 24px;
    }
    
    .height-small {
        height: 30vh;
        min-height: 200px;
    }
    
    .height-medium {
        height: 25vh;
        min-height: 180px;
    }
    
    .height-large {
        height: 40vh;
        min-height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .title-size-small .slide-title { font-size: 1.9rem; }
    .title-size-medium .slide-title { font-size: 2.1rem; }
    .title-size-large .slide-title { font-size: 2.4rem; }
    .title-size-xlarge .slide-title { font-size: 2.6rem; }
    
    .subtitle-size-small .slide-subtitle { font-size: 0.85rem; }
    .subtitle-size-medium .slide-subtitle { font-size: 0.95rem; }
    .subtitle-size-large .slide-subtitle { font-size: 1.05rem; }
    
    .slide-title {
        margin-bottom: 15px;
    }
    
    .slide-subtitle {
        margin-bottom: 25px;
    }
    
    .slide-button {
        padding: 2px 4px;
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow svg {
        width: 14px;
        height: 14px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 375px) {
    .slide-title.title-size-xlarge {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 20px;
    }
    
    .title-size-small .slide-title { font-size: 1.7rem; }
    .title-size-medium .slide-title { font-size: 1.9rem; }
    .title-size-large .slide-title { font-size: 2.1rem; }
    .title-size-xlarge .slide-title { font-size: 2.3rem; }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow svg {
        width: 12px;
        height: 12px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 5px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 320px) {
    .slide-title.title-size-xlarge {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slide-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .height-small {
        height: 60vh;
        min-height: 250px;
    }
    
    .height-medium {
        height: 50vh;
        min-height: 200px;
    }
    
    .height-large {
        height: 70vh;
        min-height: 300px;
    }
    
    .height-fullscreen {
        height: 100vh;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-title.title-size-xlarge {
        font-size: 40px;
    }
    
    .slide-subtitle {
        font-size: 24px;
    }
}