   :root {
            --black:   #000000;
            --white:   #ffffff;
            --green:   #006400;     /* dark green – elegant & professional */
            --green-light: #228B22; /* slightly lighter green for accents/hover */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--white);
            color: var(--black);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .container {
            width: 88%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Custom Cursor – Green accent */
        .cursor {
            position: fixed;
            width: 22px;
            height: 22px;
            border: 2px solid var(--green);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            transition: all 0.18s ease;
            z-index: 99999;
            mix-blend-mode: difference;
        }

        .cursor.active {
            width: 70px;
            height: 70px;
            background: rgba(0,100,0,0.25);
            border-color: transparent;
        }

        /* Hero */
        #hero {
            height: 100vh;
            min-height: 880px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--black);
            color: var(--white);
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1000px;
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: clamp(5.5rem, 13vw, 11rem);
            line-height: 0.88;
            margin-bottom: 1.6rem;
            opacity: 0;
            transform: translateY(100px);
            transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .hero-content .subtitle {
            font-size: clamp(1.5rem, 4.5vw, 2.4rem);
            font-weight: 300;
            max-width: 780px;
            margin: 0 auto 3.5rem;
            opacity: 0;
            transform: translateY(70px);
            transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
        }

        .reveal {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.3rem 3.2rem;
            background: var(--green);
            color: var(--white);
            font-size: 1.35rem;
            font-weight: 600;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.5s ease;
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
            opacity: 0;
            transform: translateY(60px);
            transition-delay: 0.5s;
        }

        .hero-cta:hover {
            transform: translateY(-12px);
            background: var(--green-light);
            box-shadow: 0 24px 56px rgba(0,100,0,0.5);
        }

        /* Sections */
        section {
            padding: 160px 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(4.5rem, 11vw, 10rem);
            color: rgba(0,0,0,0.04);
            position: absolute;
            top: 60px;
            left: 4%;
            pointer-events: none;
            user-select: none;
            z-index: 1;
            white-space: nowrap;
            font-weight: 900;
        }

        /* Mission / Vision – Monochrome split */
        #mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
        }

        .mv-block {
            padding: 120px 9%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #mission {
            background: var(--black);
            color: var(--white);
        }

        #vision {
            background: var(--white);
            color: var(--black);
            border-left: 1px solid rgba(0,0,0,0.08);
        }

        .mv-block h2 {
            font-size: clamp(5rem, 10vw, 9.5rem);
            line-height: 0.9;
            margin-bottom: 2.2rem;
            opacity: 0;
            transform: translateX(-70px);
        }

        .mv-block p {
            font-size: 1.45rem;
            max-width: 600px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1.3s ease;
        }

        /* Values – Clean elevated cards */
        #values {
            background: var(--white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 3.5rem;
        }

        .value-card {
            background: var(--white);
            padding: 3.8rem 2.8rem;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 24px;
            transition: all 0.7s ease;
            opacity: 0;
            transform: translateY(90px);
        }

        .value-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card:hover {
            transform: translateY(-20px);
            border-color: var(--green);
            box-shadow: 0 30px 70px rgba(0,100,0,0.12);
        }

        .value-card h3 {
            font-size: 2.4rem;
            margin-bottom: 1.3rem;
            color: var(--green);
        }

        /* Timeline – Minimal line + green dots */
        #journey {
            background: var(--white);
        }

        .timeline {
            position: relative;
            max-width: 1180px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: rgba(0,0,0,0.15);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin: 130px 0;
            opacity: 0;
            transform: translateY(120px);
            transition: all 1.3s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(even) { flex-direction: row-reverse; }

        .timeline-content {
            width: 45%;
            padding: 2.8rem;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.07);
            border-radius: 18px;
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 0;
            height: 0;
            border: 12px solid transparent;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -24px;
            border-left-color: var(--white);
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -24px;
            border-right-color: var(--white);
            transform: translateY(-50%);
        }

        .timeline-dot {
            width: 22px;
            height: 22px;
            background: var(--green);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 20px rgba(0,100,0,0.3);
        }

        /* Reach – Border accent on hover */
        #reach {
            background: var(--black);
            color: var(--white);
        }

        .reach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 3rem;
        }

        .reach-card {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 20px;
            padding: 3.2rem 2.6rem;
            transition: all 0.6s ease;
        }

        .reach-card:hover {
            border-color: var(--green);
            transform: translateY(-18px);
        }

        .reach-card h3 {
            font-size: 2.6rem;
            margin-bottom: 1.3rem;
            color: var(--green);
        }

        /* Final CTA */
        #cta {
            background: var(--green);
            color: var(--white);
            text-align: center;
            padding: 200px 0;
        }

        #cta h2 {
            font-size: clamp(5rem, 11vw, 10rem);
            line-height: 0.88;
            margin-bottom: 2.5rem;
        }

        .cta-btn {
            padding: 1.5rem 4rem;
            background: var(--white);
            color: var(--black);
            font-size: 1.5rem;
            font-weight: 600;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.5s ease;
        }

        .cta-btn:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-12px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            #mission-vision { grid-template-columns: 1fr; }
            .mv-block { min-height: auto; padding: 130px 7%; }
        }

        @media (max-width: 768px) {
            .section-title { font-size: 5rem; opacity: 0.04; }
            .timeline::before { left: 45px; }
            .timeline-item { flex-direction: column !important; }
            .timeline-content { width: 100%; margin-bottom: 3.5rem; }
            .timeline-content::before { display: none; }
            .timeline-dot { left: 45px; }
        }