
    /* Base Styles */
    :root {
      --primary: #1e40af;
      --secondary: #0ea5e9;
    }

    :where([class^="ri-"])::before {
      content: "\f3c2";
    }

    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* Responsive Typography */
    h1 {
      font-size: 2.5rem;
      line-height: 1.2;
    }

    h2 {
      font-size: 2rem;
      line-height: 1.3;
    }

    h3 {
      font-size: 1.5rem;
      line-height: 1.4;
    }

    @media (min-width: 640px) {
      h1 {
        font-size: 3rem;
      }

      h2 {
        font-size: 2.25rem;
      }

      h3 {
        font-size: 1.75rem;
      }
    }

    @media (min-width: 1024px) {
      h1 {
        font-size: 3.5rem;
      }

      h2 {
        font-size: 2.5rem;
      }
    }

    /* Animation Styles */
    .counter {
      transition: all 0.3s ease;
    }

    .news-ticker {
      animation: scroll 30s linear infinite;
      white-space: nowrap;
      display: inline-block;
      padding-right: 100%;
      /* Fix for mobile */
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-up {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .slide-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-fade>* {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease-out;
    }

    .stagger-fade.visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-fade.visible>*:nth-child(2) {
      transition-delay: 0.1s;
    }

    .stagger-fade.visible>*:nth-child(3) {
      transition-delay: 0.2s;
    }

    .stagger-fade.visible>*:nth-child(4) {
      transition-delay: 0.3s;
    }

    .stagger-fade.visible>*:nth-child(5) {
      transition-delay: 0.4s;
    }

    .stagger-fade.visible>*:nth-child(6) {
      transition-delay: 0.5s;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
      .header-top {
        flex-wrap: wrap;
        gap: 1rem;
      }

      .header-top>div {
        flex: 1 0 100%;
      }

      .header-top .search-container {
        order: 3;
      }

      .mobile-menu-btn {
        position: absolute;
        top: 1.25rem;
        right: 1rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
      }

      .hero-buttons button {
        width: 100%;
      }

      .focus-area,
      .testimonial,
      .news-item {
        margin-bottom: 1.5rem;
      }

      .impact-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
      }

      .cta-buttons button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .ticker-container {
        overflow: hidden;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .focus-area-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Performance Optimizations */
    #hero-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -10;
    }

    .hero-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.95) 40%, transparent 100%);
    }

    /* Mobile Menu */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: white;
      z-index: 1000;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      overflow-y: auto;
      padding: 2rem;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    /* Optimized Counter */
    .counter {
      font-size: 2.5rem;
    }

    /* Image Optimization */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Performance Improvements */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Button Styles */
    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      text-align: center;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      border: 2px solid var(--primary);
    }

    .btn-primary:hover {
      background: #1e3a8a;
      border-color: #1e3a8a;
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }
 