/* ================= TOPBAR ================= */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 12px;
}

/* SEARCH DROPDOWN */
/* WRAPPER */
.search-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
}

/* SEARCH BOX */
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;

    height: 48px;
    padding: 0 16px;

    background: #f4f2f2;
    border-radius: 14px;
    color: black;
    border: 1px solid transparent;

    transition: all 0.25s ease;
}

/* FOCUS */
.search-box:focus-within {
    background: #fff;
    border: 1px solid rgba(229,57,53,0.3);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.06),
        0 0 0 3px rgba(229,57,53,0.08);
}

/* INPUT */
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;

    font-size: 14px;
}

/* ================= DROPDOWN ================= */

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;

    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);

    max-height: 300px;
    overflow-y: auto;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    transition: all 0.2s ease;

    z-index: 9999;
}

/* ACTIVE */
.search-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ITEM */
.search-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.search-item:hover {
    background: #f5f5f5;
}

/* IMAGE */
.search-item img {
    width: 48px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
}

/* TEXT */
.search-item .title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.search-item .meta {
    font-size: 12px;
    color: #777;
}

/* EMPTY */
.no-result {
    padding: 12px;
    text-align: center;
    color: #999;
}
/* BUTTONS */
.top-actions {
    display: flex;
    gap: 10px;
}

.faq-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

.enquire-btn {
    background: #e53935;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;

    height: calc(100vh - 110px);
    min-height: 550px;

    border-radius: 20px;
    overflow: hidden;
}

/* SLIDER */
.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDE */
.slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ACTIVE */
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* VIDEO */
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== DARK OVERLAY (PROPER FIX) ===== */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.1) 100%
    );

    z-index: 1; /* BELOW TEXT */
}

/* ===== TEXT (ALWAYS ON TOP) ===== */
.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;

    color: #fff;
    max-width: 520px;

    z-index: 2; /* ABOVE OVERLAY */
}

.slide-content .meta {
    font-size: 13px;
    letter-spacing: 1.6px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-content .desc {
    font-size: 15px;
    opacity: 0.95;
}

/* ================= NAV BUTTONS ================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);

    border: none;
    border-radius: 50%;
    color: #fff;

    cursor: pointer;
    transition: 0.2s;

    z-index: 3; /* ABOVE EVERYTHING */
}

.slider-btn:hover {
    background: rgba(0,0,0,0.85);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* ================= DOTS ================= */
.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 35px;

    display: flex;
    gap: 8px;

    z-index: 3; /* ABOVE OVERLAY */
}

.dot {
    width: 8px;
    height: 8px;

    background: rgba(255,255,255,0.5);
    border-radius: 50%;

    cursor: pointer;
    transition: 0.25s;
}

.dot.active {
    width: 22px;
    background: #e53935;
    border-radius: 10px;
}
/* ================= SCROLL TEXT ================= */
.scroll-text-section {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
}

/* TEXT */
#scroll-text {
    font-size: 18px;
    letter-spacing: 3px;
    color: #111;
    font-family: monospace;

    position: relative;
}

/* BLINKING CURSOR */
#scroll-text::after {
    content: "";
    margin-left: 6px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* ================= TRAILER SECTION ================= */
.trailer-section {
    margin-top: 60px;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* FILTER TABS */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
}

.tab.active {
    background: #e53935;
    color: #fff;
    border: none;
}

/* ================= SCROLL ROW ================= */
.trailer-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.trailer-row::-webkit-scrollbar {
    display: none;
}

/* CARD */
.trailer-card {
    min-width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

/* IMAGE */
.trailer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.trailer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.1)
    );
}

/* TEXT */
.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.card-overlay .meta {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.card-overlay h3 {
    font-size: 20px;
}

/* VIEW MORE */
.view-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.view-more-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

/* ================= WORLD SECTION ================= */
.world-section {
    margin-top: 80px;
}

/* HEADER */
.world-header {
    text-align: center;
    margin-bottom: 40px;
}

.world-header .subtext {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #666;
}

.world-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
}

/* MAIN CONTAINER */
.world-container {
    background:beige;
    border-radius: 20px;
    padding: 30px;

    display: flex;
    gap: 20px;
}

/* LEFT SIDE */
.world-left {
    flex: 1;
}

/* RIGHT PANEL (MOBILE STYLE) */
.world-right {
    width: 320px;
    background: #000;
    border-radius: 20px;
    padding: 20px;
    color: #f7f3f3;

    display: flex;
    flex-direction: column;
}

.world-right h3 {
    margin-bottom: 15px;
}

