        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-dark: #0f172a;
            --primary-green: #064e3b;
            --accent-green: #22c55e;
            --text-light: #e5e7eb;
            --text-gray: #9ca3af;
            --bg-light: #f8fafc;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Inter', Arial, sans-serif;
            margin: 0;
            color: #1f2937;
            line-height: 1.7;
            background: #fff;
            overflow-x: hidden
        }

        /* --- NAVIGATION --- */
        nav {
            background: transparent;
            padding: 15px 3%;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all .4s ease;
            box-shadow: none
        }

        nav.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            padding: 10px 5%;
            box-shadow: var(--shadow-md)
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #22c55e;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: color .3s
        }

        .logo img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2))
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all .3s ease;
            position: relative;
            padding: 5px 0
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width .3s ease
        }

        .nav-links a:hover {
            color: var(--accent-green)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .mobile-menu-toggle {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none
        }

        /* --- HERO --- */
        header {
            background: linear-gradient(135deg, #0f172a 0%, #064e3b 50%, #065f46 100%);
            color: #fff;
            padding: 100px 5% 60px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease
        }

        .hero-brand-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            width: 100%;
        }

        .hero-brand-wrapper img {
            max-width: 90px;
            height: auto;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
            flex-shrink: 0
        }

        header h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3.5vw, 3.2rem);
            margin: 0;
            font-weight: 700;
            line-height: 1.3;
            text-align: left;
            background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 5px;
            white-space: nowrap;
        }

        header p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: .95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto
        }

        header p strong {
            color: var(--accent-green);
            font-weight: 600
        }

        section {
            padding: 60px 5%;
            max-width: 1400px;
            margin: 0 auto
        }

        .section-header {
            text-align: center;
            margin-bottom: 30px
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary-dark);
            margin-bottom: 12px;
            position: relative;
            display: inline-block
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
            border-radius: 2px
        }

        .section-header p {
            color: #64748b;
            font-size: 1.05rem;
            max-width: 700px;
            margin: 16px auto 0
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 30px
        }

        /* --- MOVED TAGLINE STYLE --- */
        .about-tagline {
            font-family: 'Inter', sans-serif;
            /* Matches the hero font family */
            font-size: 1.2rem;
            /* Similar size to hero tagline */
            font-weight: 600;
            /* Boldness match */
            text-transform: uppercase;
            /* All Caps like the title */
            letter-spacing: 2px;
            /* Spaced out like the title */
            color: #000000;
            /* COLOR CHANGED TO BLACK */
            margin-top: 10px;
            /* Spacing below the H2 */
            margin-bottom: 20px;
            /* Spacing above the paragraph */
            text-align: center;
            line-height: 1.5;
        }

        /* Mobile Adjustment */
        @media (max-width: 768px) {
            .about-tagline {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
        }

        /* --- STANDARD CARD STYLES (For Initiatives) --- */
        .card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            height: 100%;
            padding: 0;
            box-shadow: var(--shadow-sm);
            transition: all .4s cubic-bezier(.4, 0, .2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp .6s ease backwards;
            display: flex;
            flex-direction: column;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s ease;
            z-index: 2;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-green)
        }

        .card:hover::before {
            transform: scaleX(1)
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #f1f5f9;
            transition: transform 0.5s ease;
        }

        .card:hover img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-title {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1.15rem;
            text-align: center;
        }

        .card-icon {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 12px;
            display: block;
            text-align: center;
            transition: all .3s ease
        }

        .card:hover .card-icon {
            color: var(--accent-green);
            transform: scale(1.1)
        }

        /* --- 3D FLIP CARD ANIMATION STYLES --- */

        .flip-card {
            background-color: transparent;
            height: 320px;
            /* Slightly taller for a grander look */
            perspective: 1000px;
            /* Essential for the 3D depth */
            cursor: pointer;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            /* Smooth spring flip */
            transform-style: preserve-3d;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* The Flip Action */
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
            /* Subtle green glow on flip */
        }

        /* Common Styles for Faces */
        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            /* Safari support */
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
        }

        /* --- FRONT FACE STYLING --- */
        .flip-card-front {
            background-color: #fff;
        }

        .flip-card-front img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        /* Subtle zoom on hover */
        .flip-card:hover .flip-card-front img {
            transform: scale(1.1);
        }

        /* Front Overlay */
        .front-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
            text-align: left;
        }

        .front-title {
            color: #fff;
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .front-subtitle {
            color: var(--accent-green);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* --- BACK FACE STYLING --- */
        .flip-card-back {
            background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary-green) 100%);
            color: white;
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .back-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .separator {
            width: 50px;
            height: 3px;
            background-color: var(--accent-green);
            margin: 0 auto 20px auto;
            border-radius: 2px;
        }

        .back-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #e2e8f0;
            margin: 0;
        }

        /* --- Founders Specific Styles --- */
        #founders .card {
            padding: 28px;
            display: block;
            height: auto;
        }

        #founders .card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--primary-green);
            font-weight: 600;
        }

        #about {
            background: var(--bg-light)
        }

        #about .content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #475569
        }

        .cta {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
            color: #fff;
            text-align: center;
            padding: 60px 5%;
            position: relative;
            overflow: hidden
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto
        }

        .cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 16px;
            color: #fff
        }

        .cta p {
            font-size: 1.1rem;
            margin-bottom: 24px;
            opacity: .95;
            line-height: 1.6
        }

        /* Founder Name Links */
        .founder-link {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            /* Space between name and icon */
        }

        .founder-link i {
            font-size: 1.2rem;
            /* Icon size */
        }

        .founder-link:hover {
            color: #0077b5;
            /* LinkedIn Blue on hover */
        }

        .cta-button {
            display: inline-block;
            background: var(--accent-green);
            color: #022c22;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all .3s ease;
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
            position: relative;
            overflow: hidden
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4)
        }

        footer {
            background: #020617;
            color: var(--text-gray);
            text-align: center;
            padding: 30px 5%
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
            flex-wrap: wrap
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color .3s ease
        }

        .footer-links a:hover {
            color: var(--accent-green)
        }

        footer p {
            margin-top: 12px;
            font-size: .9rem
        }

        /* --- CINEMATIC REVEAL CARD STYLES --- */

        /* --- CINEMATIC REVEAL CARD STYLES (UPDATED FOR FULL IMAGE) --- */

        .cinema-card {
            background: #000;
            position: relative;
            height: 520px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .cinema-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .cinema-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .cinema-text {
            transform: none;
        }

        /* The Overlay Gradient */
        .cinema-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            /* Darker gradient at bottom to ensure text is readable over the image container */
            background: linear-gradient(to top, rgba(2, 6, 23, 0.4) 10%, rgba(15, 23, 42, 0.2) 40%, transparent 100%);
            padding: 30px 24px;
            transform: translateY(0);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: flex-end;
            height: 100%;
        }

        /* Content Container */
        .cinema-text {
            width: 100%;
            transform: translateY(40px);
            /* Push bio down initially */
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cinema-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 6px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .cinema-role {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-green);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cinema-bio {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0;
            /* Hidden initially */

            /* UPDATE THIS LINE to include max-height in the transition */
            transition: opacity 0.4s ease 0.1s, max-height 0.4s ease 0.1s;

            max-height: 0;
        }

        /* --- HOVER ANIMATIONS --- */

        /* 1. Zoom Image & Darken */
        .cinema-card:hover img {
            transform: scale(1.05);
            /* Subtle zoom */
            opacity: 0.5;
        }

        /* 2. Slide text up */
        .cinema-card:hover .cinema-text {
            transform: translateY(0);
        }

        /* 3. Reveal Bio */
        .cinema-card:hover .cinema-bio {
            opacity: 1;
            max-height: 200px;
        }

        /* 4. Increase Gradient Strength */
        .cinema-card:hover .cinema-overlay {
            background: linear-gradient(to top, rgba(2, 6, 23, 1) 30%, rgba(15, 23, 42, 0.9) 70%, transparent 100%);
        }

        /* Mobile Adjustment */
        @media(max-width: 768px) {

            /* Slightly shorter on mobile, but still tall enough for portraits */
            .cinema-card {
                height: 420px;
            }
        }

        /* --- HOVER ANIMATIONS --- */

        /* 1. Zoom Image & Darken slightly */
        .cinema-card:hover img {
            transform: scale(1.1);
            opacity: 0.6;
            /* Darken image to make text pop */
        }

        /* 2. Slide text up */
        .cinema-card:hover .cinema-text {
            transform: translateY(0);
        }

        /* 3. Reveal Bio */
        .cinema-card:hover .cinema-bio {
            opacity: 1;
            max-height: 200px;
            /* Allow text to expand */
        }

        /* 4. Increase Gradient Strength */
        .cinema-card:hover .cinema-overlay {
            background: linear-gradient(to top, rgba(15, 23, 42, 1) 20%, rgba(15, 23, 42, 0.7) 70%, transparent 100%);
        }

        /* Mobile Adjustment */
        @media(max-width: 768px) {
            .cinema-card {
                height: 350px;
            }

            /* On mobile, show bio slightly if desired, or keep hidden until tap */
        }

        @keyframes fadeIn {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: .5
            }

            50% {
                transform: scale(1.1);
                opacity: .8
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all .8s ease
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0)
        }

        @media(max-width:768px) {
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                transform: translateX(-100%);
                transition: transform .3s ease
            }

            .nav-links.active {
                transform: translateX(0)
            }

            .nav-links a {
                padding: 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1)
            }

            .mobile-menu-toggle {
                display: block
            }

            header {
                padding: 80px 5% 50px
            }

            section {
                padding: 40px 5%
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 16px
            }

            #founders .grid {
                grid-template-columns: 1fr
            }

            .cta {
                padding: 45px 5%
            }

            .hero-brand-wrapper {
                flex-direction: column;
                gap: 14px
            }

            header h1 {
                text-align: center;
                white-space: normal;
                font-size: 2.2rem
            }
        }

        /* --- EXPANDABLE SOCIAL WIDGET STYLES (FIXED) --- */

        .social-widget-wrapper {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
        }

        .social-widget {
            display: flex;
            align-items: center;
            height: 60px;
            width: 60px;
            background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%);
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        /* --- THE TRIGGER ICON --- */
        .widget-trigger {
            min-width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 1.5rem;
            z-index: 2;
            background: transparent;
            transition: transform 0.5s ease;
            /* Moved transition here for smoothness */
        }

        /* --- THE HIDDEN ICONS CONTAINER --- */
        .hidden-icons {
            display: flex;
            align-items: center;
            padding-right: 20px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }

        .s-icon {
            width: 40px;
            height: 40px;
            margin: 0 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            color: #cbd5e1;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* --- HOVER / EXPAND STATE (FIXED) --- */

        /* 1. Expand the Widget */
        .social-widget:hover,
        .social-widget:focus-within {
            width: 280px;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-color: var(--accent-green);
        }

        /* 2. Rotate the Trigger (Added focus-within) */
        .social-widget:hover .widget-trigger,
        .social-widget:focus-within .widget-trigger {
            color: var(--accent-green);
            transform: rotate(90deg);
        }

        /* 3. Reveal the Icons (Added focus-within) */
        .social-widget:hover .hidden-icons,
        .social-widget:focus-within .hidden-icons {
            opacity: 1;
            transform: translateX(0);
        }

        /* --- ICON HOVER COLORS --- */
        .s-icon:hover {
            background: #fff;
            transform: translateY(-3px);
        }

        .s-icon.instagram:hover {
            color: #d6249f;
        }

        .s-icon.linkedin:hover {
            color: #0077b5;
        }

        .s-icon.facebook:hover {
            color: #1877F2;
        }

        .s-icon.youtube:hover {
            color: #FF0000;
        }

        /* --- MOBILE RESPONSIVENESS (FIXED) --- */
        @media (max-width: 480px) {
            .social-widget-wrapper {
                bottom: 20px;
                left: 20px;
            }

            .social-widget {
                height: 50px;
                width: 50px;
            }

            .widget-trigger {
                min-width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            /* FIX: Added focus-within to ensure mobile sizing applies correctly on tap */
            .social-widget:hover,
            .social-widget:active,
            .social-widget:focus-within {
                width: 240px;
            }
        }

        .core-words span {
            display: none;
            animation: rotateWords 6s linear infinite;
        }

        .core-words span:nth-child(1) {
            animation-delay: 0s;
            display: inline-block;
        }

        .core-words span:nth-child(2) {
            animation-delay: 2s;
        }

        .core-words span:nth-child(3) {
            animation-delay: 4s;
        }

        @keyframes rotateWords {

            0%,
            20% {
                opacity: 1
            }

            30%,
            100% {
                opacity: 0
            }
        }