 :root {
            --primary: #0a0a0a;
            --primary-light: #1a1a1a;
            --secondary: #f9c80e;
            --accent: #ffd166;
            --white: #ffffff;
            --gray-100: #f3f3f3;
            --gray-300: #d1d1d1;
            --gray-500: #6b6b6b;
            --gray-700: #2d2d2d;
            --gray-900: #121212;

            --font-main: 'Inter', sans-serif;
            --font-heading: 'Space Grotesk', sans-serif;

            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

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

        body {
            font-family: var(--font-main);
            background-color: var(--primary);
            color: var(--gray-300);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;

        }



        .logo img {
            height: 50px;
            /* Adjust height as needed */
            width: auto;
            object-fit: contain;
        }


        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
        }

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

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

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .tagline {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(249, 200, 14, 0.15);
            color: var(--secondary);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .hero-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--gray-300);
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1rem;
            border: 2px solid transparent;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--gray-700);
        }

        .btn-outline:hover {
            border-color: var(--secondary);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Our Story Section */
        .our-story {
            padding: 100px 0;
            background: var(--gray-900);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--gray-500);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-content h3 {
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .story-content p {
            margin-bottom: 25px;
            color: var(--gray-300);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .stat-text {
            font-size: 1rem;
            color: var(--gray-300);
        }

        .story-visual {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .story-visual img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(249, 200, 14, 0.3);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(249, 200, 14, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .feature-card h4 {
            font-size: 1.4rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--gray-500);
        }

        /* Footer */
        footer {
            background: var(--gray-900);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-text {
            color: var(--gray-500);
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-500);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--gray-500);
            font-size: 0.9rem;
        }



        .hero-showcase {
            position: relative;
            z-index: 1;
        }

        .showcase-video {
            position: relative;
            border-radius: var(--border-radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            background: var(--gray-900);
        }

        .showcase-vid {
            width: 100%;
            height: 300px;
            object-fit: contain;
            transition: var(--transition-slow);
        }

        .video-controls {
            position: absolute;
            bottom: var(--space-4);
            left: var(--space-4);
            right: var(--space-4);
            display: flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-3);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ............... */
        /* ================================================== */
        /* FINAL CSS FOR NEW SECTIONS - COPY THIS ENTIRE BLOCK */
        /* ================================================== */

        /* --- General Section Styling --- */
        .page-section {
            padding: 100px 0;
            overflow: hidden;
        }

        /* This creates the alternating background effect for clear separation */
        .page-section.alt-bg {
            background-color: var(--gray-900);
        }

        /* --- Section 1: Expertise --- */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .expertise-item {
            background-color: var(--primary-light);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .expertise-item:hover {
            transform: translateY(-5px);
            border-color: rgba(249, 200, 14, 0.3);
            /* Using your accent color for hover */
        }

        .expertise-item .item-number {
            font-family: var(--font-heading);
            color: var(--secondary);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .expertise-item .item-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .expertise-item .item-description {
            color: var(--gray-300);
            line-height: 1.7;


        }

        /* ============================================= */
        /* STYLE FOR YELLOW "OUR EXPERTISE" SECTION      */
        /* ============================================= */

        /* Selects the first section, which is "Our Expertise" */
        #new-sections-wrapper .page-section:first-child {
            background-color: var(--secondary);
            /* Using your yellow color variable */
        }

        /* --- Change text colors inside the yellow section for contrast --- */

        /* Make the main title and subtitle black */
        #new-sections-wrapper .page-section:first-child .section-title,
        #new-sections-wrapper .page-section:first-child .section-subtitle {
            color: var(--primary);
        }

        /* Make the item titles black */
        #new-sections-wrapper .page-section:first-child .item-title {
            color: var(--primary);
        }

        /* Make the item descriptions a dark, readable gray */
        #new-sections-wrapper .page-section:first-child .item-description {
            color: var(--gray-700);
        }

        /* Make the item number a slightly transparent black to be less harsh */
        #new-sections-wrapper .page-section:first-child .item-number {
            color: rgba(10, 10, 10, 0.5);
        }

        /* Adjust the hover effect for the new background */
        #new-sections-wrapper .page-section:first-child .expertise-item {
            background-color: transparent;
            border-color: rgba(10, 10, 10, 0.2);
        }

        #new-sections-wrapper .page-section:first-child .expertise-item:hover {
            background-color: var(--accent);
            /* Uses your lighter yellow for hover */
            border-color: rgba(10, 10, 10, 0.4);
        }

        /* --- Section 2: Selected Works --- */
        /* ================================================== */
        /* CSS FOR THE NEW "OUR WORKS" REELS SECTION          */
        /* ================================================== */

        .reels-grid {
            display: grid;
            /* Creates a 3-column grid on larger screens */
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .reel-card {
            text-align: center;
            transition: transform 0.3s ease-out;
        }

        .reel-card:hover {
            transform: translateY(-10px);
        }

        /* This creates the phone-like frame */
        .reel-frame {
            background-color: #000;
            /* Black phone body */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            /* Rounded corners for the phone */
            padding: 0px;
            /* This creates the bezel */
            box-shadow: var(--shadow-lg);
            max-width: 320px;
            /* Limits the width of the phone */
            margin: 0 auto;
        }

        .reel-frame video {
            width: 100%;
            height: auto;
            /* This enforces the vertical 9:16 aspect ratio of a reel */
            aspect-ratio: 9 / 16;
            object-fit: cover;
            display: block;
            border-radius: 20px;
            /* Rounded corners for the "screen" */
        }

        .reel-title {
            font-family: var(--font-heading);
            color: var(--gray-300);
            font-weight: 500;
            font-size: 1.1rem;
            margin-top: 20px;
        }

        /* --- Responsive Adjustments for smaller screens --- */
        @media (max-width: 992px) {
            .reels-grid {
                /* On tablets, switch to a 2-column grid */
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .reels-grid {
                /* On mobile phones, stack the reels in a single column */
                grid-template-columns: 1fr;
            }
        }

        /* .................. */


        /* ============================================= */
        /* CSS FOR RESPONSIVE HEADER & MOBILE NAVIGATION */
        /* ============================================= */

        /* Visually hide an element, but keep it accessible to screen readers */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* --- Navigation & Mobile Toggle Styling --- */
        .navigation {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            color: var(--gray-300);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary);
        }

        .mobile-nav-toggle {
            display: none;
            /* Hidden on desktop */
            position: absolute;
            z-index: 1001;
            top: 1.5rem;
            right: 1.5rem;
            background: transparent;
            border: 0;
            cursor: pointer;
        }

        .mobile-nav-toggle .fa-times {
            display: none;
        }

        .mobile-nav-toggle .fa-bars,
        .mobile-nav-toggle .fa-times {
            color: var(--white);
            font-size: 1.5rem;
        }


        /* --- Mobile Styles using Media Query --- */
        @media (max-width: 768px) {
            .navigation {
                position: fixed;
                z-index: 1000;
                inset: 0 0 0 30%;
                /* top, right, bottom, left */

                flex-direction: column;
                justify-content: center;
                gap: 40px;
                padding: min(20vh, 10rem) 2em;

                background: rgba(10, 10, 10, 0.85);
                backdrop-filter: blur(1rem);

                transform: translateX(100%);
                transition: transform 350ms ease-out;
            }

            .navigation[data-visible="true"] {
                transform: translateX(0%);
            }

            .navigation .nav-link {
                font-size: 1.2rem;
            }

            .navigation .btn-primary {
                width: 100%;
                text-align: center;
            }

            .mobile-nav-toggle {
                display: block;
                /* Show the hamburger button on mobile */
            }

            /* Logic to switch between hamburger and close icon */
            .mobile-nav-toggle[aria-expanded="true"] .fa-bars {
                display: none;
            }

            .mobile-nav-toggle[aria-expanded="true"] .fa-times {
                display: block;
            }
        }




        /* ============================================= */
        /* CSS FOR THE CONTACT FORM SECTION              */
        /* ============================================= */

        .contact-form {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            width: 100%;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
            /* Makes the element span both columns */
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: var(--gray-300);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--primary);
            border: 1px solid var(--gray-700);
            border-radius: 8px;
            color: var(--white);
            font-family: var(--font-main);
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-500);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            /* Highlights with your yellow color on focus */
            box-shadow: 0 0 0 3px rgba(249, 200, 14, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            /* Allows users to resize the message box vertically */
        }

        .form-submit-wrapper {
            text-align: center;
            margin-top: 30px;
        }

        /* Responsive adjustment for the form grid */
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                /* Stacks form fields on mobile */
            }
        }



        /* Responsive Design */
        @media (max-width: 992px) {
            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-visual {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 60px;
            }

            .btn-group {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .features {
                padding: 70px 0;
            }

            .our-story {
                padding: 70px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }

            .hero-text {
                font-size: 1.1rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 30px 20px;
            }
        }