* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid #eee;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #4CAF50;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 30px;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7B1FA2;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #7B1FA2;
        }

        /* Hero Section with Video Background */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 0px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            font-family: 'Ancizar Sans', sans-serif;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            font-family: 'Ancizar Sans', sans-serif;
        }

        /* Sections */
        .section {
            padding: 100px 0;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Who We Are Section */
        .who-we-are {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 600px;
        }

        .who-we-are h2 {
            font-size: 2.7rem;
            margin-bottom: 20px;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
        }

        .who-we-are p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #666;
        }

        .services-btn {
            background: #9C27B0;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .services-btn:hover {
            background: #7B1FA2;
            text-decoration: none;
        }

        .who-image {
            width: 100%;
            height: 420px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .who-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Our Values Section */
        .values-section {
            text-align: center;
            background: #e8e8e8;
        }

        .values-section h2 {
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .value-item {
            text-align: center;
        }

        .value-box {
            width: 100%;
            height: 100px;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .value-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .value-item h3 {
            font-size: 1.4rem;
            color: #000000b9;
        }

        /* What We Do Section */
        .what-we-do {
            background: #f5f5f5;
            padding: 100px 0;
        }

        .what-we-do h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
        }

        .what-we-do-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #333;
            max-width: 800px;
            margin: 0 auto 100px auto;
            line-height: 1.6;
        }

        .service-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-row:last-child {
            margin-bottom: 0;
        }

        .service-image {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-image.coral {
            background: #E57373;
        }

        .service-image.green {
            background: #C5E1A5;
        }

        .service-content h3 {
            font-size: 1.8rem;
            color: #4D2A65;
            margin-bottom: 15px;
            font-weight: bold;
            font-family: 'Inria Sans', sans-serif;
        }

        .service-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }

        /* Reverse layout for alternating rows */
        .service-row.reverse {
            direction: rtl;
        }

        .service-row.reverse .service-content {
            direction: ltr;
        }

        /* Our Reach Section */
        .our-reach {
            background: #e8e8e8;
            padding: 100px 0;
            text-align: center;
        }

        .our-reach h2 {
            font-size: 2.5rem;
            color: #7B1FA2;
            margin-bottom: 40px;
            font-family: 'Inria Sans', sans-serif;
        }

        .our-reach p {
            font-size: 1.2rem;
            color: #333;
            max-width: 600px;
            margin: 0 auto 50px auto;
            line-height: 1.7;
        }

        .contact-btn {
            background: #9C27B0;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            background: #7B1FA2;
            text-decoration: none;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #8BC34A;
        }

        .footer-section p,
        .footer-section li {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8BC34A;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #8BC34A;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #7CB342;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            /* navbar */
            .navbar {
                padding: 10px 0;
            }

            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.6rem;
                gap: 10px;
            }

            .logo-icon {
                width: 26px;
                height: 22px;
            }

            .nav-links {
                gap: 11px;
            }

            .nav-links a {
                font-size: 0.6rem;
                font-weight: 600;
            }
            

            /* Hero Section */
            .hero {
                height: 100vh;
                padding: 0 15px;
            }

            .hero-content {
                padding: 0 15px;
            }

            .hero h1 {
                font-size: 2.8rem;
                margin-bottom: 15px;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 25px;
                line-height: 1.5;
            }

            /* Sections */
            .section {
                padding: 60px 0;
            }

            .container {
                padding: 0 15px;
            }

            /* Who We Are Section */
            .who-we-are {
                grid-template-columns: 1fr;
                gap: 40px;
                min-height: auto;
                text-align: center;
            }

            .who-we-are h2 {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }

            .who-we-are p {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .who-image {
                height: 280px;
                border-radius: 15px;
                order: -1;
            }

            .services-btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            /* Values Section */
            .values-section {
                padding: 60px 0;
            }

            .values-section h2 {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 400px;
            }

            .value-box {
                height: 80px;
            }

            .value-item h3 {
                font-size: 1.2rem;
            }

            /* What We Do Section */
            .what-we-do {
                padding: 60px 0;
            }

            .what-we-do h2 {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .what-we-do-subtitle {
                font-size: 1.1rem;
                margin-bottom: 50px;
                padding: 0 10px;
            }

            .service-row,
            .service-row.reverse {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 50px;
                direction: ltr;
            }

            .service-image {
                height: 220px;
                border-radius: 15px;
            }

            .service-content {
                text-align: center;
                padding: 0 10px;
            }

            .service-content h3 {
                font-size: 1.5rem;
                margin-bottom: 12px;
            }

            .service-content p {
                font-size: 1rem;
                line-height: 1.6;
            }

            /* Our Reach Section */
            .our-reach {
                padding: 60px 0;
            }

            .our-reach h2 {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .our-reach p {
                font-size: 1.1rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .contact-btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            /* Footer */
            .footer {
                padding: 40px 0 20px 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-section h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .footer-section p,
            .footer-section li {
                font-size: 0.95rem;
            }

            .social-links {
                justify-content: center;
                gap: 12px;
            }

            .social-links a {
                width: 35px;
                height: 35px;
                line-height: 35px;
            }

            .footer-bottom {
                padding-top: 20px;
            }

            .footer-bottom p {
                font-size: 0.9rem;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.8rem;
                gap: 4px;
            }

            .logo-icon {
                width: 24px;
                height: 18px;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-links a {
                font-size: 0.65rem;
                font-weight: 700;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .who-we-are h2,
            .values-section h2,
            .what-we-do h2,
            .our-reach h2 {
                font-size: 1.8rem;
            }

            .service-content h3 {
                font-size: 1.3rem;
            }

            .container {
                padding: 0 10px;
            }
        }

        /* Landscape Mobile Orientation */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                height: 100vh;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }
        

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }