:root {
    --primary-color: #ffcc04;
    --secondary-color: #40048c;
    --dark-bg: #121212;
    --green-blur: #00ff87;
    --text-light: #f0f0f0;
    --text-dark: #333;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--dark-bg); color: var(--text-light);
    font-family: 'Poppins', sans-serif; margin: 0;
    overflow-x: hidden; cursor: none;
}

body::before, body::after {
    content: ''; position: fixed; filter: blur(100px); z-index: -1;
}
body::before {
    width: 300px; height: 300px; left: -100px; top: 10vh;
    background: radial-gradient(circle, rgba(64, 4, 140, 0.4), transparent 70%);
    animation: aurora-move1 15s infinite alternate ease-in-out;
}
body::after {
    width: 300px; height: 300px; right: -100px; bottom: 10vh;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.3), transparent 70%);
    animation: aurora-move2 20s infinite alternate ease-in-out;
}
@keyframes aurora-move1 { from { transform: translate(0, 0) rotate(0deg); } to { transform: translate(200px, 100px) rotate(180deg); } }
@keyframes aurora-move2 { from { transform: translate(0, 0) rotate(0deg); } to { transform: translate(-200px, -100px) rotate(-180deg); } }

.custom-cursor {
    width: 25px; height: 25px; border: 2px solid var(--primary-color);
    border-radius: 50%; position: fixed; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 10000; transition: width 0.2s, height 0.2s;
}
#page-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 50; opacity: 0;
    pointer-events: none; transition: opacity 0.5s ease;
}
#page-overlay.active { opacity: 1; pointer-events: all; }
main.blurred { filter: blur(5px); transition: filter 0.5s ease; }

header { position: fixed; width: 100%; z-index: 100; padding: 1rem; }
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem; background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px); border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.logo a { color: var(--primary-color); text-decoration: none; font-size: 1.5rem; font-weight: bold; }
.nav-links { display: flex; list-style: none; margin: 0; padding: 0; }
.nav-links li { margin-left: 2.5rem; }
.nav-links a { color: var(--text-light); text-decoration: none; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-color); }
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--text-light); margin: 5px; transition: all 0.3s ease; }

.cta-button {
    display: inline-block; padding: 12px 30px; background-color: var(--primary-color);
    color: var(--text-dark); border-radius: 50px; text-decoration: none;
    font-weight: 600; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 204, 4, 0.5); }
.cta-button.secondary { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.cta-button.secondary:hover { background-color: var(--primary-color); color: var(--text-dark); }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 0 5%; position: relative; overflow: hidden;}
.hero-content { display: flex; align-items: center; width: 100%; gap: 2rem; }
.hero-text { flex: 2; text-align: left; z-index: 2; }
.hero-text h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero-text p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 500px; }
.hero-reels-masonry { flex: 3; height: 70vh; display: flex; gap: 1rem; overflow: hidden; }
.hero-reels-masonry .masonry-column { display: flex; flex-direction: column; gap: 1rem; animation: scroll-vertical 10s linear infinite; }
.hero-reels-masonry .masonry-column:nth-child(2) { animation-direction: reverse; animation-duration: 20s; }
.hero-reels-masonry .masonry-column:nth-child(3) { animation-duration: 15s; }
.masonry-column img { width: 100%; height: auto; object-fit: cover; border-radius: 15px; }

@keyframes scroll-vertical { 0% { transform: translateY(0%); } 100% { transform: translateY(-50%); } }

.category-section { padding: 6rem 2rem; }
.category-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }
.carousel-container { padding: 2rem; background: rgba(64, 4, 140, 0.1); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; backdrop-filter: blur(10px); }
.video-reel-wrapper { overflow: hidden; margin-bottom: 1.5rem; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.video-reel-wrapper:last-child { margin-bottom: 0; }
.video-reel { display: flex; width: max-content; gap: 1rem; }
.ltr .video-reel { animation: scroll-ltr 8s linear infinite; }
.rtl .video-reel { animation: scroll-rtl 5s linear infinite; }
.video-reel img { width: 250px; height: 444px; object-fit: cover; border-radius: 15px; }
@keyframes scroll-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.storytelling-section { position: relative; overflow: hidden; }
.storytelling-bg-masonry { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; gap: 1rem; z-index: 0; opacity: 0.3; }
.storytelling-bg-masonry .masonry-column { animation: scroll-vertical 80s linear infinite; }
.storytelling-bg-masonry .masonry-column:nth-child(even) { animation-direction: reverse; }
.storytelling-section::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 18, 18, 0.7); z-index: 1; }
.storytelling-content { position: relative; z-index: 2; } /* CRITICAL FIX: Ensures text is above the overlay */
.storytelling-content .subtitle { font-size: 1.2rem; margin-top: 1rem; margin-bottom: 2rem; max-width: 600px; margin-left:auto; margin-right:auto; }

.scroll-effect-section, .scroll-effect-section-2 { height: 80vh; display: flex; justify-content: center; align-items: center; text-align: center; flex-direction: column; padding: 2rem; }
.scroll-text { font-size: 3.5rem; opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out 0.2s; }
.scroll-text.visible { opacity: 1; transform: translateY(0); }
.cta-container { margin-top: 2rem; display: flex; gap: 1rem; }

.podcast-section { padding: 6rem 5%; }
.podcast-holder { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; background: rgba(64, 4, 140, 0.1); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; backdrop-filter: blur(10px); padding: 3rem; }
.podcast-info h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.podcast-info p { margin-bottom: 2rem; }
.podcast-info ul { list-style: none; padding: 0; }
.podcast-info ul li { margin-bottom: 1rem; display: flex; align-items: flex-start; }
.podcast-info ul li i { color: var(--primary-color); margin-right: 10px; margin-top: 5px; }
.podcast-visual img { width: 100%; border-radius: 15px; }

