﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16.5px;
    background: #FFFBF0;
    font-family: 'Inter', sans-serif;
    color: #1a2a2f;
    scroll-behavior: smooth;
}

:root {
    --light-yellow: #FFF9E8;
    --sunny-yellow: #F9E2A1;
    --vibrant-yellow: #F5D371;
    --deep-teal: #1D7A6B;
    --turquoise: #2BAE8C;
    --aqua-mist: #B8E1DC;
    --dark-charcoal: #2C3E3E;
    --warm-gold: #E6BC5E;
}

h1, h2, h3, h4, .nav-logo, .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    color: var(--deep-teal);
    border-left: 6px solid var(--turquoise);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.section {
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Section header with see more button */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 16px;
}

    .section-header h2 {
        margin-bottom: 0;
        border-left: 6px solid var(--turquoise);
        padding-left: 1rem;
    }

.see-more-btn {
    background: transparent;
    border: 2px solid var(--turquoise);
    color: var(--deep-teal);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

    .see-more-btn:hover {
        background: var(--turquoise);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(43,174,140,0.2);
    }

/* expandable content wrapper */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    margin-top: 0;
}

    .expandable-content.expanded {
        max-height: 2000px;
        margin-top: 24px;
    }

.extra-content {
    background: rgba(249, 226, 161, 0.2);
    padding: 24px;
    border-radius: 28px;
    margin-top: 16px;
    border-left: 4px solid var(--turquoise);
}

/* ─── NAV ─── */
/* Top Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(10, 7, 4, 0.45);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 215, 170, 0.25);
    flex-wrap: wrap;
    box-sizing: border-box;
    pointer-events: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #F7E5C2, #E2C28B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-family: 'Times New Roman', serif;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
}

    .nav-links a {
        color: #FFF2E0;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        letter-spacing: 1px;
        transition: all 0.2s ease;
        padding-bottom: 4px;
        border-bottom: 1px solid transparent;
        font-family: 'Poppins', sans-serif;
    }

        .nav-links a:hover {
            color: #FFD48A;
            border-bottom-color: #FFD48A;
            transform: translateY(-1px);
        }

/* Hamburger hidden in desktop */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .nav-menu {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 15px;
        background: rgba(0,0,0,0.9);
        padding: 20px 0;
        border-radius: 10px;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.7rem;
    color: var(--deep-teal);
    cursor: pointer;
    background: rgba(255,249,232,0.9);
    padding: 8px 12px;
    border-radius: 40px;
}

/* ========== BANNER STYLES ========== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 80vh;
    min-height: 567px;
}

    .hero-swiper .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

        .hero-swiper .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.4) 100%);*/
            z-index: 1;
        }

.banner-artistic-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
}

.text-artistic {
    font-size: 4.2rem;
    font-family: 'Playfair Display', 'Great Vibes', 'Parisienne', serif;
    font-weight: 700;
    font-size: 3.8rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #FFE6B0 0%, #F9E2A1 25%, #F5D371 50%, #E6BC5E 75%, #FFE6B0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
    animation: gentleGlow 3s ease-in-out infinite;
    display: inline-block;
    line-height: 1.2;
    font-style: italic;
}

    .text-artistic::before {
        content: '✨';
        font-size: 1.8rem;
        position: absolute;
        left: -45px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--vibrant-yellow);
        opacity: 0.8;
    }

    .text-artistic::after {
        content: '✨';
        font-size: 1.8rem;
        position: absolute;
        right: -45px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--vibrant-yellow);
        opacity: 0.8;
    }

.artistic-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    color: rgba(255,245,200,0.95);
    margin-top: 20px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@keyframes gentleGlow {
    0%, 100% {
        text-shadow: 0 2px 5px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
    }

    50% {
        text-shadow: 0 3px 10px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.25);
    }
}

@media (max-width: 900px) {
    .text-artistic {
        font-size: 2.5rem;
    }

        .text-artistic::before, .text-artistic::after {
            font-size: 1.2rem;
            left: -28px;
            right: -28px;
        }

    .hero-swiper {
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .text-artistic {
        font-size: 1.8rem;
    }

        .text-artistic::before, .text-artistic::after {
            display: none;
        }
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--vibrant-yellow);
    background: rgba(0,0,0,0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--turquoise);
}

