
    :root {
      --navy: #1e293b;
      --cyan: #22d3ee;
      --lime: #84cc16;
      --slate: #334155;
      --light-blue: #f0f9ff;
      --light-lime: #f7fee7;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--slate);
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
    }

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

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

    .btn-primary, .btn-secondary {
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
    }

    .btn-secondary:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(132, 204, 22, 0.4);
    }

    .hero-gradient {
      background: linear-gradient(135deg, rgba(240, 249, 255, 0.8) 0%, rgba(247, 254, 231, 0.6) 100%);
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
      }
    }

    .testimonial-slide {
      transition: opacity 0.5s ease-in-out;
    }

    .process-step {
      width: 60px;
      height: 60px;
      transition: all 0.3s ease;
    }

    .process-step:hover {
      transform: scale(1.1);
    }
    


  @media (max-width: 375px) {
    #menu-btn {
      padding: 0.25rem; 
    }

    #mobile-menu a {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      font-size: 0.875rem;
    }
    #hero h1 {
      font-size: 1.8rem !important; 
      line-height: 1.2 !important;
    }
    #hero p {
      font-size: 0.9rem !important;
    }
    #hero .btn-primary, #hero .btn-secondary {
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
      padding-top: 0.5rem !important;
      padding-bottom: 0.5rem !important;
      font-size: 0.9rem !important;
    }
    #hero .max-w-6xl {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }
  }

  @media (max-width: 480px) {
  #about .flex {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  #about .md\:w-1\/2 {
    width: 100% !important;
  }

  #about img {
    max-width: 100%;
    height: auto;
  }

  #about h2 {
    font-size: 1.75rem !important;
  }

  #about h3 {
    font-size: 1.5rem !important;
  }

  #about p {
    font-size: 1rem !important;
  }

  #about .flex-wrap {
    justify-content: center !important;
  }

  #about .bg-\[\#f0f9ff\],
  #about .bg-\[\#f7fee7\],
  #about .bg-\[\#eef2ff\] {
    width: 100%;
    justify-content: center;
  }

  #about .flex.items-center {
    justify-content: center !important;
  }
}


@media (max-width: 480px) {
  #services .grid {
    grid-template-columns: 1fr !important;
  }

  #services h2 {
    font-size: 1.75rem !important;
  }

  #services p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  #services .bg-white {
    margin: 0 auto;
    max-width: 350px;
  }

  #services a.block {
    width: 100% !important;
  }

  #services ul.space-y-3 {
    font-size: 0.9rem !important;
  }

  #services .text-4xl {
    font-size: 2rem !important;
  }
}


@media (max-width: 480px) {
  #process .grid {
    grid-template-columns: 1fr !important;
  }

  #process h2 {
    font-size: 1.75rem !important;
  }

  #process p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  #process .process-step {
    width: 50px;
    height: 50px;
  }

  #process .process-step span {
    font-size: 1.25rem !important;
  }

  #process h3 {
    font-size: 1.125rem !important;
  }
}


@media (max-width: 480px) {
  #order form .grid {
    grid-template-columns: 1fr !important;
  }

  #order label {
    font-size: 0.9rem !important;
  }

  #order input,
  #order select,
  #order textarea,
  #order button {
    font-size: 1rem !important;
    width: 100% !important;
  }

  #order button {
    padding: 12px 0 !important;
  }

  #order .max-w-3xl.mx-auto.mt-12 .flex {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  #order .max-w-3xl.mx-auto.mt-12 .flex > div {
    flex: 1 1 100px !important;
    max-width: 120px !important;
  }

  #order h2 {
    font-size: 1.75rem !important;
  }

  #order p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  #order h3 {
    font-size: 1.25rem !important;
  }
}



  nav {
    min-width: 0;
  }

  #hero .relative.bg-white {
    max-width: 100%;
    overflow-x: auto;
  }