/* SCROLLABLE LIST */
.film-list {
    overflow-y: auto;
    max-height: 400px; /* THIS controls internal scroll */
    padding-right: 5px;
}

/* CUSTOM SCROLL (optional) */
.film-list::-webkit-scrollbar {
    width: 4px;
}

.film-list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

/* ITEM */
.film-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}
.film-item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;   /* 🔥 CONTROL spacing here */
}

/* IMAGE */
.film-item img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT */
.film-item .title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.film-item span {
    font-size: 12px;
    margin:0;
    color: white;
}
.heart-flow {
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* HEART BASE */
.heart {
    position: absolute;
    font-size: 22px;
    color: #ff6b81;

    opacity: 0.2;
    transform: scale(0.8);
    animation: float 4s ease-in-out infinite;
    transition: 0.4s ease;
}
@keyframes float {
    0% { transform: translateY(0) scale(0.8); }
    50% { transform: translateY(-8px) scale(0.85); }
    100% { transform: translateY(0) scale(0.8); }
}
/* RANDOM POSITIONS */
.heart:nth-child(1) { left: 10%; top: 60%; }
.heart:nth-child(2) { left: 30%; top: 30%; }
.heart:nth-child(3) { left: 50%; top: 70%; }
.heart:nth-child(4) { left: 70%; top: 40%; }
.heart:nth-child(5) { left: 85%; top: 65%; }
.heart:nth-child(6) { left: 15%; top: 20%; }
.heart:nth-child(7) { left: 40%; top: 50%; }
.heart:nth-child(8) { left: 60%; top: 25%; }
.heart:nth-child(9) { left: 75%; top: 75%; }
.heart:nth-child(10) { left: 90%; top: 35%; }

/* ACTIVE (CENTER GLOW) */
.heart.active {
    opacity: 1;
    transform: scale(1.4);

    text-shadow:
        0 0 10px rgba(255, 100, 120, 0.6),
        0 0 20px rgba(255, 100, 120, 0.4);
}
.music-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 40px;
}

/* LEFT TEXT */
.music-left h2 {
    font-size: 36px;
    line-height: 1.3;
}

.music-left span {
    color: #e53935;
}

.music-left p {
    margin-top: 12px;
    color: #666;
}

/* RIGHT SIDE */
.music-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WRAPPER */
.vinyl-wrap {
    position: relative;
    width: 360px;
    height: 360px;
}

/* DISC */
.disc {
    position: absolute;
    width: 320px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    animation: spin 8s linear infinite;
    z-index: 1;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
}

/* COVER */
.cover {
    position: absolute;
    width: 280px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ROTATION */
@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* HOVER */
.vinyl-wrap:hover .disc {
    animation-play-state: paused;
}

/* SECTION SPACING */
.music-list {
    margin-top: 140px;
    padding-bottom: 60px;
}

/* CONTAINER */
.music-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.music-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/* CARD */
.music-card {
    text-align: center;
}

/* IMAGE WRAP */
.music-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;   /* 🔥 forces square box */
    background: #f5f5f5;   /* fallback bg */
}
/* IMAGE */
.music-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 NO CROP */
    object-position: center;

    display: block;
    transition: transform 0.4s ease;
}

/* HOVER */
.music-thumb:hover img {
    transform: scale(1.06);
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 52px;
    height: 52px;

    background: rgba(255,255,255,0.95);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    transition: 0.2s;
}

/* ACTIVE PLAY STATE */
.music-card.playing .play-btn {
    background: #e53935;
    color: #fff;
}

/* PROGRESS BAR */
.progress {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #e53935;
    transition: width 0.1s linear;
}

/* TEXT */
.music-title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 500;
}

.music-artist {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

.quote-section {
    text-align: center;
    margin: 160px 0 120px;
    margin-top: 0px;
}

/* ROTATING LOGO */
.quote-logo {
    width: 70px;
    margin: 0 auto 25px;
}

.quote-logo img {
    width: 100%;
    opacity: 1;

    animation: rotateLogo 12s linear infinite;
}

/* ROTATION */
@keyframes rotateLogo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* QUOTE TEXT */
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.6;
    color: #222;
}

/* AUTHOR */
.quote-author {
    margin-top: 16px;
    font-size: 16px;
    color: #e53935;
    font-style: italic;
}
.quote-logo:hover img {
    animation-play-state: paused;
}

.feature-section {
    margin: 120px 0;
}

/* CONTAINER */
.feature-container {
    display: flex;
    gap: 50px;
    align-items: center;

    background: #f5f5f5;
    padding: 40px;
    border-radius: 24px;
}

/* VIDEO */
.feature-video {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
}