/* ========== ABOUT SECTION STYLES ========== */
.about-quote {
    background: linear-gradient(135deg, var(--sunny-yellow) 0%, #FDF5E6 100%);
    padding: 28px 32px;
    border-radius: 32px;
    border-left: 8px solid var(--turquoise);
    margin: 24px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--deep-teal);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* 3D Impact Image Gallery */
.gallery-3d-container {
    margin-top: 48px;
    width: 100%;
}

.gallery-3d-title {
    font-family: 'Kaushan Script', 'Allura', cursive;
    font-size: 2rem;
    color: var(--deep-teal);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
    position: relative;
}

    .gallery-3d-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: var(--turquoise);
        margin: 12px auto 0;
        border-radius: 3px;
    }

.image-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    perspective: 800px;
}

.card-3d {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-style: preserve-3d;
    cursor: pointer;
}

    .card-3d:hover {
        transform: translateY(-15px) rotateX(5deg) rotateY(3deg);
        box-shadow: 0 30px 40px -20px rgba(0,0,0,0.35);
    }

.card-3d-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

    .card-3d-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.card-3d:hover .card-3d-img img {
    transform: scale(1.08);
}

.card-3d-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, #ffffff, #fffaf0);
}

    .card-3d-content h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: var(--deep-teal);
        margin-bottom: 8px;
        font-size: 1.2rem;
    }

    .card-3d-content p {
        font-size: 0.85rem;
        color: #5a6e6e;
        font-family: 'Inter', sans-serif;
    }

/* UNIQUE FONT FOR GURU-SHISHYA PARAMPARA SECTION */
.guru-shishya-section {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFF9F0 100%);
    border-radius: 48px;
    padding: 32px 28px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(43,174,140,0.2);
}

.guru-title {
    font-family: 'Allura', 'Kaushan Script', cursive;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--deep-teal);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 28px;
    position: relative;
}

    .guru-title span {
        font-family: 'Great Vibes', cursive;
        font-size: 2rem;
        color: var(--turquoise);
    }

.guru-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item-unique {
    background: rgba(255,255,245,0.8);
    padding: 24px 16px;
    border-radius: 32px;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--turquoise);
}

    .stat-item-unique:hover {
        transform: translateY(-8px);
        background: white;
        box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }

.stat-icon {
    font-size: 2.5rem;
    color: var(--turquoise);
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--deep-teal);
    letter-spacing: 1px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5b5b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.guru-desc {
    text-align: center;
    margin-top: 32px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--deep-teal);
    font-size: 1rem;
    border-top: 1px dashed rgba(43,174,140,0.3);
    padding-top: 24px;
}

/* Other existing styles */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.card-img {
    height: 220px;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-content {
    padding: 24px;
}

.performance-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 280px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.review-swiper {
    width: 100%;
    padding: 20px 0;
}

.review-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
    margin: 12px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    background: white;
    border-radius: 60px;
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-left: 8px solid var(--turquoise);
}

.contact-wrap {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
}

input, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #F5E2B0;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    background: #FFFDF5;
}

textarea {
    border-radius: 28px;
}

button[type="submit"] {
    background: var(--turquoise);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
}
.feather-icon {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #308067;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    font-size: 1.3rem;
    z-index: 99;
    cursor: default;
}

hr {
    margin: 2rem 0 0.5rem;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #7eb79e, #d0eadf);
}

footer {
    text-align: center;
    margin-top: 1.3rem;
    padding-bottom: 1.3rem;
    font-size: 0.75rem;
    color: #2d705a;
}

.bg {
    background: #d6e9e3;
}


/* Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        color: #FFEFC0;
        font-size: 1.3rem;
    }

/* Text */
footer p {
    color:#fff;
    margin: 0;
    font-size: 15px;
}

.bb-main-player iframe {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.bb-playlist {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bb-play-item {
    width: 200px;
    cursor: pointer;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid transparent;
}

    .bb-play-item img {
        width: 100%;
        display: block;
    }

    .bb-play-item p {
        padding: 8px;
        font-size: 0.8rem;
    }

    .bb-play-item:hover {
        transform: translateY(-4px);
    }

    .bb-play-item.active {
        border: 2px solid #2BAE8C;
    }

/* ADDED STYLES FOR BANSI BILASH AND OTHER SECTIONS */
.bb-shimmer-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise), var(--warm-gold), var(--turquoise), transparent);
   
    border-radius: 2px;
}

