/* Ibiff India - Ultra-Premium, Eye-Catching Light Cinematic Design System */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --primary-red: #D60000;
    --primary-navy: #031B33;
    --gold-solid: #C5A880;
    --gold-light: #F6EEDD;
    --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --dark-slate: #151515;
    --medium-grey: #666666;
    --light-cream: #FAF7F2;
    --white: #FFFFFF;
    --border-color: #E2DDD3;
    --ticket-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
    background-color: #FDFCFB;
    color: var(--dark-slate);
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* Typography & Headings */
h1, h2, h3, .brand-text {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-navy);
}

h4, h5, h6, .nav-link, .btn-premium {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.text-gradient-navy {
    background: linear-gradient(135deg, var(--primary-navy) 30%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: #c59b27 !important;
}

.text-red {
    color: var(--primary-red) !important;
}

.red {
    color: var(--primary-red) !important;
}

/* Decorative Film Slits & Separators */
.separator-line {
    height: 3px;
    width: 80px;
    background: var(--gold-metallic);
    margin: 20px 0;
    border-radius: 2px;
}

.separator-line.centered {
    margin: 20px auto;
}

.film-reel-border {
    position: relative;
    height: 12px;
    background: repeating-linear-gradient(90deg, #151515, #151515 12px, transparent 12px, transparent 24px);
    width: 100%;
    opacity: 0.08;
    margin: 40px 0;
}

/* Navbar */
.main-navbar {
    background: #050a12 !important; /* Deep cinematic navy */
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--gold-solid);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand .brand-text {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -1px;
    color: var(--white) !important;
}

.navbar-brand .brand-text .red {
    color: var(--primary-red) !important;
}

.nav-link {
    color: var(--light-cream) !important;
    font-weight: 800;
    font-size: 0.85rem;
    margin: 0 12px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--gold-metallic);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
}

/* Buttons & Pulse effect */
.btn-premium {
    padding: 15px 35px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 0;
    letter-spacing: 2.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-red {
    background: var(--primary-red);
    color: var(--white);
    border: 1px solid var(--primary-red);
}

.btn-red:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 0, 0, 0.25);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(214, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
    }
}

.btn-navy {
    background: var(--primary-navy);
    color: var(--white);
    border: 1px solid var(--primary-navy);
}

.btn-navy:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(3, 27, 51, 0.2);
}

.btn-outline-navy {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background: transparent;
}

.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Top Image Slider Section */
.top-image-slider {
    padding-top: 110px; /* Offset for navbar */
    width: 100%;
    background-color: #111;
}
.topHeroSlider {
    width: 100%;
    height: 70vh;
    min-height: 500px;
}
.hero-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
.topHeroSlider .swiper-button-next,
.topHeroSlider .swiper-button-prev {
    color: var(--primary-red);
}
.topHeroSlider .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

@media (max-width: 991px) {
    .topHeroSlider {
        height: auto;
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
    .navbar-collapse {
        background-color: #050a12;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        margin-top: 10px;
    }
}

/* TOP WELCOME BANNER */
.top-welcome-banner {
    padding-top: 35px;
    padding-bottom: 25px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.top-welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(90deg, #151515, #151515 8px, #fff 8px, #fff 16px);
    opacity: 0.8;
}

.top-welcome-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1.25;
}

.top-welcome-title .red {
    color: var(--primary-red);
}

/* Main Landing Section */
.landing-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(246, 238, 221, 0.4) 0%, transparent 40%), var(--white);
}

.welcome-list li {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: var(--dark-slate);
}

.welcome-list li::before {
    content: '✦';
    position: absolute;
    left: 10px;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
}

/* Double Golden Frame Poster */
.welcome-poster-section {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    position: relative;
}

.welcome-poster-section::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--gold-metallic) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.4;
}

.poster-container {
    border: 3px double var(--gold-solid);
    padding: 8px;
    background: var(--white);
}

.poster-container img {
    border-radius: 4px;
    transition: var(--transition);
}

.poster-container:hover img {
    transform: scale(1.02);
}

.stats-mini h4 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
}

/* Highlights Overview Section (Glassmorphic) */
.highlights-overview-section {
    background-color: var(--light-cream);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.highlight-card {
    background: rgba(20, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    backdrop-filter: blur(15px);
    color: var(--white);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-solid);
    box-shadow: 0 15px 45px rgba(200, 155, 60, 0.2), inset 0 0 20px rgba(200, 155, 60, 0.05);
}

.highlight-card .card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.4);
    color: var(--gold-solid);
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.2);
    transition: var(--transition);
}

.highlight-card:hover .card-icon {
    background: var(--gold-solid);
    color: var(--primary-navy);
    box-shadow: 0 0 30px rgba(200, 155, 60, 0.6);
}

.highlight-card .card-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.15rem;
}

.highlight-card .date-highlight {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: rgba(214, 40, 40, 0.15);
    border: 1px solid rgba(214, 40, 40, 0.4);
    color: var(--white);
    text-shadow: 0 0 10px rgba(214, 40, 40, 0.5);
    text-align: center;
}

.highlight-card .categories-tags .badge {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-cream);
    transition: var(--transition);
}

.highlight-card .categories-tags .badge:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(214, 40, 40, 0.4);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