.feature-video iframe {
    width: 100%;
    height: 350px;
    display: block;
}

/* CONTENT */
.feature-content {
    flex: 1;
}

/* META */
.feature-meta {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 12px;
}

/* TITLE */
.feature-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
}

.feature-title span {
    color: #e53935;
}

/* LINKS */
.feature-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-link {
    font-size: 14px;
    color: #999;
    cursor: pointer;
    position: relative;
}

.feature-link.active {
    color: #000;
    font-weight: 500;
}

.feature-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

.film-section {
    margin: 100px 0;
    overflow: hidden; /* important */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* TITLE */
.film-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
}

/* WRAPPER */
.film-strip-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #000, #111);
    padding: 20px 0;       /* space above/below images */
}

/* STRIP */
.film-strip {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

/* FRAME */
.film-frame {
    flex: 0 0 280px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    background: #f5f5f5;
}

/* IMAGE */
.film-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    margin: 140px 0;
    text-align: center;
}

.sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.title {
    font-size: 42px;
    margin-bottom: 60px;
}

/* WRAPPER */
.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f5f5f5;
    padding: 50px;
    border-radius: 30px;
}

/* TEXT */
.testimonial-text {
    width: 50%;
    text-align: center;
}

.testimonial-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-text h4 {
    font-size: 16px;
}

.testimonial-text span {
    font-size: 12px;
    color: #777;
}

/* IMAGE */
.testimonial-image {
    width: 40%;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: 20px;
}

/* IMPORTANT → NO CROP */
.testimonial-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* THIS fixes your issue */
}

/* NAV BUTTONS */
.t-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}

.t-prev { left: 10px; }
.t-next { right: 10px; }

/* DOTS */
.t-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.t-dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.t-dot.active {
    width: 18px;
    background: #333;
    border-radius: 10px;
}

.why-section {
    margin: 120px auto;
    max-width: 1200px;
    padding: 0 20px;
}
/* HEADINGS */
.why-sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    text-align: center;
}

.why-title {
    text-align: center;
    font-size: 38px;
    margin: 10px 0 60px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
}

/* CARD */
.why-card {
    cursor: pointer;
    text-align: center;
}