.bb-pillars {
    margin-top: 16px;
}

.bb-pillars-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--dark-charcoal);
    text-align: center;
    margin-bottom: 28px;
    font-weight: 600;
}

.bb-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.bb-pillar {
    background: white;
    border: 1px solid rgba(43,174,140,0.15);
    border-radius: 18px;
    padding: 0 0 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

    .bb-pillar:hover {
        border-color: rgba(43,174,140,0.4);
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.10);
    }

.bb-pillar-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bb-pillar:hover .bb-pillar-img {
    transform: scale(1.04);
}

.bb-pillar h5 {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--deep-teal);
    letter-spacing: 0.8px;
    margin: 14px 12px 6px;
    text-transform: uppercase;
}

.bb-pillar p {
    font-size: 0.78rem;
    color: #5a7070;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    padding: 0 12px;
}

.bb-intro-text.pro-text p {
    margin-bottom: 18px;
}

.bb-intro-text.pro-text {
    text-align: justify;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #2c3e3e;
}

.highlight-line {
    background: rgba(43,174,140,0.08);
    padding: 12px 16px;
    border-left: 4px solid var(--turquoise);
    border-radius: 10px;
}

.cinematic-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.cinematic-card {
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
}

    .cinematic-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: red;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.cinematic-card p {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    padding: 8px;
    color: #1D7A6B;
}

.cinematic-card:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .cinematic-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== PEACOCK FEATHER BACKGROUND ===== */

/* minimalist header */
.page-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    background: #FFFBF0;
}

    .page-header h1 {
        font-family: 'Cinzel', serif;
        font-size: 3.2rem;
        color: #d4af37;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

.shimmer-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--turquoise), var(--warm-gold), var(--turquoise), transparent);
    width: 180px;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.sub {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    color: var(--deep-teal);
    margin-top: 0.75rem;
    opacity: 0.8;
}

/* MAIN SCATTERED CONTAINER */
.scattered-press {
    max-width: 1400px;
    margin: 2rem auto 4rem;
    padding: 2rem 2rem 4rem;
    position: relative;
}

/* FLEX-BASED SCATTERED GRID (organic floating) */
.scatter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 2.8rem;
    position: relative;
}

/* Shared card style */
.quote-card, .video-card {
    flex: 0 0 auto;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    opacity: 0;
    animation: floatInUp 0.7s ease forwards;
    will-change: transform;
}

    .quote-card:hover, .video-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

/* ===== FULLY SCATTERED: 12 QUOTES + 5 VIDEOS MIXED TOGETHER (NO SEQUENCE) ===== */
/* Each card gets unique width & vertical offset — text & video randomly interwoven */