/* Special Initiative Box (Prestigious Certificate Style) */
.initiative-box {
    border: 4px double #316142;
    background: radial-gradient(circle at top right, rgba(49, 97, 66, 0.05), transparent), #FCFDFB;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(49, 97, 66, 0.08);
    position: relative;
}

.initiative-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(49, 97, 66, 0.2);
    pointer-events: none;
}

.initiative-tag {
    color: #316142;
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.initiative-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: #123018;
}

.initiative-topic {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    color: #316142;
    letter-spacing: 2px;
}

.initiative-details {
    border-top: 1px dashed rgba(49, 97, 66, 0.3);
    padding-top: 25px;
}

.initiative-details h5 {
    color: #123018;
}

/* Overlapping Mission Section (Light Cinematic) */
.overlap-container {
    background-color: var(--white);
}

.overlap-image img {
    border: 4px double var(--gold-solid);
    padding: 8px;
    background: var(--white);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.overlap-content {
    background: var(--light-cream);
    padding: 60px;
    border-left: 8px solid var(--primary-red);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

/* Why Join Us */
.icon-circle {
    background: var(--white) !important;
    border: 1px solid var(--gold-solid);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.mesh-mimic img {
    border: 2px solid var(--border-color);
    padding: 5px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.mesh-mimic img:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

/* FILM TICKET SELECTION CARDS (Fully Eye-Catching Cinema Design) */
.laurels-header-icon {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(185, 137, 40, 0.2));
}

.film-card-ticket {
    background-color: var(--white);
    background-image: 
        radial-gradient(circle at 0% 50%, transparent 15px, var(--white) 15px),
        radial-gradient(circle at 100% 50%, transparent 15px, var(--white) 15px);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--ticket-shadow);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.film-card-ticket::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    border: 1px solid transparent;
    pointer-events: none;
    transition: var(--transition);
}

.film-card-ticket:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(214, 0, 0, 0.06);
}

.film-card-ticket:hover::after {
    border-color: rgba(214, 0, 0, 0.2);
}

.ticket-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-color);
}

.ticket-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ticket-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(3, 27, 51, 0.8) 100%);
    z-index: 1;
}

.film-card-ticket:hover .ticket-image-wrapper img {
    transform: scale(1.06);
}

.ticket-info-stub {
    padding-top: 20px;
    border-top: 2px dashed var(--border-color);
    margin-top: 15px;
    position: relative;
}

/* Punch hole circles decorations */
.ticket-info-stub::before, .ticket-info-stub::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 18px;
    height: 18px;
    background-color: #FDFCFB; /* matches body bg */
    border: 2px solid var(--border-color);
    border-radius: 50%;
    z-index: 2;
}

.ticket-info-stub::before {
    left: -29px;
    border-left-color: transparent;
    border-top-color: transparent;
    transform: rotate(45deg);
}

.ticket-info-stub::after {
    right: -29px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}

.film-card-ticket:hover .ticket-info-stub::before,
.film-card-ticket:hover .ticket-info-stub::after {
    border-color: var(--primary-red);
}

.ticket-info-stub h4 {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
    transition: var(--transition);
}

.film-card-ticket:hover .ticket-info-stub h4 {
    color: var(--primary-red);
}

.ticket-rating {
    font-family: 'Barlow', sans-serif;
    color: #b8860b;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.play-hover-btn-ticket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.4rem;
    z-index: 3;
    opacity: 0;
    box-shadow: 0 10px 20px rgba(214, 0, 0, 0.3);
    transition: var(--transition);
}

.film-card-ticket:hover .play-hover-btn-ticket {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ANALOG FILM STRIP MARQUEE (Vibrant & Retro-Modern) */
.film-strip-wrapper {
    position: relative;
    background: #111;
    padding: 40px 0;
    border-top: 4px solid var(--gold-solid);
    border-bottom: 4px solid var(--gold-solid);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

/* Sprocket holes background lines top & bottom */
.film-strip-wrapper::before, .film-strip-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 18px;
    background: repeating-linear-gradient(90deg, #111, #111 8px, #fff 8px, #fff 20px, #111 20px, #111 28px);
    z-index: 5;
    opacity: 0.95;
}

.film-strip-wrapper::before {
    top: 8px;
}

.film-strip-wrapper::after {
    bottom: 8px;
}

.news-marquee-container {
    padding: 10px 0;
}

.news-image {
    height: 250px;
    width: auto;
    object-fit: cover;
    border: 8px solid #000;
    outline: 1px solid rgba(255,255,255,0.15);
    margin: 0 10px;
    filter: sepia(0.2) contrast(1.1);
    transition: var(--transition);
}

.news-image:hover {
    transform: scale(1.04) rotate(1deg);
    filter: sepia(0) contrast(1.2);
    outline-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6) !important;
}

/* CineBridge Impact */
.cinebridge-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cinebridge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3,27,51,0.92) 0%, rgba(214,0,0,0.85) 100%);
    z-index: 1;
}

/* Footer (Dark Premium Cinematic Navy) */
.footer {
    background-color: #030F1C;
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 35px;
    border-top: 4px solid var(--gold-solid);
}

.footer h5 {
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: 'Cinzel', serif;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-solid) !important;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Spacing and Common Classes */
.py-large {
    padding: 110px 0;
}

.section-tag {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--primary-navy);
}

/* Animation utilities */
[data-aos] {
    transition-duration: 700ms !important;
}