.Slider-hero-section{
    --bg-color: #eee;
    --text-teal: #662483;
    --text-gray: #8fa0ba;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-color);
    color: white;
    overflow-x: hidden;
}

/* =========================================
    Main Hero Section
========================================= */
.Slider-hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* --- Decorative Airplanes & Animation --- */
@keyframes floatPlane {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.Slider-hero-section .decor-plane {
    position: absolute;
    pointer-events: none;
    animation: floatPlane 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
}

/* Bottom-left plane placement */
.Slider-hero-section .plane-down {
    bottom: 12%;
    left: 36%;
    width: 150px;
    z-index: 5;
}

/* Center-right plane placement over images */
.Slider-hero-section .plane-up {
    bottom: 28%;
    right: 4%;
    width: 140px;
    z-index: 50; 
    animation-delay: 1.5s; /* Offset floating time */
}

/* =========================================
    Left Content
========================================= */
.Slider-hero-section .content-left {
    width: 45%;
    padding-left: 8%;
    z-index: 10;
}

.Slider-hero-section .subtitle {
    color: var(--text-teal);
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.Slider-hero-section .subtitle i {
    color: #222;
    font-size: 10px;
    margin: 0 5px;
}

.Slider-hero-section .main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5.3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222;
}

.Slider-hero-section .main-title span {
    color: var(--text-teal);
    text-transform: none;
}

.Slider-hero-section .desc {
    color: #222;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
}

/* Custom Button */
.Slider-hero-section .btn-tour {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #222;
    border-radius: 50px;
    padding: 6px 6px 6px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #662483;
}

.Slider-hero-section .btn-tour:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: #662483;
    text-decoration: none;
}

.Slider-hero-section .btn-tour span.text {
    margin-right: 20px;
}

.Slider-hero-section .btn-tour span.icon {
    background-color: #662483;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* =========================================
    Right Sliders (Desktop)
========================================= */
.Slider-hero-section .sliders-right {
    width: 55%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding-right: 4%;
    transform: scale(1.02);
}

/* Standard track styling */
.Slider-hero-section .col-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Column widths to match Figma (middle is wider) */
.Slider-hero-section .col-1, .Slider-hero-section .col-3 {
    width: 250px;
    flex: unset;
    max-width: unset;
}
.Slider-hero-section .col-2 {
    width: 290px; /* Middle column is slightly wider */
    flex: unset;
    max-width: unset;
}

/* Standard Image Box - Reduced circular effect */
.Slider-hero-section .img-box {
    width: 100%;
    height: 380px; 
    border-radius: 90px; /* Adjusted to look more like Figma shapes */
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    cursor: pointer;
}

/* Middle Column Images - Taller and distinct */
.Slider-hero-section .col-2 .img-box {
    height: 440px; 
    border-radius: 110px;
}

.Slider-hero-section .img-box:hover {
    filter: brightness(1.1);
}

/* Scrolling Animations */
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.Slider-hero-section .track-up { animation: scrollUp 55s linear infinite; }   
.Slider-hero-section .track-down { animation: scrollUp 40s linear infinite; }     
.Slider-hero-section .track-up-fast { animation: scrollUp 55s linear infinite; }

/* Pause animation on hover */
.Slider-hero-section .col-track:hover {
    animation-play-state: paused !important;
}

/* Staggered start positions */
.Slider-hero-section .col-1 { margin-top: 20px; }
.Slider-hero-section .col-2 { margin-top: -100px; }
.Slider-hero-section .col-3 { margin-top: 60px; }

/* =========================================
    Mobile Horizontal Slider
========================================= */
.Slider-hero-section .mobile-slider-container {
    display: none;
    width: 100%;
    padding: 20px 0;
    margin-top: 30px;
}

.Slider-hero-section .mobile-track {
    display: flex;
    gap: 15px;
    padding: 10px 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome/Safari */
.Slider-hero-section .mobile-track::-webkit-scrollbar {
    display: none; 
}

.Slider-hero-section .mobile-img-box {
    flex-shrink: 0;
    width: 230px;
    height: 340px;
    border-radius: 80px; 
    object-fit: cover;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* =========================================
    Responsive Layout Settings
========================================= */
@media (max-width: 991px) {
    .Slider-hero-section .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 50px;
        overflow-y: auto;
    }

    .Slider-hero-section .decor-plane { 
        display: none; /* Hide decorative elements on mobile for clean look */
    }

    .Slider-hero-section .content-left {
        width: 100%;
        padding: 0 5%;
        text-align: center;
    }

    .Slider-hero-section .desc {
        margin: 0 auto 40px auto;
    }

    .Slider-hero-section .main-title {
        font-size: 4rem;
    }

    .Slider-hero-section .sliders-right {
        display: none;
    }

    .Slider-hero-section .mobile-slider-container {
        display: block;
    }
}

@media (max-width: 576px) {
    .Slider-hero-section .main-title { font-size: 3rem; }
    .Slider-hero-section .mobile-img-box { width: 190px; height: 280px; border-radius: 60px;}
}