/* Card 1: Quote */
.scatter-grid > :nth-child(1) {
    width: 320px;
    margin-top: 0px;
    animation-delay: 0.02s;
}
/* Card 2: Video (early / top area) */
.scatter-grid > :nth-child(2) {
    width: 380px;
    margin-top: 30px;
    animation-delay: 0.06s;
}
/* Card 3: Quote */
.scatter-grid > :nth-child(3) {
    width: 450px;
    margin-top: -15px;
    animation-delay: 0.10s;
}
/* Card 4: Quote */
.scatter-grid > :nth-child(4) {
    width: 290px;
    margin-top: 45px;
    animation-delay: 0.14s;
}
/* Card 5: Video (upper-middle) */
.scatter-grid > :nth-child(5) {
    width: 420px;
    margin-top: 10px;
    animation-delay: 0.18s;
}
/* Card 6: Quote */
.scatter-grid > :nth-child(6) {
    width: 500px;
    margin-top: -25px;
    animation-delay: 0.22s;
}
/* Card 7: Quote */
.scatter-grid > :nth-child(7) {
    width: 340px;
    margin-top: 55px;
    animation-delay: 0.26s;
}
/* Card 8: Video (middle region) */
.scatter-grid > :nth-child(8) {
    width: 470px;
    margin-top: -10px;
    animation-delay: 0.30s;
}
/* Card 9: Quote */
.scatter-grid > :nth-child(9) {
    width: 280px;
    margin-top: 35px;
    animation-delay: 0.34s;
}
/* Card 10: Quote */
.scatter-grid > :nth-child(10) {
    width: 410px;
    margin-top: -30px;
    animation-delay: 0.38s;
}
/* Card 11: Video (lower-middle) */
.scatter-grid > :nth-child(11) {
    width: 360px;
    margin-top: 50px;
    animation-delay: 0.42s;
}
/* Card 12: Quote */
.scatter-grid > :nth-child(12) {
    width: 520px;
    margin-top: 5px;
    animation-delay: 0.46s;
}
/* Card 13: Quote */
.scatter-grid > :nth-child(13) {
    width: 390px;
    margin-top: 40px;
    animation-delay: 0.50s;
}
/* Card 14: Video (bottom region) */
.scatter-grid > :nth-child(14) {
    width: 440px;
    margin-top: -20px;
    animation-delay: 0.54s;
}
/* Card 15: Quote */
.scatter-grid > :nth-child(15) {
    width: 310px;
    margin-top: 60px;
    animation-delay: 0.58s;
}
/* Card 16: Quote */
.scatter-grid > :nth-child(16) {
    width: 480px;
    margin-top: 15px;
    animation-delay: 0.62s;
}
/* Card 17: Video (very bottom) */
.scatter-grid > :nth-child(17) {
    width: 400px;
    margin-top: -5px;
    animation-delay: 0.66s;
}

@keyframes floatInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TYPOGRAPHY FOR QUOTES */
.quote-text {
    font-family: 'EB Garamond', 'Playfair Display', serif;
    font-style: italic;
    color: #2c3e3e;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.quote-author {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--deep-teal);
    font-weight: 500;
    border-left: 2px solid var(--turquoise);
    padding-left: 12px;
    margin-top: 10px;
    font-weight:bold;
}

/* Different font sizes for scattered quotes (dynamic feel) */
.scatter-grid > :nth-child(1) .quote-text {
    font-size: 1.45rem;
    font-weight: 500;
}

.scatter-grid > :nth-child(3) .quote-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-teal);
}

.scatter-grid > :nth-child(4) .quote-text {
    font-size: 1.2rem;
    font-weight: 400;
}

.scatter-grid > :nth-child(6) .quote-text {
    font-size: 1.85rem;
    font-weight: 500;
    font-style: normal;
    font-family: 'Cormorant Garamond', serif;
}

.scatter-grid > :nth-child(7) .quote-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.scatter-grid > :nth-child(9) .quote-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-teal);
}

.scatter-grid > :nth-child(10) .quote-text {
    font-size: 1.6rem;
    font-weight: 500;
}

.scatter-grid > :nth-child(12) .quote-text {
    font-size: 2rem;
    font-weight: 600;
}

.scatter-grid > :nth-child(13) .quote-text {
    font-size: 1.9rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.scatter-grid > :nth-child(15) .quote-text {
    font-size: 1.4rem;
    font-weight: 500;
}

.scatter-grid > :nth-child(16) .quote-text {
    font-size: 1.7rem;
    font-weight: 500;
    font-style: italic;
}

/* Decorative quotation marks */
.quote-text::before {
    content: "“";
    font-size: 1.6em;
    color: #d4af37;
    font-family: serif;
    margin-right: 4px;
    opacity: 0.7;
    display: inline-block;
}

.quote-text::after {
    content: "”";
    font-size: 1.6em;
    color: #d4af37;
    font-family: serif;
    margin-left: 4px;
    vertical-align: top;
    opacity: 0.7;
}

/* VIDEO CARD DESIGN */
.video-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.35s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(43,174,140,0.2);
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a2a2f;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 245, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d4af37;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
}

.video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #d4af37;
    color: white;
}

.video-caption {
    padding: 14px 16px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--deep-teal);
    background: white;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(43,174,140,0.15);
}

/* playing state (replace with iframe) */
.video-card.playing {
    cursor: default;
}

    .video-card.playing .play-overlay,
    .video-card.playing .video-caption {
        display: none;
    }

    .video-card.playing .video-thumb {
        padding: 0;
    }

    .video-card.playing iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        border: none;
    }