/* IMAGE */
.why-img {
    border-radius: 20px;
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.why-card:hover img {
    transform: scale(1.05);
}

/* TEXT */
.why-tag {
    font-size: 12px;
    color: #a58b6f;
    margin-top: 18px;
    letter-spacing: 1px;
}

.why-card h3 {
    font-size: 18px;
    margin: 8px 0;
}

.why-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 1024px) {

    /* ===== GLOBAL ===== */
    .container {
        padding: 0 12px;
    }

    section {
        margin-top: 70px !important;
    }

    /* ===== TOPBAR ===== */
    .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-box {
        padding: 10px 14px;
    }

    .top-actions {
        justify-content: space-between;
    }

    /* ===== HERO ===== */
    .hero-slider {
        height: 60vh;
        border-radius: 16px;
    }

    .slide-content {
        left: 20px;
        bottom: 25px;
    }

    .slide-content h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    /* ===== TRAILER ===== */
    .trailer-row {
        gap: 16px;
    }

    .trailer-card {
        min-width: 280px;
        height: 340px;
        border-radius: 16px;
    }

    /* ===== WORLD ===== */
    .world-container {
        flex-direction: column;
        padding: 20px;
    }

    .world-left {
        height: 200px;
    }

    .world-right {
        width: 100%;
    }

    /* ===== MUSIC ===== */
    .music-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .music-left h2 {
        font-size: 26px;
    }

    .vinyl-wrap {
        width: 260px;
        height: 260px;
    }

    /* ===== MUSIC GRID ===== */
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* ===== FEATURE ===== */
    .feature-container {
        flex-direction: column;
        padding: 24px;
    }

    .feature-video iframe {
        height: 240px;
    }

    .feature-title {
        font-size: 26px;
    }

    /* ===== FILM ===== */
    .film-frame {
        flex: 0 0 220px;
        height: 140px;
    }

    /* ===== TESTIMONIAL ===== */
    .testimonial-wrapper {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    /* ===== WHY ===== */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* ===== GLOBAL ===== */
    section {
        margin-top: 60px !important;
    }

    h1 { font-size: 22px; }
    h2 { font-size: 18px; }
    .top-actions{
    display: none;
    }
    /* ===== HERO ===== */
    .hero-slider {
        height: 50vh;
    }

    .slide-content {
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content .desc {
        font-size: 13px;
    }

    /* ===== CONTROLS ===== */
    .slider-btn {
        width: 34px;
        height: 34px;
    }

    /* ===== TRAILER ===== */
    .filter-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
    }

    .trailer-card {
        min-width: 240px;
        height: 280px;
    }

    /* ===== WORLD ===== */
    .world-header h2 {
        font-size: 22px;
    }

    .film-item img {
        width: 60px;
        height: 50px;
    }

    /* ===== MUSIC ===== */
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ===== FEATURE ===== */
    .feature-title {
        font-size: 22px;
    }

    /* ===== FILM STRIP ===== */
    .film-frame {
        flex: 0 0 180px;
        height: 110px;
    }

    /* ===== TESTIMONIAL ===== */
    .testimonial-text p {
        font-size: 15px;
    }

    /* ===== WHY ===== */
    .why-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {

    /* ===== GLOBAL ===== */
    body {
        font-size: 14px;
    }

    .main {
        margin: 0;
        padding: 0 8px;        /* 🔥 minimal side breathing */
        border-radius: 0;
    }

    .container {
        padding: 0;
        width: 100%;
    }

    section {
        margin-top: 24px !important;
    }

    /* ===== TOPBAR ===== */
    .topbar {
        gap: 6px;
        padding: 0 6px;
        margin-bottom: -6px;
    }

    .search-box {
        padding: 8px 10px;
        border-radius: 25px;
        margin-top: 12px;
    }

    .search-box input {
        font-size: 13px;
    }

    .faq-btn {
        display: none;
    }

    .enquire-btn {
        width: 100%;
        padding: 8px;
        font-size: 12px;
        border-radius: 20px;
        margin-top: 6px;
    }

    /* ===== HERO ===== */
    .hero-slider {
        height: 75vh;
        min-height: 400px;
        border-radius: 10px;   /* slight rounding feels better */
    }

    .slide-content {
        left: 10px;
        bottom: 12px;
        max-width: 92%;
    }

    .slide-content h2 {
        font-size: 16px;
    }

    .slide-content .desc {
        font-size: 12px;
    }

    .slider-btn {
        display: block;
    }
    .scroll-text-section {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
    /* ===== TRAILER ===== */
    .section-title {
        font-size: 18px;
        padding-left: 4px;
    }

    .filter-tabs {
        gap: 6px;
        overflow-x: auto;
        padding-left: 4px;
    }

    .trailer-row {
        padding-left: 4px;
    }

    .trailer-card {
        min-width: 165px;
        height: 205px;
    }

    /* ===== WORLD ===== */
    .world-container {
        padding: 10px;
        border-radius: 12px;
    }

    .world-left {
        height: 100px;
    }

    .film-item img {
        width: 45px;
        height: 40px;
    }

    .film-item .title {
        font-size: 12px;
    }

    /* ===== MUSIC ===== */
    .music-section {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 4px;
    }

    .music-left h2 {
        font-size: 18px;
    }

    .music-left p {
        font-size: 12px;
    }

    .vinyl-wrap {
        width: 140px;
        height: 140px;
    }

    .disc {
        width: 120px;
    }

    .cover {
        width: 100px;
    }

    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* ===== FEATURE ===== */
    .feature-video iframe {
        height: 170px;
        border-radius: 10px;
    }

    .feature-title {
        font-size: 18px;
        padding-left: 4px;
    }

    /* ===== FILM STRIP (IMPORTANT FIX) ===== */
    .film-title {
        font-size: 18px;
        padding-left: 4px;
    }

    .film-strip-wrapper {
        padding-left: 4px;
    }

    .film-frame {
        flex: 0 0 170px;   /* balanced */
        height: 145px;     /* 🔥 visible but not oversized */
        border-radius: 12px;
    }

    /* ===== TESTIMONIAL ===== */
    .testimonial-wrapper {
        padding: 10px;
        border-radius: 12px;
    }

    .testimonial-text p {
        font-size: 13px;
    }
    .testimonial-image {
        max-height: 260px;
        width: 80%;
        border-radius: 10px;
        margin-top: -30px;
    }
    .testimonial-image img{
    border-radius: 12px;
    }
    /* ===== QUOTE ===== */
    .quote-text {
        font-size: 14px;
        padding: 0 4px;
    }

    .quote-author {
        font-size: 11px;
    }

    /* ===== WHY ===== */
    .why-title {
        font-size: 18px;
        padding-left: 4px;
    }

    .why-grid {
        gap: 16px;
        padding: 0 4px;
    }

    .why-img img {
        height: 160px;
        border-radius: 10px;
    }

    .why-card h3 {
        font-size: 14px;
    }

    .why-desc {
        font-size: 12px;
    }

}