* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    overscroll-behavior: auto; /* Ensure native scroll works */
    -webkit-overflow-scrolling: touch; /* Smooth scroll for iOS */
}

body {
    background-color: #050b14; /* Unified dark blue background */
    color: #fff;
    font-family: 'Arial', sans-serif;
    /* overflow-y is controlled by JS — NOT here */
}

/* Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #050b14;
}

/* General Layer Setup */
.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Layer 1: Logo */
.layer-1-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 60;
}
.layer-1-logo img {
    max-width: 400px;
    width: 80%;
}

/* Layer 2: Galaxy */
.layer-2-galaxy {
    background: url('../images/galaxy-background-layer2.jpg') no-repeat center center;
    background-size: cover;
    z-index: 10;
    transform-origin: center;
}

/* Layer 3: Moon */
.layer-3-moon {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}
.layer-3-moon img {
    height: 75vh;
    max-height: 750px;
    object-fit: contain;
    /* Lowered slightly from 30vh */
    margin-bottom: 20vh; 
}

/* Layer 4: Glowing Star */
.layer-4-star {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
    mix-blend-mode: screen; /* Extra layer of blending */
}
.layer-4-star img {
    width: 300px;
    /* Adjusted down since moon is lower */
    margin-top: 250px; 
    margin-left: 30px; 
    mix-blend-mode: screen; 
    filter: brightness(1.4) contrast(1.2);
}

/* Layer 5: Land */
.layer-5-land {
    z-index: 40;
}
.layer-5-land img {
    position: absolute;
    bottom: -5px; /* slight overlap to avoid gap */
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

/* Layer 6: Human */
.layer-6-human {
    z-index: 50;
}
.layer-6-human img {
    position: absolute;
    bottom: -2px;
    height: 42vh;
    object-fit: contain;
}

/* Layer 7: Overlay */
.layer-7-overlay {
    background: rgba(8, 30, 56, 0.50);
    z-index: 65;
    opacity: 0; /* Animated via GSAP */
}


/* --- Header --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

    /* Blurry glass shade */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Smart sticky transition */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
}