.video-card iframe {
    display: none;
}

/* responsive: on mobile, all cards take full width with natural flow */
@media (max-width: 900px) {
    .scattered-press {
        padding: 1rem;
    }

    .quote-card, .video-card,
    .scatter-grid > :nth-child(n) {
        width: 95% !important;
        max-width: 420px;
        margin: 1rem auto !important;
    }

    .quote-text {
        font-size: 1.2rem !important;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }
}


.event-hero {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 40px auto;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(212,175,55,0.2);
    border: 1px solid #d4af37;
    color: #d4af37;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 34px;
    font-family: 'Cinzel', serif;
    margin: 10px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.meta {
    font-size: 15px;
    margin-top: 10px;
    color: #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-primary {
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #facc15;
        transform: scale(1.05);
    }

.btn-outline {
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
    }

.past-events {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.event-card {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .event-card img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
    }

.event-info h4 {
    margin: 0;
    font-size: 15px;
}

.event-info p {
    margin: 4px 0;
    font-size: 13px;
    color: #555;
}

.event-info span {
    font-size: 12px;
    color: #065f46;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media(max-width: 768px) {
    .past-events {
        grid-template-columns: 1fr;
    }

    .event-hero {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}

.blog-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.blog-content {
    padding: 18px;
}

    .blog-content .meta {
        display: flex;
        gap: 10px;
        font-size: 12px;
        margin-bottom: 8px;
        justify-content: flex-start;
    }

.badge {
    background: #065f46;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
}

.blog-content h3 {
    font-size: 16px;
    margin: 8px 0;
}

.highlight {
    font-size: 14px;
    color: #065f46;
    font-weight: 500;
    border-left: 3px solid #d4af37;
    padding-left: 10px;
    margin-bottom: 15px;
}

.blog-content button {
    padding: 8px 14px;
    border-radius: 20px;
    background: #d4af37;
    border: none;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media(max-width: 1024px) {
    .blog-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .blog-slider {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: #fffaf0;
    padding: 30px;
    border: 1.5px solid #d4af37;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(212,175,55,0.2), inset 0 0 10px rgba(212,175,55,0.08);
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 6px;
        color: #2c1a0b;
        font-weight: 500;
    }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    transition: 0.3s;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #d4af37;
        box-shadow: 0 0 8px rgba(212,175,55,0.3);
    }

.contact-form button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #065f46;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-form button:hover {
        background: #d4af37;
        color: #000;
    }

@media(max-width: 600px) {
    .contact-form {
        padding: 20px;
    }
}
/* Top Left Banner Text */
.banner-top-left {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 15;
    text-align: left;
}

.top-left-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFEFC0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .banner-top-left {
        top: 20px;
        left: 20px;
    }

    .top-left-name {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .top-left-name {
        font-size: 1.1rem;
    }
}

/* About Section - Text Left & Image Slideshow Right */
.about-wrapper {
    display: flex;
    gap: 18px;
    align-items: stretch;
    flex-wrap: wrap;
    /* margin-bottom: 48px; */
}

.about-text-content {
    flex: 1;
    min-width: 280px;
}

.about-right-column {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image-slider {
    width: 100%;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 830px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
    background: #f5f5f5;
    aspect-ratio: 4/3;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.dots-container {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .dot.active, .dot:hover {
        background-color: var(--turquoise);
    }

/* Legacy Section Styling */
.legacy-section {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #d4af37;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

    .legacy-section::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 100%;
        top: 0;
        left: -120%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
        transition: 0.8s;
    }

    .legacy-section:hover::before {
        left: 120%;
    }

.legacy-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212,175,55,0.4);
}

.legacy-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: #ffefc0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

    .legacy-title i {
        color: #d4af37;
        font-size: 1.2rem;
    }

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.legacy-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255,255,245,0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

    .legacy-stat-item:hover {
        transform: translateX(5px);
        background: rgba(255,255,245,0.2);
    }

    .legacy-stat-item i {
        font-size: 24px;
        color: #d4af37;
        width: 40px;
        text-align: center;
    }

.legacy-stat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.legacy-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffefc0;
    line-height: 1.2;
}

.legacy-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,239,192,0.9);
    letter-spacing: 0.5px;
}

.highlight-stat {
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.1) 100%);
    border-left: 3px solid #d4af37;
}

    .highlight-stat .legacy-stat-number {
        color: #d4af37;
    }

