/* the below style is for home page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown > a {
            display: flex;
            align-items: center;
        }

        .nav-dropdown > a::after {
            content: '▼';
            font-size: 8px;
            margin-left: 6px;
            transition: transform 0.5s ease;
        }

        .nav-dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #1a1a1a;
            border-radius: 8px;
            min-width: 200px;
            display: none;
            flex-direction: column;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            margin-top: 8px;
            padding: 8px 0;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: flex;
        }

        .dropdown-menu a {
            color: #FFFFFF;
            padding: 12px 20px;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .dropdown-menu a:first-child {
            border-radius: 8px 8px 0 0;
        }

        .dropdown-menu a:last-child {
            border-radius: 0 0 8px 8px;
        }

        .dropdown-menu a:hover {
            background-color: #ADB638;
            color: #000000;
            padding-left: 24px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 5s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .scroll-indicator {
            width: 144px;
            height: 144px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-indicator svg {
            width: 100%;
            height: 100%;
            animation: spin 12s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .scroll-indicator-center {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Marquee Section */
        .marquee-section {
            background-color: #000000;
            padding: 60px 0;
            overflow: hidden;
            transform: skewY(-2deg);
            transform-origin: center;
        }

        .marquee-section-inner {
            transform: skewY(2deg);
        }

        .marquee-row {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }

        .marquee-row.reverse {
            animation: marquee-reverse 30s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes marquee-reverse {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(50%);
            }
        }

        .marquee-text {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
        }

        .marquee-row.orange .marquee-text {
            color: #ADB638;
        }

        .marquee-row.white .marquee-text {
            color: #FFFFFF;
            opacity: 0.8;
        }

        /* Services Section */
        .services {
            background-color: #000000;
            padding: 100px 40px;
            color: #FFFFFF;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-list {
            list-style: none;
        }

        .services-list li {
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: flex-start;
            gap: 60px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .services-list li:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .services-list li:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .service-index {
            font-family: 'Space Mono', monospace;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #ADB638;
            min-width: 60px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .service-content {
            flex: 1;
        }

        .service-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 7vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .services-list li:hover .service-title {
            transform: translateX(16px);
        }

        .service-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .service-tag {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 9999px;
            padding: 8px 16px;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .services-list li:hover .service-tag {
            border-color: #ADB638;
            color: #ADB638;
        }

        .service-arrow {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            font-size: 48px;
            color: #ADB638;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .services-list li:hover .service-arrow {
            opacity: 1;
            transform: translateY(-50%) rotate(45deg);
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .marquee-text {
                font-size: 24px;
            }

            .service-title {
                font-size: 28px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .services-list li {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }
        }
/* the below style is for work page */

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -20px;
            background-color: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 0;
            min-width: 220px;
            margin-top: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            z-index: 2000;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: #ADB638;
            padding-left: 28px;
            color: #000000;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Intro Section */
        .intro {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 0;
        }

        .intro-highlight {
            color: #ADB638;
            font-weight: 700;
        }

        /* Portfolio Section */
        .portfolio {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .portfolio-item {
            border: 2px solid #000000;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .portfolio-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #ADB638, #FFB380);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image {
            transform: scale(1.05);
        }

        .portfolio-content {
            padding: 30px;
            background-color: #FFFFFF;
        }

        .portfolio-category {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 12px;
        }

        .portfolio-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: #000000;
            margin-bottom: 12px;
        }

        .portfolio-description {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 15px;
        }

        .portfolio-results {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 15px;
        }

        .result-item {
            font-size: 12px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 8px;
        }

        .result-item strong {
            color: #ADB638;
            font-weight: 700;
        }

        /* Results Section */
        .results-section {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .results-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .results-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

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

        .result-card {
            border-top: 3px solid #ADB638;
            padding-top: 25px;
        }

        .result-stat {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: #ADB638;
            line-height: 1;
            margin-bottom: 12px;
        }

        .result-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.8);
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .portfolio-title {
                font-size: 40px;
            }

            .results-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

            .results-grid {
                grid-template-columns: 1fr;
            }
        }
/* the below style is for contact us page */
        /* ============================================
           DESIGN SYSTEM - THEME & VARIABLES
           ============================================ */
        :root {
            /* Colors */
            --color-primary: #ADB638;
            --color-dark: #000000;
            --color-light: #FFFFFF;
            --color-border: rgba(0, 0, 0, 0.1);
            --color-accent: rgba(255, 77, 0, 0.1);
            
            /* Fonts */
            --font-archivo: 'Archivo Black', sans-serif;
            --font-mono: 'Space Mono', monospace;
            --font-archivo-black: 'Archivo Black', sans-serif;
            
            /* Spacing */
            --spacing-xs: 12px;
            --spacing-sm: 20px;
            --spacing-md: 40px;
            --spacing-lg: 60px;
            --spacing-xl: 80px;
            --spacing-2xl: 100px;
            
            /* Typography */
            --letter-spacing-tight: -0.04em;
            --letter-spacing-normal: -0.02em;
            --line-height-tight: 0.85;
            --line-height-normal: 1.1;
            --line-height-relaxed: 1.6;
            
            /* Z-Index */
            --z-nav: 1000;
            --z-dropdown: 2000;
            
            /* Transitions */
            --duration-fast: 0.3s;
        }

        /* ============================================
           RESET & BASE STYLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-archivo-black);
            color: var(--color-dark);
            background-color: var(--color-light);
            overflow-x: hidden;
        }

        /* ============================================
           TYPOGRAPHY UTILITIES
           ============================================ */
        .archivo-black {
            font-family: var(--font-archivo);
            font-weight: 900;
            letter-spacing: var(--letter-spacing-tight);
            line-height: var(--line-height-tight);
            text-transform: uppercase;
        }

        .space-mono {
            font-family: var(--font-mono);
            letter-spacing: var(--letter-spacing-normal);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: var(--spacing-sm) var(--spacing-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: var(--z-nav);
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid var(--color-border);
        }

        .nav-logo {
            font-family: var(--font-archivo);
            font-size: 18px;
            font-weight: 900;
            letter-spacing: var(--letter-spacing-tight);
            text-transform: uppercase;
        }

        .nav-logo a {
            color: var(--color-dark);
            text-decoration: none;
            transition: color var(--duration-fast) ease;
        }

        .nav-logo a:hover {
            color: var(--color-primary);
        }

        .nav-pill {
            background-color: var(--color-dark);
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: var(--spacing-sm);
            align-items: center;
        }

        .nav-pill a {
            color: var(--color-light);
            text-decoration: none;
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: var(--letter-spacing-normal);
            transition: all var(--duration-fast) ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: var(--color-light);
            color: var(--color-dark);
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: var(--color-dark);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: var(--color-primary);
            transform: scale(1.1);
        }

        /* ============================================
           REUSABLE UTILITY CLASSES
           ============================================ */
        .section {
            padding: var(--spacing-2xl) var(--spacing-md);
        }

        .section--dark {
            background-color: var(--color-dark);
            color: var(--color-light);
        }

        .section--light {
            background-color: var(--color-light);
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            gap: var(--spacing-lg);
        }

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

        .button {
            border: 2px solid;
            border-radius: 9999px;
            padding: 24px 80px;
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: var(--letter-spacing-normal);
            text-transform: uppercase;
            cursor: pointer;
            transition: all var(--duration-fast) ease;
            display: inline-block;
            text-decoration: none;
        }

        .button--dark {
            background-color: var(--color-dark);
            color: var(--color-light);
            border-color: var(--color-dark);
        }

        .button--dark:hover {
            transform: scale(1.1);
            background-color: var(--color-light);
            color: var(--color-dark);
        }

        /* ============================================
           HERO COMPONENT
           ============================================ */
        .hero {
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px var(--spacing-md) 80px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

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

        .hero__title {
            font-family: var(--font-archivo);
            font-size: 14vw;
            font-weight: 900;
            letter-spacing: var(--letter-spacing-tight);
            line-height: var(--line-height-tight);
            color: var(--color-dark);
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .hero__subtitle {
            font-family: var(--font-mono);
            font-size: 14px;
            letter-spacing: var(--letter-spacing-normal);
            color: var(--color-dark);
            text-transform: uppercase;
            max-width: 600px;
        }

        /* ============================================
           CARD COMPONENT
           ============================================ */
        .card {
            border: 2px solid;
            padding: 40px;
            position: relative;
            transition: all var(--duration-fast) ease;
        }

        .card--white {
            border-color: var(--color-light);
        }

        .card--white:hover {
            background-color: var(--color-accent);
            border-color: var(--color-primary);
        }

        .card__label {
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: var(--letter-spacing-normal);
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: 12px;
            display: block;
        }

        .card__content {
            font-family: var(--font-archivo);
            font-size: 28px;
            font-weight: 900;
            letter-spacing: var(--letter-spacing-tight);
            line-height: var(--line-height-normal);
            color: var(--color-light);
            text-transform: uppercase;
            word-break: break-word;
            transition: transform var(--duration-fast) ease;
        }

        .card:hover .card__content {
            transform: translateX(8px);
        }

        .card a {
            color: var(--color-light);
            text-decoration: none;
            transition: color var(--duration-fast) ease;
        }

        .card a:hover {
            color: var(--color-primary);
        }

        /* ============================================
           ACCORDION COMPONENT (FAQ)
           ============================================ */
        .accordion__item {
            border-bottom: 2px solid var(--color-dark);
            padding: 30px 0;
            cursor: pointer;
            transition: all var(--duration-fast) ease;
        }

        .accordion__item:last-child {
            border-bottom: none;
        }

        .accordion__item.active {
            background-color: var(--color-primary);
            padding: 30px 20px;
            margin: 0 -20px;
        }

        .accordion__header {
            font-family: var(--font-archivo);
            font-size: 18px;
            font-weight: 900;
            letter-spacing: var(--letter-spacing-tight);
            text-transform: uppercase;
            color: var(--color-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color var(--duration-fast) ease;
        }

        .accordion__item.active .accordion__header {
            color: var(--color-dark);
        }

        .accordion__toggle {
            font-size: 24px;
            font-weight: bold;
            transition: transform var(--duration-fast) ease;
        }

        .accordion__item.active .accordion__toggle {
            transform: rotate(45deg);
        }

        .accordion__content {
            font-family: var(--font-archivo-black);
            font-size: 16px;
            line-height: var(--line-height-relaxed);
            color: var(--color-dark);
            margin-top: 20px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all var(--duration-fast) ease;
        }

        .accordion__item.active .accordion__content {
            max-height: 500px;
            opacity: 1;
            margin-top: 20px;
        }

        /* ============================================
           FOOTER COMPONENT
           ============================================ */
        footer {
            background-color: var(--color-dark);
            color: var(--color-light);
            border-top: 2px solid var(--color-dark);
            padding: var(--spacing-lg) var(--spacing-md);
        }

        .footer__content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer__copyright {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: var(--letter-spacing-normal);
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer__socials {
            display: flex;
            gap: 24px;
        }

        .footer__socials a {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: var(--letter-spacing-normal);
            text-transform: uppercase;
            color: var(--color-light);
            text-decoration: none;
            transition: all var(--duration-fast) ease;
        }

        .footer__socials a:hover {
            color: var(--color-primary);
            transform: translateX(4px);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 768px) {
            .hero__title {
                font-size: 48px;
            }

            .grid--auto {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }

            nav {
                flex-wrap: wrap;
                gap: var(--spacing-sm);
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

            .footer__content {
                flex-direction: column;
                gap: var(--spacing-lg);
                text-align: center;
            }

            .accordion__item {
                padding: 20px 0;
            }

            .accordion__item.active {
                padding: 20px 15px;
                margin: 0 -15px;
            }
        }
/* the below style is for about us page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Story Section */
        .story {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .story-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-intro {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 30px;
        }

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

        .story-text h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: #FFFFFF;
            margin-bottom: 30px;
        }

        .story-text p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .story-highlight {
            border-left: 4px solid #ADB638;
            padding-left: 20px;
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

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

        .stat {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            color: #ADB638;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Values Section */
        .values {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .values-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .value-item {
            border: 2px solid #000000;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .value-item:hover::before {
            left: 0;
        }

        .value-item:hover {
            border-color: #ADB638;
        }

        .value-item:hover .value-title {
            color: #000000;
        }

        .value-item:hover .value-description {
            color: #000000;
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .value-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: #000000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .value-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* Why Us Section */
        .why-us {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .why-us-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-us-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .why-item {
            position: relative;
            padding-left: 60px;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .why-number {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Archivo Black', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: #ADB638;
            line-height: 0.8;
            opacity: 0.5;
        }

        .why-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .why-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Team Section */
        .team {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 30px;
        }

        .team-intro {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 80px;
            color: rgba(0, 0, 0, 0.8);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .team-member {
            background-color: #F5F5F5;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .team-member:hover {
            border-color: #ADB638;
            transform: translateY(-10px);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            background-color: #ADB638;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .member-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: #000000;
            margin-bottom: 8px;
        }

        .member-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 15px;
        }

        .member-bio {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

            .story-text h2 {
                font-size: 32px;
            }

            .values-title {
                font-size: 40px;
            }

            .why-us-title {
                font-size: 40px;
            }

            .team-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

            .why-us-grid {
                grid-template-columns: 1fr;
            }

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

            .story-stats {
                grid-template-columns: 1fr;
            }
        }
/* the below style is for branding and strategy service page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Overview Section */
        .overview {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-intro {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 30px;
        }

        .overview-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 60px;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            color: #ADB638;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Services Grid */
        .services-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .services-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            border: 2px solid #000000;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: #ADB638;
        }

        .service-card:hover .service-card-title {
            color: #000000;
        }

        .service-card:hover .service-card-description {
            color: #000000;
        }

        .service-number {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 20px;
        }

        .service-card:hover .service-number {
            color: #000000;
        }

        .service-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #000000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* Process Section */
        .process-section {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            position: relative;
            padding-left: 80px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Archivo Black', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: #ADB638;
            line-height: 0.8;
            opacity: 0.5;
        }

        .step-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .services-title {
                font-size: 40px;
            }

            .process-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

            .process-steps {
                grid-template-columns: 1fr;
            }

            .overview-stats {
                grid-template-columns: 1fr;
            }
        }
/* the below style is for performance marketing service page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Overview Section */
        .overview {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-intro {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 30px;
        }

        .overview-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 60px;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            color: #ADB638;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Services Grid */
        .services-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .services-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            border: 2px solid #000000;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: #ADB638;
        }

        .service-card:hover .service-card-title {
            color: #000000;
        }

        .service-card:hover .service-card-description {
            color: #000000;
        }

        .service-number {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 20px;
        }

        .service-card:hover .service-number {
            color: #000000;
        }

        .service-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #000000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* Process Section */
        .process-section {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            position: relative;
            padding-left: 80px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Archivo Black', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: #ADB638;
            line-height: 0.8;
            opacity: 0.5;
        }

        .step-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Platforms Section */
        .platforms-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .platforms-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .platforms-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
        }

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

        .platform-item {
            border: 2px solid #ADB638;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .platform-item:hover {
            background-color: #ADB638;
            color: #000000;
        }

        .platform-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .platform-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: #000000;
        }

        .platform-item:hover .platform-name {
            color: #000000;
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .services-title {
                font-size: 40px;
            }

            .platforms-title {
                font-size: 40px;
            }

            .process-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

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

            .process-steps {
                grid-template-columns: 1fr;
            }

            .overview-stats {
                grid-template-columns: 1fr;
            }
        }
  /* the below style is for search engine optimization service page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Overview Section */
        .overview {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-intro {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 30px;
        }

        .overview-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 60px;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            color: #ADB638;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Services Grid */
        .services-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .services-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            border: 2px solid #000000;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: #ADB638;
        }

        .service-card:hover .service-card-title {
            color: #000000;
        }

        .service-card:hover .service-card-description {
            color: #000000;
        }

        .service-number {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 20px;
        }

        .service-card:hover .service-number {
            color: #000000;
        }

        .service-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #000000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* Process Section */
        .process-section {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            position: relative;
            padding-left: 80px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Archivo Black', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: #ADB638;
            line-height: 0.8;
            opacity: 0.5;
        }

        .step-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        /* SEO Pillars Section */
        .pillars-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .pillars-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pillars-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
        }

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

        .pillar-item {
            border-left: 4px solid #ADB638;
            padding: 30px;
            padding-left: 30px;
            transition: all 0.3s ease;
        }

        .pillar-item:hover {
            border-left-width: 8px;
            transform: translateX(10px);
        }

        .pillar-icon {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .pillar-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: #000000;
            margin-bottom: 10px;
        }

        .pillar-description {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .services-title {
                font-size: 40px;
            }

            .pillars-title {
                font-size: 40px;
            }

            .process-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

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

            .process-steps {
                grid-template-columns: 1fr;
            }

            .overview-stats {
                grid-template-columns: 1fr;
            }
        }
/* the below style is for video production service page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Archivo Black', sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Typography System */
        .archivo-black {
            font-family: 'Archivo Black', sans-serif;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 0.85;
            text-transform: uppercase;
        }

        .space-mono {
            font-family: 'Space Mono', monospace;
            letter-spacing: -0.02em;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .nav-logo a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo a:hover {
            color: #ADB638;
        }

        .nav-pill {
            background-color: #000000;
            border-radius: 9999px;
            padding: 12px 24px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-pill a {
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-pill a:hover {
            background-color: #FFFFFF;
            color: #000000;
            padding: 4px 8px;
            border-radius: 4px;
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -20px;
            background-color: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 0;
            min-width: 220px;
            margin-top: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            z-index: 2000;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            color: #FFFFFF;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            padding: 12px 20px;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background-color: #ADB638;
            padding-left: 28px;
            color: #000000;
        }

        .nav-socials {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-socials a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            transform: scale(1);
        }

        .nav-socials a:hover {
            color: #ADB638;
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background-color: #ADB638;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 40px 60px;
            text-align: center;
            position: relative;
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 14vw;
            color: #000000;
            line-height: 0.85;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-divider {
            width: 100%;
            height: 2px;
            background-color: #000000;
            margin-bottom: 40px;
        }

        .hero-metadata {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
        }

        .hero-location {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #000000;
            text-align: left;
        }

        .hero-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: #000000;
            text-align: right;
            line-height: 1.6;
        }

        /* Overview Section */
        .overview {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-intro {
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 30px;
        }

        .overview-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin-bottom: 60px;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
        }

        .stat-number {
            font-family: 'Archivo Black', sans-serif;
            font-size: 48px;
            color: #ADB638;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Services Grid */
        .services-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .services-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            border: 2px solid #000000;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: #ADB638;
        }

        .service-card:hover .service-card-title {
            color: #000000;
        }

        .service-card:hover .service-card-description {
            color: #000000;
        }

        .service-number {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #ADB638;
            margin-bottom: 20px;
        }

        .service-card:hover .service-number {
            color: #000000;
        }

        .service-card-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #000000;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* Process Section */
        .process-section {
            background-color: #000000;
            color: #FFFFFF;
            padding: 100px 40px;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #FFFFFF;
            margin-bottom: 80px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            position: relative;
            padding-left: 80px;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Archivo Black', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: #ADB638;
            line-height: 0.8;
            opacity: 0.5;
        }

        .step-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 1.2;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Video Types Section */
        .types-section {
            background-color: #FFFFFF;
            padding: 100px 40px;
        }

        .types-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .types-title {
            font-family: 'Archivo Black', sans-serif;
            font-size: 10vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 80px;
        }

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

        .type-item {
            border: 2px solid #000000;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .type-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #ADB638;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .type-item:hover::before {
            left: 0;
        }

        .type-item:hover {
            border-color: #ADB638;
        }

        .type-item:hover .type-name {
            color: #000000;
        }

        .type-item:hover .type-description {
            color: #000000;
        }

        .type-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .type-name {
            font-family: 'Archivo Black', sans-serif;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: #000000;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .type-description {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            transition: color 0.3s ease;
        }

        /* CTA Section */
        .cta-section {
            background-color: #ADB638;
            padding: 100px 40px;
            text-align: center;
        }

        .cta-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: 14vw;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
            color: #000000;
            margin-bottom: 60px;
        }

        .cta-button {
            background-color: #000000;
            color: #FFFFFF;
            border: 2px solid #000000;
            border-radius: 9999px;
            padding: 20px 60px;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: scale(1.1);
            background-color: #FFFFFF;
            color: #000000;
        }

        /* Footer */
        footer {
            background-color: #000000;
            color: #FFFFFF;
            border-top: 2px solid #000000;
            padding: 60px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-socials {
            display: flex;
            gap: 24px;
        }

        .footer-socials a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: #ADB638;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .services-title {
                font-size: 40px;
            }

            .types-title {
                font-size: 40px;
            }

            .process-title {
                font-size: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .hero-metadata {
                flex-direction: column;
                gap: 30px;
            }

            .hero-location,
            .hero-role {
                text-align: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            nav {
                flex-wrap: wrap;
                gap: 20px;
                padding: 15px 20px;
            }

            .nav-pill {
                flex-wrap: wrap;
                order: 3;
                width: 100%;
                justify-content: center;
            }

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

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

            .process-steps {
                grid-template-columns: 1fr;
            }

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