/* Becomes fixed + stronger glass once user scrolls past hero */
.header.scrolled {
    position: fixed;
    background: rgba(5, 11, 20, 0.80);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Hidden state — slides up out of view */
.header.header--hidden {
    transform: translateY(-100%);
}

.header .logo img {
    height: 40px; 
    width: auto;
    object-fit: contain;
}

/* Hide hamburger by default */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FCEBC7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header .desktop-nav a {
    color: #FCEBC7;
    font-family: "Noto Music", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin-left: 40px;
    transition: opacity 0.3s;
}

.header nav a:hover {
    opacity: 0.8;
}

/* --- Banner Text --- */
.banner-text {
    position: absolute;
    top: 45%; /* Slightly higher for perfect visual center between header and Bigfoot */
    left: 50%;
    /* transform is handled by GSAP xPercent/yPercent */
    text-align: center;
    z-index: 80;
    width: 90%;
    max-width: 1200px;
}
.banner-text h1 {
    color: #FFF;
    text-align: center;
    font-family: 'Literata', serif;
    font-size: 56px; /* Reduced from 80px for a more professional look */
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.banner-text h1 .highlight {
    color: #FCEBC7;
}
.banner-text p {
    color: #FFF;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px; /* Reduced from 32px to look cleaner */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Button --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: #C49A45;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #C49A45;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
    background-color: #a8832c; /* Darker gold - professional */
    border-color: #a8832c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(196, 154, 69, 0.45);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-icon {
    width: 22px;
    height: 22px;
    margin-left: 10px;
    stroke-width: 2.5;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* --- Shooting Stars Canvas --- */
.shooting-stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15; /* Above galaxy, below moon */
    pointer-events: none;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 30, 56, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Clip from top */
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    clip-path: inset(0 0 0% 0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(252, 235, 199, 0.1);
}

.mobile-menu-header .logo img {
    height: 38px; /* Fixed size - won't overflow */
    width: auto;
    object-fit: contain;
}

.close-menu {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(252, 235, 199, 0.4);
    border-radius: 50%;
    color: #FCEBC7;
    font-size: 28px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    transition: background 0.2s;
}

.close-menu:hover {
    background: rgba(252, 235, 199, 0.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    padding: 30px 30px;
}

.mobile-nav a {
    display: block;
    width: 100%;
    color: #FCEBC7;
    font-family: "Noto Music", sans-serif;
    font-size: 36px;
    text-decoration: none;
    font-weight: 400;
    padding: 18px 0;
    border-bottom: 1px solid rgba(252, 235, 199, 0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: #C49A45;
}

.mobile-menu.active .mobile-nav a {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger link animations */
.mobile-menu.active .mobile-nav a:nth-child(1) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav a:nth-child(2) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav a:nth-child(3) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-nav a:nth-child(4) { transition-delay: 0.55s; }
.mobile-menu.active .mobile-nav a:nth-child(5) { transition-delay: 0.65s; }
.mobile-menu.active .mobile-nav a:nth-child(6) { transition-delay: 0.75s; }

@media (max-width: 1024px) {
    .banner-text h1 { font-size: 48px; }
    .banner-text p { font-size: 20px; }
    
    .header { padding: 15px 30px; }
    .desktop-nav { display: none; } /* Hide regular nav earlier */
    .hamburger { display: flex; } /* Show hamburger earlier */
}
@media (max-width: 768px) {
    .banner-text { width: 95%; }
    .banner-text h1 { font-size: 36px; margin-bottom: 15px; }
    .banner-text p { font-size: 16px; margin-bottom: 25px; }
    .banner-text p br { display: none; } /* Let text wrap naturally on mobile */
    .btn-primary { padding: 12px 28px; font-size: 18px; }
    
    .header { padding: 15px 25px; flex-direction: row; justify-content: space-between; gap: 0; }
    .header .logo img { height: 30px; }
    
    .mobile-menu { padding: 15px 25px; }
    .mobile-nav a { font-size: 32px; }
}
@media (max-width: 480px) {
    .layer-4-star img {
    margin-top: 160px;
}
    .banner-text h1 { font-size: 28px; }
    .banner-text p { font-size: 14px; }
    .btn-primary { padding: 10px 24px; font-size: 16px; }
    .header nav a { font-size: 12px; }
}

/* --- Section 2: Founder Note --- */
.section-two {
    position: relative;
    width: 100%;
    height: 100vh; /* Exactly 100vh for pinning */
    background-color: #050b14;
    z-index: 200;
    overflow: hidden;
}

.section-two .content-wrapper {
    position: absolute;
    top: 5%; /* Pushed to the top */
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 95%; /* Make it wider */
    max-width: 1500px; /* Full width for fewer lines */
    padding: 0 20px;
    z-index: 10;
}

.section-two .section-title {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 56px; /* Slightly smaller to fit top area */
    font-weight: 700;
    margin-bottom: 20px;
}

.section-two .section-text p {
    color: #a0aec0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.section-two .gallery-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.section-two .gallery-bg {
    position: absolute;
    bottom: 0; /* Align to bottom, below text */
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1800px;
    height: 60vh; /* Take up the lower 60% of the screen */
    aspect-ratio: 2193 / 1259;
    object-fit: contain; /* Ensure all frames are visible */
    filter: blur(5px);
    opacity: 0.6;
    z-index: 1;
}

.section-two .person-img {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 55vh; /* Slightly decreased size */
    width: auto;
    aspect-ratio: 864 / 1098;
    z-index: 5;
    max-width: 95vw; /* Prevent horizontal overflow on small screens */
    object-fit: contain;
}

/* Responsive updates for section two */
@media (max-width: 1200px) {
    .section-two .content-wrapper { top: 5%; width: 95%; padding: 0 15px; }
    .section-two .section-title { font-size: 42px; margin-bottom: 15px; }
    .section-two .section-text p { font-size: 15px; line-height: 1.5; }
    .section-two .gallery-bg { height: 50vh; }
    .section-two .person-img { height: 45vh; }
}
@media (max-width: 768px) {
    .section-two .content-wrapper { top: 12%; width: 98%; padding: 0 10px; }
    .section-two .section-title { font-size: 32px; margin-bottom: 10px; }
    .section-two .section-text p { font-size: 13px; line-height: 1.5; }
    .section-two .gallery-bg { height: 45vh; }
    .section-two .person-img { height: 40vh; bottom: -5px; }
}
@media (max-width: 480px) {
    .section-two .content-wrapper { top: 15%; }
    .section-two .section-title { font-size: 26px; margin-bottom: 10px; }
    .section-two .section-text p { font-size: 12px; line-height: 1.4; }
    .section-two .gallery-bg { height: 35vh; }
    .section-two .person-img { height: 32vh; bottom: 0; }
}

/* --- Section 3: The Films We Back --- */
.section-three {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 120px 50px 80px 50px;
    overflow: hidden;
}

.s3-content {
    max-width: 1600px;
    margin: 0 auto 60px auto;
}

.s3-title {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.s3-desc {
    color: #a0aec0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

/* Swiper Carousel */
.films-slider {
    width: 100%;
    padding: 30px 0 50px 0; /* Added top padding to prevent hover cut-off */
    overflow: visible !important; /* Allow scaled slides to overflow the swiper container if needed */
}

.films-slider .swiper-slide {
    width: 320px; /* Fixed width for posters */
    height: 480px;
    margin-right: 40px;
    transition: transform 0.3s ease;
}

.films-slider .swiper-slide:hover {
    transform: scale(1.05);
}

.film-frame {
    width: 100%;
    height: 100%;
    background-color: #0d1f35;
    border: 12px solid #1a1a1a; /* Dark gray frame */
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
}

/* Add inner shadow to the frame */
.film-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.7);
    pointer-events: none;
}

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

/* Responsive updates for section three */
@media (max-width: 1200px) {
    .section-three { padding: 100px 30px 60px 30px; }
    .s3-title { font-size: 48px; }
    .films-slider .swiper-slide { width: 280px; height: 420px; margin-right: 30px; }
}
@media (max-width: 768px) {
    .section-three { padding: 80px 20px 40px 20px; }
    .s3-title { font-size: 36px; margin-bottom: 15px; text-align: center; }
    .s3-desc { font-size: 16px; text-align: center; }
    .films-slider .swiper-slide { width: 240px; height: 360px; margin-right: 20px; border-width: 8px; }
}
@media (max-width: 480px) {
    .section-three { padding: 60px 15px 30px 15px; }
    .s3-title { font-size: 35px; }
    .s3-desc { font-size: 16px; }
    .films-slider .swiper-slide { width: 200px; height: 300px; margin-right: 15px; }
}

/* --- Section 4: What This Is Becoming --- */
.section-four {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 80px 50px;
    overflow: hidden;
}

.s4-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap; /* Prevent horizontal overflow */
}

.s4-left {
    flex: 1;
    max-width: 500px;
}

.s4-title {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.s4-desc {
    color: #a0aec0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.s4-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.s4-card {
    background: rgba(13, 31, 53, 0.4);
    border: 1px solid rgba(196, 154, 69, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.s4-card:hover {
    border-color: rgba(196, 154, 69, 0.4);
    transform: translateY(-10px);
    background: rgba(13, 31, 53, 0.6);
}

.s4-icon-box {
    width: 70px;
    height: 70px;
    background: #C49A45;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.s4-icon-box img {
    width: 35px;
    height: 35px;
}

.s4-card-title {
    color: #C49A45;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

/* Responsive updates for section four */
@media (max-width: 1200px) {
    .s4-container { flex-direction: column; align-items: center; text-align: center; }
    .s4-left { max-width: 800px; margin-bottom: 50px; }
    .s4-right { justify-content: center; width: 100%; }
    .s4-title { font-size: 50px; }
}

@media (max-width: 900px) {
    .s4-right { flex-direction: column; align-items: center; }
    .s4-card { width: 100%; max-width: 400px; }
}

@media (max-width: 480px) {
    .section-four { padding: 80px 20px; }
    .s4-title { font-size: 36px; }
    .s4-desc { font-size: 16px; }
}

/* --- Section 5: How It Works --- */
.section-five {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 100px 50px;
    overflow: hidden;
}

.s5-container {
    max-width: 1600px;
    margin: 0 auto;
}

.s5-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    display: inline-block;
    position: relative;
}

/* The Blue Underline Divider seen in screenshot */
/* .s5-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e3a8a; 
} */

.s5-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.s5-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s5-step {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

/* Circular Glassmorphism Icon */
.s5-icon-circle {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(13, 31, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Adding the subtle light highlight on the circle edge */
.s5-icon-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.s5-icon-circle img {
    width: 32px;
    height: 32px;
    z-index: 2;
}

/* Step Content Card */
.s5-step-content {
    background: rgba(13, 31, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 30px;
    flex-grow: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.s5-step:hover .s5-step-content {
    background: rgba(13, 31, 53, 0.5);
    transform: translateX(10px);
}

.s5-step-content h3 {
    color: #C49A45;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.s5-step-content p {
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

/* Join Button */
.s5-btn {
    margin-top: 30px;
    background-color: #C49A45;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
    text-decoration: none;
}

.s5-btn:hover {
    background-color: #d4ac5d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
}

/* Right Side Image Box */
.s5-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.s5-image-box {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.s5-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive updates for section five */
@media (max-width: 1024px) {
    .s5-layout { flex-direction: column; gap: 50px; align-items: center;}
    .s5-right { order: -1; width: 100%; }
    .s5-image-box { max-width: 100%; height: 400px; }
}

@media (max-width: 768px) {
    .section-five { padding: 80px 20px; }
    .s5-heading { font-size: 36px; text-align: center; display: block; }
    
    .s5-step { 
        flex-direction: column; 
        text-align: center; 
        background: rgba(13, 31, 53, 0.3); 
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 30px 20px;
        gap: 15px;
    }

    .s5-icon-circle { 
        min-width: 65px; 
        height: 65px; 
        margin-bottom: 5px;
    }
    
    .s5-step-content { 
        background: none; 
        border: none; 
        padding: 0; 
    }

    .s5-step:hover .s5-step-content {
        transform: none;
    }

    .s5-step-content h3 { font-size: 18px; }
    .s5-step-content p { font-size: 14px; }
    
    .s5-btn { margin: 20px auto 0; }
}

/* --- Section 6: Experience Behind the Vision --- */
.section-six {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/cenimabg.jpg');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.s6-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s6-heading {
    position: absolute;
    top: 10%;
    left: 0;
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    z-index: 10;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

/* The Cinema Screen mapping */
.cinema-screen-wrapper {
    position: absolute;
    /* These values map the video to the screen area in the background image. 
       Adjust percentages if the background image screen alignment differs slightly. */
    top: 23%; 
    left: 17%;
    width: 66%;
    height: 48%;
    background: #000;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
}

.video-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    background: #000;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video-slide video, .video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 30px 20px 30px;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.4) 60%, rgba(5, 11, 20, 0) 100%);
    z-index: 5;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
    pointer-events: none;
}

.video-slide.active .slide-info {
    opacity: 1;
    transform: translateY(0);
}

.slide-movie-subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #C49A45;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 4px;
}

.slide-movie-title {
    font-family: 'Literata', serif;
    font-size: 26px;
    color: #FCEBC7;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cinema-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 154, 69, 0.8);
    color: #050b14;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.cinema-nav svg {
    width: 20px;
    height: 20px;
}

.cinema-nav:hover {
    background: #C49A45;
    transform: translateY(-50%) scale(1.1);
}

.prev-video { left: 20px; }
.next-video { right: 20px; }

/* Responsive adjustments for Section 6 */
@media (max-width: 1024px) {
    .s6-heading { font-size: 36px; top: 15%; }
    .cinema-screen-wrapper { top: 30%; height: 40%; }
    .cinema-nav { width: 40px; height: 40px; }
    .slide-info { padding: 40px 20px 15px 20px; }
    .slide-movie-title { font-size: 20px; }
    .slide-movie-subtitle { font-size: 10px; }
}

@media (max-width: 768px) {
    .s6-heading { font-size: 28px; top: 12%; }
    .cinema-screen-wrapper { 
        top: 26%; 
        height: 34%; 
        left: 10%; 
        width: 80%; 
        overflow: visible; 
    }
    .video-slide {
        overflow: visible;
    }
    .cinema-nav { width: 32px; height: 32px; }
    .cinema-nav svg { width: 16px; height: 16px; }
    .prev-video { left: 10px; }
    .next-video { right: 10px; }
    .slide-info { 
        position: absolute;
        bottom: -72px; 
        left: 50%; 
        transform: translateX(-50%) translateY(10px); 
        width: 85%; 
        padding: 10px 15px; 
        text-align: center;
        background: rgba(5, 11, 20, 0.85); 
        border: 1px solid rgba(196, 154, 69, 0.25);
        border-radius: 8px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        background-image: none;
    }
    .video-slide.active .slide-info { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
    .slide-movie-title { font-size: 17px; text-align: center; }
    .slide-movie-subtitle { font-size: 9px; letter-spacing: 1.5px; text-align: center; margin-bottom: 2px; }
}

/* --- Section 7: What Sets Our Slate Apart --- */
.section-seven {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 120px 50px;
    overflow: hidden;
}

.s7-container {
    max-width: 1600px;
    margin: 0 auto;
}

.s7-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
    line-height: 1.2;
    max-width: 900px;
}

.s7-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.s7-card {
    background: rgba(13, 31, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.s7-card:hover {
    background: rgba(13, 31, 53, 0.6);
    transform: translateY(-5px);
}

.s7-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #C49A45;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.s7-icon-box img {
    width: 30px;
    height: 30px;
    filter: brightness(0.1); /* Make the icon dark since the box is gold */
}

.s7-text {
    color: #C49A45;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive updates for section seven */
@media (max-width: 1024px) {
    .s7-heading { font-size: 40px; }
}

@media (max-width: 768px) {
    .section-seven { padding: 80px 20px; }
    .s7-heading { font-size: 32px; text-align: center; margin-bottom: 40px; }
    
    .s7-grid { grid-template-columns: 1fr; }
    
    .s7-card { 
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        padding: 30px 20px;
    }
    
    .s7-icon-box { margin-bottom: 20px; }
    .s7-text { font-size: 16px; }
}

/* --- Section 8: Ready to Join The Journey --- */
.section-eight {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/newsletterbg.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

/* Adding an overlay to ensure readability if the image is too bright */
.section-eight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 20, 0.4);
    z-index: 1;
}

.s8-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.s8-heading {
    color: #fff;
    font-family: 'Literata', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.s8-heading .gold-text {
    color: #FCEBC7;
}

.s8-desc {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

.s8-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.s8-input-group {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.s8-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 12px;
}

.s8-input-wrapper i {
    color: #C49A45;
    width: 20px;
    height: 20px;
}

.s8-input-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    width: 100%;
    outline: none;
}

.s8-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.s8-submit-btn {
    background-color: #C49A45;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.s8-submit-btn:hover {
    background-color: #d4ac5d;
    transform: scale(1.05);
}

/* Responsive updates for section eight */
@media (max-width: 1024px) {
    .s8-heading { font-size: 56px; }
     .section-eight {
    height: 70vh;}
}

@media (max-width: 768px) {
    .s8-heading { font-size: 42px; }
    .s8-desc { font-size: 16px; margin-bottom: 30px; }
    
    .s8-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 20px;
    }
    
    .s8-input-wrapper {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 18px 25px;
    }
    
    .s8-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
    .section-eight {
    height: 70vh;}
}

/* --- Section 9: Frequently Asked Questions --- */
.section-nine {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 120px 50px;
    overflow: hidden;
}

.s9-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.s9-left {
    flex: 0.8;
}

.s9-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 20px;
}

.s9-right {
    flex: 1.2;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question span {
    color: #FCEBC7;
    font-family: 'Literata';
    font-size: 22px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-question i {
    color: #C49A45;
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question span {
    color: #C49A45;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive updates for section nine */
@media (max-width: 1024px) {
    .s9-heading { font-size: 48px; }
    .s9-container { gap: 40px; }
}

@media (max-width: 768px) {
    .section-nine { padding: 80px 20px; }
    .s9-container { flex-direction: column; gap: 40px; align-items: center; }
    
    .s9-left { width: 100%; text-align: center; }
    .s9-heading { font-size: 36px; text-align: center; width: 100%; }
    .s9-heading br { display: none; }
    
    .faq-question span { font-size: 18px; }
    .faq-answer p { font-size: 14px; }
}

/* --- Main Footer --- */
.main-footer {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #050b14;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Gradient Overlay to hide the sharp transition line */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Depth of the fade */
    background: linear-gradient(180deg, #050b14 0%, rgba(5, 11, 20, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.footer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-landscape-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.footer-landscape-overlay img {
    width: 100%;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from flex-end */
    padding: 220px 50px 40px; /* 130px spacing from top */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto 0; /* Removed the large bottom margin */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 180px; /* Increased size */
    height: auto;
}

.footer-logo-text h3 {
    color: #FCEBC7;
    font-family: 'Literata', serif;
    font-size: 42px; /* Increased size */
    text-transform: lowercase;
    margin: 0;
    line-height: 0.9;
}

.footer-logo-text span {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Increased size */
    letter-spacing: 4px;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    color: #FCEBC7;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover img {
    opacity: 0.75;
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1600px;
    width: 100%;
    margin: auto auto 0; /* Pushes to the absolute bottom */
}

.footer-copyright p {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

.footer-copyright a {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.footer-links a {
    /* color: rgba(255, 255, 255, 0.6); */
    transition: color 0.3s ease;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive updates for footer */
@media (max-width: 1024px) {
    .footer-bottom { 
        flex-direction: column; 
        align-items: center; 
        gap: 15px; 
        text-align: center; 
    }
    .footer-links { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 10px; 
    }
    .footer-copyright p, 
    .footer-links a { 
        font-size: 14px; 
    }
}

@media (max-width: 768px) {
    .main-footer { height: auto; min-height: 70vh; padding: 60px 20px 40px; }
    .footer-content { padding: 0; gap: 40px; }
    
    .footer-top { flex-direction: column; gap: 30px; text-align: center; }
    .footer-logo { flex-direction: column; gap: 10px; }
    
    .footer-bottom { gap: 20px; }
    .footer-links { gap: 10px; font-size: 12px; }
    .footer-copyright p { font-size: 12px; }
}

/* Hide spark lightstand image on smaller screens (responsive) */
@media (max-width: 768px) {
    .spark-image-wrapper,
    .spark-image-wrapper img,
    .spark-lightstand {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Hide background image for the about-role section on smaller screens */
@media (max-width: 768px) {
    .about-role {
        background-image: none !important;
        background: none !important;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #050b14;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/galaxy-background-layer2.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transform: scale(1.1); /* For initial state and parallax */
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark blue overlay matching the theme */
    background: linear-gradient(to bottom, 
        rgba(5, 11, 20, 0.4) 0%, 
        rgba(5, 11, 20, 0.8) 60%, 
        rgba(5, 11, 20, 1) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.about-title {
    font-family: 'Literata', serif;
    /* Responsive font size: 40px on mobile to 80px on desktop */
    /* font-size: clamp(2.5rem, 10vw, 5rem);  */
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1; /* Slightly tighter for mobile */
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-title .gold-text {
    color: #FDECC1; /* Exact color from Figma */
}

.about-subtitle {
    font-family: 'Literata', serif;
    /* Responsive font size: 24px on mobile to 48px on desktop */
    font-size: clamp(1.5rem, 6vw, 2.5rem); 
    font-weight: 700;
    color: #FFF;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 750px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: #C49A45;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #C49A45;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn-more:hover {
    background-color: #a8832c; /* Darker gold */
    border-color: #a8832c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(196, 154, 69, 0.45);
}

.btn-learn-more i {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateY(5px); /* Arrow pointing down animation */
}

/* --- About Section 2: The Spark --- */
.about-spark {
    position: relative;
    width: 100%;
    background-color: #050b14; /* Solid dark blue, light beam handles the gradient */
    padding: 120px 50px 80px 50px; /* Reduced bottom padding slightly to accommodate lower image */
    overflow: hidden;
}

.spark-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Centered instead of bottom-aligned */
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2; /* Above the beam */
}

.spark-content {
    flex: 1;
    max-width: 650px;
    /* Removed padding-bottom to let it center naturally */
}

.spark-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: clamp(36px, 5vw, 55px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.spark-text p {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.spark-text p:last-child {
    margin-bottom: 0;
}

.spark-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    transform: translateY(120px); /* Increased offset to keep stand low while container centers */
}

/* The Cinematic Light Beam — spans full section, right to left */
.light-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* above background, below content */
    animation: beamPulse 4s infinite alternate ease-in-out;
}

.light-beam svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes beamPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.spark-lightstand {
    max-width: 90%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    /* Subtle blue light glow effect on the lens */
    filter: drop-shadow(-10px -10px 40px rgba(119, 172, 255, 0.2));
    position: relative;
    z-index: 2;
}

@keyframes lightFlicker {
    0% { filter: drop-shadow(0 0 20px rgba(119, 172, 255, 0.1)); }
    100% { filter: drop-shadow(0 0 40px rgba(119, 172, 255, 0.3)); }
}

/* --- About Section 3: Values / Cards --- */
.about-values {
    position: relative;
    width: 100%;
    background-color: #050b14;
    padding: 120px 50px;
    overflow: hidden;
}

/* Fades to blend with surrounding sections seamlessly */
.values-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #050b14 0%, rgba(5, 11, 20, 0) 100%);
    z-index: 5;
    pointer-events: none;
}
.values-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #050b14 0%, rgba(5, 11, 20, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.values-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.values-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.values-subheading {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Ethos Card Styling (Inner Box Layout) */
.values-card {
    background: rgba(8, 30, 56, 0.60);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}

.values-card:hover {
    background: #0d1a2e;
    transform: translateY(-5px);
}

/* ── Solid card effect: About page ── */
.about-page .values-card {
    background: rgba(13, 31, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-page .values-card:hover {
    background: rgba(13, 31, 53, 0.55);
    transform: translateY(-6px);
}

/* ── Solid card effect: Vision page ── */
.vision-page .values-card {
    background: rgba(13, 31, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.vision-page .values-card:hover {
    background: rgba(13, 31, 53, 0.55);
    transform: translateY(-6px);
}

.values-card-top {
    padding: 30px 20px 30px 20px; /* Spacing for the icon */
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-card-bottom {
    background: rgba(1, 10, 21, 0.20);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100px;
}

.values-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #C49A45;
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-icon-box img {
    width: 32px;
    height: 32px;
    filter: brightness(0.1);
}

.values-text {
    color: #C49A45; /* Gold text */
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1024px) {
    .spark-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .spark-content {
        max-width: 100%;
    }
    .spark-image-wrapper {
        margin-top: 0;
        transform: translateY(0); /* Reset the desktop offset */
        justify-content: center;
        width: 100%;
    }
    .spark-lightstand {
        max-height: 50vh;
        max-width: 70%;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-spark {
        padding: 60px 20px 40px;
        overflow: hidden;
    }
    .spark-container {
        gap: 20px;
    }
    .spark-heading {
        font-size: clamp(28px, 7vw, 38px);
        margin-bottom: 20px;
    }
    .spark-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .spark-image-wrapper {
        transform: translateY(0);
        justify-content: center;
    }
    .spark-lightstand {
        max-height: 40vh;
        max-width: 75%;
    }
    .about-values {
        padding: 80px 20px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-card {
        padding: 30px;
        text-align: center;
        align-items: center;
    }
    .values-heading {
        margin-bottom: 40px;
    }
}

/* --- About Section 4: Our Role --- */
.about-role {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-image: url('../images/moviebg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Align to top instead of center */
    padding: 40px 50px 40px; /* Increased top padding to position it perfectly in the dark space */
    overflow: hidden;
}

/* Fades to blend the background image edges with surrounding solid blue sections */
.about-role::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #050b14 0%, rgba(5, 11, 20, 0) 100%);
    pointer-events: none;
}
.about-role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #050b14 0%, rgba(5, 11, 20, 0) 100%);
    pointer-events: none;
}

.role-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top instead of center */
    position: relative;
    z-index: 10;
}

.role-content {
    flex: 1;
    max-width: 600px;
}

.role-heading {
    color: #C49A45;
    font-family: 'Literata', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.role-text p {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

.role-text p:last-child {
    margin-bottom: 0;
}

.role-empty {
    flex: 1; /* Pushes content to the left, leaves right side empty for the background chair */
}

@media (max-width: 1024px) {
    .role-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .role-content {
        max-width: 800px;
        background: rgba(5, 11, 20, 0.7); /* Adds contrast over complex background image */
        padding: 40px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }
    .role-empty {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-role {
        padding: 80px 20px;
    }
    .role-heading {
        margin-bottom: 30px;
    }
}

/* Specific responsiveness for small phones */
@media (max-width: 480px) {
    .about-hero-content {
        padding: 0 15px;
    }
    .about-title {
        margin-bottom: 10px;
    }
    .about-subtitle {
        margin-bottom: 20px;
    }
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 16px;
        gap: 8px;
        width: auto; /* Not full width anymore */
        margin: 0 auto;
    }
    .btn-learn-more i {
        width: 18px;
        height: 18px;
    }
    /* Role section on small mobile */
    .about-role {
        padding: 60px 15px;
    }
    .role-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .role-content {
        padding: 30px 20px;
    }
}

/* Projects Tabs Section */
.projects-tabs-section {
    padding: 100px 0;
    background: #050b14;
    text-align: center;
    position: relative;
}

.projects-heading {
    color: #C4A04B;
    font-family: 'Literata', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.projects-subheading {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Tabs Navigation */
.projects-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(252, 235, 199, 0.3);
    color: #C4A04B;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.tab-btn.active, .tab-btn:hover {
    background: #C4A04B;
    color: #ffffff;
    border-color: #C4A04B;
    box-shadow: 0 0 20px rgba(252, 235, 199, 0.2);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card.hidden {
    display: none;
}

.project-frame {
    position: relative;
    border: 12px solid #1a1a1a;
    border-image: linear-gradient(to bottom, #333, #0a0a0a) 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.5);
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #111;
}

.project-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-frame img {
    transform: scale(1.08);
}

.project-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    pointer-events: none;
}

/* ==========================================
   VISION PAGE
   ========================================== */

.vision-statement {
    background-color: #050b14;
    padding: 90px 40px 13px;
    text-align: center;
}

.vision-statement-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.vision-quote {
    font-family: 'Literata', serif;
    font-style: italic;
    font-size: clamp(20px, 2.8vw, 32px);
    color: #FCEBC7;
    line-height: 1.6;
    margin-bottom: 60px;
}

.vision-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #C49A45, transparent);
    margin: 0 auto 60px;
}

.vision-heading {
    font-family: 'Literata', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #C49A45;
    font-weight: 700;
    margin-bottom: 36px;
}

.vision-body p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    color: #a0aec0;
    line-height: 1.85;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .vision-statement { padding: 80px 24px; }
}

@media (max-width: 480px) {
    .vision-statement { padding: 60px 16px; }
}


/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-section {
    background-color: #050b14;
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-heading {
    font-family: 'Literata', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    color: #C49A45;
    line-height: 1.25;
    margin-bottom: 60px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text h3 {
    font-family: 'Literata', serif;
    font-size: 19px;
    color: #fff;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #a0aec0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Subtle white border */
    padding-bottom: 8px;
    transition: border-color 0.3s ease;
}

.form-group:focus-within {
    border-color: #C49A45;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7); /* Subdued light grey */
    font-weight: 400;
}

.form-group input, 
.form-group textarea {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 4px 0;
    outline: none;
    width: 100%;
}

.btn-submit {
    background: #826a3d;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    transition: all 0.4s ease;
    border-radius: 6px;
}

.btn-submit:hover {
    background: #C49A45;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .contact-container {
        padding: 0 24px;
    }
}

/* ==========================================
   POLICY & TERMS PAGES STYLES
   ========================================== */
.policy-section {
    background-color: #050b14;
    padding: 80px 0 120px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.policy-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 154, 69, 0.15);
    border-radius: 12px;
    padding: 60px;
}

.policy-content h2 {
    font-family: 'Literata', serif;
    font-size: 26px;
    color: #C49A45;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content .gold-link {
    color: #C49A45;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-content .gold-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 0 24px;
    }
    .policy-content {
        padding: 40px 24px;
    }
    .policy-content h2 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .layer-3-moon {
        z-index: 25 !important;
        top: 0 !important;
    }

    .layer-3-moon img {
        width: 100vw !important;
        max-width: 100% !important;
        height: 80vh !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .layer-3-moon img {
        max-width: 260px;
        width: 80vw;
    }
}

/* Terms & Conditions H1 */
@media (max-width: 768px) {
    .about-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        word-break: break-word;
        hyphens: none;
    }
}

/* --- Cookie Consent --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 30, 56, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(196, 154, 69, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    color: #a0aec0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content p a {
    color: #C49A45;
    text-decoration: none;
    font-weight: 500;
}

.cookie-content p a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(196, 154, 69, 0.1) !important;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}