 /* Base CSS Variables from globals.css */
      
        :root {
          --font-size: 14px;
          --background: #ffffff;
          --foreground: oklch(0.145 0 0);
          --card: #ffffff;
          --card-foreground: oklch(0.145 0 0);
          --popover: oklch(1 0 0);
          --popover-foreground: oklch(0.145 0 0);
          --primary: #030213;
          --primary-foreground: oklch(1 0 0);
          --secondary: oklch(0.95 0.0058 264.53);
          --secondary-foreground: #030213;
          --muted: #ececf0;
          --muted-foreground: #717182;
          --accent: #e9ebef;
          --accent-foreground: #030213;
          --destructive: #d4183d;
          --destructive-foreground: #ffffff;
          --border: rgba(0, 0, 0, 0.1);
          --input: transparent;
          --input-background: #f3f3f5;
          --switch-background: #cbced4;
          --font-weight-medium: 500;
          --font-weight-normal: 400;
          --ring: oklch(0.708 0 0);
          --chart-1: oklch(0.646 0.222 41.116);
          --chart-2: oklch(0.6 0.118 184.704);
          --chart-3: oklch(0.398 0.07 227.392);
          --chart-4: oklch(0.828 0.189 84.429);
          --chart-5: oklch(0.769 0.188 70.08);
          --radius: 0.625rem;
          --sidebar: oklch(0.985 0 0);
          --sidebar-foreground: oklch(0.145 0 0);
          --sidebar-primary: #030213;
          --sidebar-primary-foreground: oklch(0.985 0 0);
          --sidebar-accent: oklch(0.97 0 0);
          --sidebar-accent-foreground: oklch(0.205 0 0);
          --sidebar-border: oklch(0.922 0 0);
          --sidebar-ring: oklch(0.708 0 0);
          
          /* Custom GIS Mapping Colors */
          --bg-green: #106c43;
          --card-bg: #d5ffe2;
          --primary-dark: #1e5d44;
          --accent-yellow: #fdbf2d;
          --text-color: #103c29;
          --max-width: 1000px;
          
          /* Typography variables */
          --text-base: 1rem;
          --text-lg: 1.125rem;
          --text-xl: 1.25rem;
          --text-2xl: 1.5rem;
          --text-3xl: 1.875rem;
          --text-4xl: 2.25rem;
          --text-5xl: 3rem;
          --text-6xl: 3.75rem;
        }

        .dark {
          --background: oklch(0.145 0 0);
          --foreground: oklch(0.985 0 0);
          --card: oklch(0.145 0 0);
          --card-foreground: oklch(0.985 0 0);
          --popover: oklch(0.145 0 0);
          --popover-foreground: oklch(0.985 0 0);
          --primary: oklch(0.985 0 0);
          --primary-foreground: oklch(0.205 0 0);
          --secondary: oklch(0.269 0 0);
          --secondary-foreground: oklch(0.985 0 0);
          --muted: oklch(0.269 0 0);
          --muted-foreground: oklch(0.708 0 0);
          --accent: oklch(0.269 0 0);
          --accent-foreground: oklch(0.985 0 0);
          --destructive: oklch(0.396 0.141 25.723);
          --destructive-foreground: oklch(0.637 0.237 25.331);
          --border: oklch(0.269 0 0);
          --input: oklch(0.269 0 0);
          --ring: oklch(0.439 0 0);
          --font-weight-medium: 500;
          --font-weight-normal: 400;
          --chart-1: oklch(0.488 0.243 264.376);
          --chart-2: oklch(0.696 0.17 162.48);
          --chart-3: oklch(0.769 0.188 70.08);
          --chart-4: oklch(0.627 0.265 303.9);
          --chart-5: oklch(0.645 0.246 16.439);
          --sidebar: oklch(0.205 0 0);
          --sidebar-foreground: oklch(0.985 0 0);
          --sidebar-primary: oklch(0.488 0.243 264.376);
          --sidebar-primary-foreground: oklch(0.985 0 0);
          --sidebar-accent: oklch(0.269 0 0);
          --sidebar-accent-foreground: oklch(0.985 0 0);
          --sidebar-border: oklch(0.269 0 0);
          --sidebar-ring: oklch(0.439 0 0);
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: var(--font-size);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        body {
            background-color: #1e5d44;
            color: var(--foreground);
            line-height: 1.5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Typography */
        h1 {
            font-size: var(--text-2xl);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        h2 {
            font-size: var(--text-xl);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        h3 {
            font-size: var(--text-lg);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        h4 {
            font-size: var(--text-base);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        p {
            font-size: var(--text-base);
            font-weight: var(--font-weight-normal);
            line-height: 1.5;
        }

        label {
            font-size: var(--text-base);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        button {
            font-size: var(--text-base);
            font-weight: var(--font-weight-medium);
            line-height: 1.5;
        }

        input {
            font-size: var(--text-base);
            font-weight: var(--font-weight-normal);
            line-height: 1.5;
        }

        /* Custom GIS Website Styles */
        .custom-header {
            width: 80%;
            background-color: var(--card-bg);
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 800;
            margin: 40px auto;
            border-radius: 40px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-left: 50px;
        }
        .logo {
            width: 127px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: url('logo1.png'); /* Ensure this path is correct */
        }

        .header-button {
            background-color: var(--bg-green);
            color: var(--accent-yellow);
            border: none;
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .header-button:hover {
            background-color: var(--primary-dark);
        }

        .custom-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
            margin-right: 50px;
        }

        .custom-nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .custom-nav ul li a:hover {
            color: var(--bg-green);
        }

        .main-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .explore-button {
            background-color: var(--bg-green);
            color: var(--accent-yellow);
            border: none;
            max-height: 70px;
            padding: 12px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 1em;
            font-weight: 600;
            align-self: center;
            position: relative;
            z-index: 3;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            pointer-events: auto;
            transition: all 0.3s ease;
        }

        .explore-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 1rem;
            overflow: hidden;
            background-color: var(--card-bg);
            color: var(--text-color);
        }

        .mapping-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            opacity: 0.2;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 64rem;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            line-height: 1.1;
            color: var(--text-color);
        }

        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-color);
        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            opacity: 0.6;
            width: 4rem;
            height: 4rem;
            border: 4px solid var(--bg-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .decorative-square {
            position: absolute;
            top: 5rem;
            right: 5rem;
            opacity: 0.6;
            width: 3rem;
            height: 3rem;
            border: 2px solid var(--accent-yellow);
            transform: rotate(45deg);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.3; }
        }

        /* Features Section */
        .features-section {
            padding: 5rem 1rem;
            background-color: #1e5d44;
        }

        .features-title {
            text-align: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2.25rem;
        }

        .features-description {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
            color: white;
            font-size: 1.125rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 96rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-card {
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            background-color: var(--card-bg);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-8px);
        }

        .feature-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .feature-icon {
            font-size: 1.875rem;
        }

        .feature-title {
            color: var(--text-color);
            flex: 1;
            font-size: 1.5rem;
        }

        .feature-formats {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .format-tag {
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
            border-radius: 9999px;
            background-color: var(--bg-green);
            color: var(--accent-yellow);
        }

        .feature-coverage {
            font-size: 0.875rem;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            background-color: var(--accent-yellow);
            color: var(--text-color);
            display: inline-block;
            margin-bottom: 1rem;
        }

        .feature-image {
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 12rem;
            object-fit: cover;
        }

        .feature-description {
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Accuracy Showcase */
        .accuracy-showcase {
            margin-top: 4rem;
            text-align: center;
        }

        .accuracy-showcase-card {
            background-color: rgba(255,255,255,0.1);
            border-radius: 1rem;
            padding: 2rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .accuracy-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-yellow);
        }

        .accuracy-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .accuracy-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .accuracy-item {
            text-align: center;
        }

        .accuracy-icon {
            font-size: 1.875rem;
            margin-bottom: 0.5rem;
        }

        .accuracy-item-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .accuracy-item-subtitle {
            font-size: 0.875rem;
            color: white;
            opacity: 0.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 1rem;
            position: relative;
            overflow: hidden;
            background-color: var(--bg-green);
        }

        .cta-content {
            text-align: center;
            max-width: 64rem;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            margin-bottom: 1.5rem;
            color: var(--accent-yellow);
            font-size: 3rem;
        }

        .cta-description {
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
            color: white;
            font-size: 1.25rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .cta-primary {
            padding: 1rem 2rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            background-color: var(--accent-yellow);
            color: var(--text-color);
            font-size: 1rem;
            font-weight: 500;
        }

        .cta-primary:hover {
            transform: scale(1.05);
        }

        .cta-secondary {
            padding: 1rem 2rem;
            border-radius: 9999px;
            border: 2px solid white;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            color: white;
            font-size: 1rem;
            font-weight: 500;
        }

        .cta-secondary:hover {
            background-color: white;
            color: #1a202c;
        }

        /* Statistics Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto 2rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            border-radius: 0.5rem;
            background-color: rgba(255,255,255,0.1);
        }

        .stat-number {
            font-size: 1.875rem;
            margin-bottom: 0.5rem;
            color: var(--accent-yellow);
            font-weight: 600;
        }

        .stat-title {
            font-size: 0.875rem;
            color: white;
            margin-bottom: 0.25rem;
        }

        .stat-subtitle {
            font-size: 0.75rem;
            color: white;
            opacity: 0.8;
        }

        /* Projection Categories */
        .projection-categories {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 48rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .projection-categories {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .category-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 0.5rem;
            background-color: rgba(255,255,255,0.1);
        }

        .category-icon {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .category-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
        }

        .category-subtitle {
            font-size: 0.875rem;
            color: white;
            opacity: 0.9;
        }

        /* Footer */
        .main-footer {
            background-color: #1b482e;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: white;
            margin-top: auto;
        }

        .footer-logo {
            margin-bottom: 40px;
            margin-left: 20px;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 40px;
            flex-wrap: wrap;
        }

        .social-section,
        .contact-section {
            background-color: #C8F5C8;
            padding: 25px 35px;
            border-radius: 15px;
            text-align: center;
            color: #333;
            flex: 1;
            max-width: 350px;
            max-height: 125px;
        }

        .social-section h3,
        .contact-section h3 {
            margin-top: 0;
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            font-size: 1.5em;
            color: white;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon img {
            width: 45px;
            height: 45px;
        }

        .separator {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 150px;
            position: relative;
            margin: 0 20px;
        }

        .separator .line {
            width: 2px;
            height: 100%;
            background-color: white;
        }

        .separator .circle {
            width: 15px;
            height: 15px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
        }

        .separator .circle:first-child {
            top: 0;
        }

        .separator .circle:last-child {
            bottom: 0;
        }

/* --- Keep your existing Header and Toggle CSS as is mobile version --- */
/* Header */
header {
    width: 80%;
    background-color: var(--card-bg);
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 800;
    margin: 40px auto;
    border-radius: 40px;
}

/* Regular Navigation (hide on mobile by default) */
header nav {
    display: block;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--bg-green);
}

/* Mobile Menu Elements - HIDDEN by default on desktop */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu,
.mobile-page-title { /* Added .mobile-page-title here */
    display: none;
}