/* Continued Text Below Legacy Stats */
.about-continued-text {
    /* margin-top: 48px; */
    /* padding-top: 24px; */
    /* border-top: 2px solid rgba(212,175,55,0.3); */
}

/* UPDATED ABOUT TEXT STYLES: No borders, no backgrounds, single stylish font */
.about-detailed-text {
    font-family: 'EB Garamond', serif;
    color: #2c3e3e;
    line-height: 1.8;
}

/* .about-paragraph {
            margin-bottom: 28px;
        }*/

.about-paragraph p {
    font-size: 1.05rem;
    line-height: 1.85;
    font-family: 'EB Garamond', serif;
    color: #2c3e3e;
    text-align: justify;
    margin-bottom: 0;
}

.highlight-gold {
    color: #b8860b;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-quote {
    background: none;
    padding: 0;
    border-left: none;
    margin: 32px 0;
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--deep-teal);
    text-align: center;
    position: relative;
    border: none;
    box-shadow: none;
}

    .about-quote i {
        color: #d4af37;
        font-size: 0.9rem;
        margin: 0 8px;
    }

    .about-quote span {
        display: block;
        margin-top: 12px;
        font-size: 0.9rem;
        font-style: normal;
        font-family: 'EB Garamond', serif;
        color: #7a6a5a;
    }

.signature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.signature-divider i {
    color: #d4af37;
    font-size: 1.2rem;
}

.about-highlight-box {
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 28px 0;
    border: none;
    position: relative;
}

    .about-highlight-box i {
        font-size: 1.8rem;
        color: #d4af37;
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }

    .about-highlight-box p {
        font-size: 1.05rem;
        line-height: 1.85;
        font-family: 'EB Garamond', serif;
        font-style: italic;
        text-align: center;
        color: var(--deep-teal);
        margin: 0;
    }

.about-conclusion {
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 28px 0;
    border: none;
    text-align: center;
}

    .about-conclusion p {
        font-size: 1.05rem;
        line-height: 1.85;
        font-family: 'EB Garamond', serif;
        color: var(--deep-teal);
        margin: 0;
    }