.site-footer { background-color: #0a0a0a; padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.logo-footer { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 1rem; }
.footer-links h3, .footer-social h3 { margin-bottom: 1rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li a { color: var(--text-light); text-decoration: none; margin-bottom: 0.5rem; display: block; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--primary-color); }
.footer-social a { color: var(--text-light); font-size: 1.5rem; margin-right: 1rem; transition: color 0.3s; }
.footer-social a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 2rem; }

@media screen and (max-width: 768px) {
    .custom-cursor { display: none; } body { cursor: auto; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); }
    nav { justify-content: flex-end; }
    .burger { display: block; z-index: 101; }
    .nav-links { position: fixed; right: 0; top: 0; height: 100vh; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; width: 70%; transform: translateX(100%); transition: transform 0.5s ease-in-out; }
    .nav-links.nav-active { transform: translateX(0%); }
    .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .burger.toggle .line2 { opacity: 0; }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    
    .hero { justify-content: center; text-align: center; }
    .hero-content { flex-direction: column; }
    .hero-text { text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-reels-masonry { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.15; filter: blur(4px); }
    .hero-reels-masonry .masonry-column { animation: none; }
    
    .podcast-holder { grid-template-columns: 1fr; }
    
    .scroll-text { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { margin-top: 2rem; }
}


/* --- New Site Footer Styles --- */
.site-footer {
    background-color: #0a0a0a; /* A very dark grey, slightly softer than pure black */
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    /* Creates 4 responsive columns that stack on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-footer {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-about p {
    color: #ccc;
    line-height: 1.7;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start; /* Aligns icon with the first line of text */
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.footer-contact li i {
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-top: 5px;
    width: 20px; /* Ensures text alignment is consistent */
    color: var(--primary-color);
}

.footer-contact li a, .footer-contact li span {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.social-icon-group a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Allows transform to work */
}

.social-icon-group a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #888;
}


/* --- NEW: Process Sections Styling --- */
.process-section {
    padding: 5rem 5%;
}

.process-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

/* --- Style for Section 1: "What We Do" --- */
.process-grid-one {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-card-one {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card-one:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-card-one h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-card-one p {
    color: #ccc;
    line-height: 1.6;
}

/* --- Style for Section 2: "The Process" --- */
.process-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.process-card-two {
    background: rgba(64, 4, 140, 0.1); /* Use secondary color accent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden; /* Important for containing the bottom image */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card-two:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card-two .card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1; /* Allows this area to take up available space */
}

.process-card-two h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-card-two p {
    color: #ccc;
    line-height: 1.6;
}

.process-card-two img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- NEW: Statistics Section Styling --- */
.stats-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 70%);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-content .section-title {
    text-align: left;
    margin-bottom: 3rem;
}

.stats-items-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for the list */
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    line-height: 1;
}

.stat-title {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
}

.stat-description {
    color: #bbb;
    margin: -2rem 0 0 calc(2.5rem + 1.5rem); /* Aligns with text, using icon size + gap */
    padding-bottom: 2.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.stats-items-grid > *:last-of-type {
    border-bottom: none; /* Remove border from last description */
}

/* --- Stats Carousel Styling --- */
.stats-carousel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.stats-carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
}

.stats-carousel:hover .stats-carousel-track {
    animation-play-state: paused;
}

.stats-carousel-track img {
    width: 500px; /* Adjust as needed */
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive adjustments for the stats section */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-content .section-title {
        text-align: center;
    }
    
    .stat-description {
        margin-left: 0; /* Reset alignment on stacked layout */
        text-align: center;
    }
    .stat-item {
        justify-content: center;
    }
}

/* --- Styling for HTML5 Video Elements --- */

/* This targets all videos in the masonry layouts (hero, storytelling) */
.masonry-column video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

/* This targets all videos in the horizontal carousels */
.video-reel video {
    width: 250px;
    height: 444px;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive adjustment for videos in carousels on mobile */
@media screen and (max-width: 768px) {
    .video-reel video {
        width: 200px;
        height: 355px;
    }
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loader-overlay.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Navigation CTA Button --- */
.nav-links .nav-cta-button {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 8px 22px; /* Smaller padding to fit nicely in the header */
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links .nav-cta-button:hover {
    color: var(--text-dark); /* Prevents text from inheriting the standard link hover color */
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 4, 0.4);
}

/* --- Mobile Menu Adjustment --- */
/* This makes the button look good inside the slide-out mobile menu */
@media screen and (max-width: 768px) {
    .nav-links li .nav-cta-button {
        display: inline-block; /* Ensures it behaves like a block for margin */
        margin-top: 1rem;
        padding: 12px 30px; /* It can be a bit larger on mobile */
    }
}


/* --- New Site Footer Styles --- */
.site-footer {
    background-color: #0a0a0a; /* A very dark grey, slightly softer than pure black */
    padding: 5rem 5% 0; /* Removed bottom padding to let the strip handle it */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.logo-footer {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-about p {
    color: #ccc;
    line-height: 1.7;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.footer-contact li i {
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-top: 5px;
    width: 20px;
    color: var(--primary-color);
}

.footer-contact li a, .footer-contact li span {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.social-icon-group a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icon-group a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* --- Bottom Copyright & Legal Strip --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 1rem;
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.copyright-text {
    color: #888;
    margin: 0;
}

.footer-legal-links a {
    color: #aaa;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

/* --- Responsive Footer Adjustments --- */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse; /* Puts copyright at the very bottom */
        justify-content: center;
        text-align: center;
    }

    .footer-legal-links a {
        margin: 0 0.75rem;
    }
}