
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a0a0a;
            --gold: #d4af37;
            --light-gold: #f4e5c3;
            --white: #ffffff;
            --light-bg: #fafafa;
            --gray: #6b6b6b;
            --dark-gray: #2a2a2a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
            overflow-x: hidden;
            line-height: 1.7;
            background: var(--white);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            text-decoration: none;
        }

        .logo span {
            color: var(--gold);
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s;
            border-radius: 2px;
        }

        /* Page Hero */
        .page-hero {
            height: 70vh;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.6)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
            position: relative;
        }

        .page-hero-content {
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-hero-badge {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .page-hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Section Styles */
        section {
            padding: 8rem 5%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: var(--light-gold);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Who We Are */
        .who-we-are {
            background: var(--white);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .intro-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.3;
            color: var(--primary);
        }

        .intro-text h3 span {
            color: var(--gold);
        }

        .intro-text p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 1.8rem;
            line-height: 1.9;
        }

        .intro-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-box {
            text-align: center;
            padding: 2rem 1rem;
            background: var(--light-bg);
            border-radius: 8px;
        }

        .stat-box h4 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .stat-box p {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 600;
            margin: 0;
        }

        .intro-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        /* Philosophy Section */
        .philosophy {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark-gray) 100%);
            color: var(--white);
        }

        .philosophy .section-badge {
            background: rgba(212, 175, 55, 0.2);
            color: var(--gold);
        }

        .philosophy .section-title {
            color: var(--white);
        }

        .philosophy .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .philosophy-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .philosophy-text {
            font-size: 1.25rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
        }

        .philosophy-pillars {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .pillar-item {
            text-align: center;
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.15);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--gold);
            transition: all 0.4s;
        }

        .pillar-item:hover .pillar-icon {
            background: var(--gold);
            color: var(--primary);
            transform: scale(1.1);
        }

        .pillar-item h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--white);
        }

        /* Mission Section */
        .mission {
            background: var(--light-bg);
        }

        .mission-content {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white);
            padding: 4rem;
            border-radius: 8px;
            border-left: 6px solid var(--gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .mission-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            line-height: 1.9;
            color: var(--primary);
            font-style: italic;
            position: relative;
            padding-left: 3rem;
        }

        .mission-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 6rem;
            color: var(--gold);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        /* Leadership Section */
        .leadership {
            background: var(--white);
        }

        .leadership-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 5rem;
            align-items: center;
        }

        .leader-image {
            text-align: center;
        }

        .leader-card {
            background: linear-gradient(135deg, var(--gold), #c49930);
            padding: 3rem;
            border-radius: 8px;
            color: var(--white);
            text-align: center;
        }

        .leader-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .leader-card p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
        }

        .experience-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .leader-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .leader-text p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .expertise-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .expertise-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            color: var(--gray);
        }

        .expertise-item i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        /* Capabilities Section */
        .capabilities {
            background: var(--light-bg);
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .capability-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 3px solid transparent;
        }

        .capability-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-top-color: var(--gold);
        }

        .capability-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), #c49930);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--white);
        }

        .capability-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }

        .capability-card p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        /* Why Choose Us */
        .why-choose {
            background: var(--white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .why-card {
            background: var(--light-bg);
            padding: 3rem 2rem;
            border-radius: 8px;
            transition: all 0.4s;
        }

        .why-card:hover {
            background: var(--white);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .why-number {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .why-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .why-card p {
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
        }

        /* Clients Section */
        .clients {
            background: var(--primary);
            color: var(--white);
        }

        .clients .section-badge {
            background: rgba(212, 175, 55, 0.2);
            color: var(--gold);
        }

        .clients .section-title {
            color: var(--white);
        }

        .clients .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .client-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.4s;
            padding: 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
        }

        .client-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            transform: translateY(-8px);
        }

        /* Footprint Section */
        .footprint {
            background: var(--light-bg);
        }

        .footprint-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .city-badge {
            background: var(--white);
            padding: 1.5rem 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .city-badge:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--gold), #c49930);
            color: var(--primary);
            padding: 6rem 5%;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .btn {
            padding: 1.1rem 2.8rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn-dark {
            background: var(--primary);
            color: var(--white);
        }

        .btn-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(10, 10, 10, 0.3);
        }

        /* Footer */
        footer {
            background: #000000;
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-about h3 span {
            color: var(--gold);
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .page-hero h1 {
                font-size: 4rem;
            }

            .section-title {
                font-size: 3rem;
            }

            .philosophy-pillars {
                grid-template-columns: repeat(3, 1fr);
            }

            .capabilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cities-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 968px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                gap: 2rem;
                transition: right 0.4s;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .page-hero h1 {
                font-size: 3rem;
            }

            .intro-content,
            .leadership-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .intro-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .philosophy-pillars {
                grid-template-columns: repeat(2, 1fr);
            }

            .capabilities-grid,
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .cities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            section {
                padding: 5rem 5%;
            }
        }

        @media (max-width: 640px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .intro-stats {
                grid-template-columns: 1fr;
            }

            .philosophy-pillars,
            .capabilities-grid,
            .clients-grid,
            .cities-grid {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }
        }