@media (max-width: 900px) {
    .about-detailed-text .about-paragraph p {
        font-size: 0.95rem;
    }

    .about-quote {
        font-size: 1rem;
    }

    .about-highlight-box p {
        font-size: 0.95rem;
    }

    .about-conclusion p {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .about-paragraph p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

.view-more-btn {
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

    .view-more-btn:hover {
        background: #f5f5f5;
    }


.bb-production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding:20px;
}

.bb-production-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding-bottom: 15px;
    position: relative;
    transition: 0.3s;
}

    .bb-production-card:hover {
        transform: translateY(-5px);
    }

    .bb-production-card img {
        width: 100%;
        height: 320px; /* 🔥 fixed height */
        object-fit: cover; /* crop properly */
        border-radius: 12px;
    }

    .bb-production-card h4 {
        font-size: 16px;
        margin: 10px 15px 5px;
        font-weight: 700;
    }

    .bb-production-card p {
        font-size: 13px;
        margin: 0 15px;
        color: #555;
    }

.serial {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.bb-story-section {
    padding: 30px;
    background: #fafafa;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bb-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b3b4f;
}

.bb-story-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.bb-story-content strong {
    color: #000;
    font-weight: 600;
}

/* Main card styling - clean, minimal, spacious */
.text-card {
    background: #ffffff;
    border-radius: 0px; /* clean, no rounded corners for a classic look */
    padding: 1.9rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 1px 0 #eae5de;
    border: 1px solid #eae3d8;
}

/* Title / name section - using EB Garamond (serif) for elegance */
.name-title {
    font-family: 'EB Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #2a241e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2d5c4;
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* subtle subtitle line */
.subhead {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9b7a5c;
    margin-bottom: 2rem;
}

/* paragraph styling - Inter for crisp readability */
p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2b241f;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* First paragraph drop cap: EB Garamond for classic feel */
.text-card p:first-of-type::first-letter {
    font-family: 'EB Garamond', serif;
    font-size: 3.8rem;
    font-weight: 600;
    float: left;
    line-height: 0.85;
    margin-right: 12px;
    color: #8b5a2e;
    letter-spacing: -1px;
}

/* Bold text style */
strong, b {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #8b5a2e;
}

/* Subtle separator line */
.separator {
    margin: 2rem 0 1rem;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #e2d5c4, #e2d5c4 30%, transparent 80%);
}

/* blog / digital mention style */
.blog-text {
    font-family: 'Inter', monospace;
    font-weight: 500;
    background: #f7f2ea;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.92rem;
    color: #8b5a2e;
    display: inline-block;
}

/* responsive adjustments */
@media (max-width: 720px) {
    .container {
        padding: 1.5rem;
    }

    .text-card {
        padding: 1.8rem;
    }

    .name-title {
        font-size: 2.4rem;
    }

    p {
        font-size: 0.95rem;
        text-align: left;
    }

    .text-card p:first-of-type::first-letter {
        font-size: 3rem;
    }
}

.bb-title-row {
    display: flex;
    align-items: center;
    gap: 10px; /* 🔥 controls spacing */
}

.bb-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1b3b4f;
}

.bb-title-img {
   margin-bottom:10px;
}

.banner-bottom-center {
    position: absolute;
    bottom: 40px;
    right: 60px; /* 🔥 move to right */
    left: auto; /* remove center positioning */
    transform: none; /* remove translate center */
    width: auto;
    text-align: right; /* align text right */
}

    /* Main Quote */
    .banner-bottom-center p {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: #fff;
        max-width: 500px; /* control width on right side */
        line-height: 1.7;
        background: none; /* ❌ remove background */
        padding: 0; /* remove padding */
        margin: 0;
        letter-spacing: 0.5px;
    }

    /* Author */
    .banner-bottom-center span {
        display: block;
        margin-top: 10px;
        font-size: 15px;
        font-style: italic;
        font-family: 'Poppins', sans-serif;
        color: #ddd;
    }


.scroll-gallery {
    padding: 60px 20px;
    background: #f9f9f9;
}

.gallery-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Wrapper */
.gallery-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
}

    /* Hide scrollbar (optional) */
    .gallery-wrapper::-webkit-scrollbar {
        display: none;
    }

/* Track */
.gallery-track {
    display: flex;
    gap: 20px;
}

    /* Images */
    .gallery-track img {
        width: 300px;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

        /* Hover Effect */
        .gallery-track img:hover {
            transform: scale(1.05);
        }




.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    background: #000;
}

    .video-card:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .video-card iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        border: none;
    }

/* Tablet */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-section {
    padding: 20px !important;
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    transition: 0.3s;
}

    .video-thumb img {
        width: 100%;
        display: block;
    }

    .video-thumb:hover {
        transform: scale(1.05);
    }

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
.bb-story-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Row layout */
.bb-story-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

/* Left text */
.bb-story-left {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
}

/* Right video */
.bb-story-right {
    flex: 1;
}

    .bb-story-right iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 12px;
        border: none;
    }

/* Full width text */
.bb-story-full {
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .bb-story-row {
        flex-direction: column;
    }
}

.footer-container {
    max-width: 1300px;
    margin: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* copyright text (left side) */
.copyright {
    font-family: 'JetBrains Mono', monospace, 'Courier New', monospace;
    font-size: 0.97rem;
   /* color: #9c8768;*/
    letter-spacing: 0.3px;
}

    .copyright i {
        color: #1b3b4f;
        font-size: 0.7rem;
        margin: 0 2px;
    }

/* social media links (right side) */
.social-links {
    color: #1b3b4f; 
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

    .social-links a {
        color: #1b3b4f;
        font-size: 1.2rem;
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(217, 161, 59, 0.08);
        text-decoration: none;
        transition: 0.2s;
    }

        .social-links a:hover {
            color: #f0bc6e;
            background: rgba(217, 161, 59, 0.2);
            transform: translateY(-2px);
        }

/* responsive: stack on smaller screens */
@media (max-width: 650px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .social-links {
        margin-top: 0.3rem;
    }
}
