:root {
    --primary: #00c853;
    --primary-dark: #009624;
    --secondary: #1de9b6;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  body {
    background-color: var(--dark);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
  }
  
  .bg-gradient {
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,200,83,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
  }
  
  .bg-gradient-2 {
    position: fixed;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(29,233,182,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  
  .logo-icon {
    width: 40px;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40%;
  }
  
  h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
  }
  
  h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
  }
  
  .stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .feature-desc {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
  }
  
  .location-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    margin: 80px 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
  }
  
  .form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 40px;
  }
  
  .input-group {
    margin-bottom: 30px;
    position: relative;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--light);
    transition: all 0.3s ease;
  }
  
  input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
  }
  
  input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  button {
    background: var(--gradient);
    color: var(--light);
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
  }
  
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.4);
  }
  
  .floating-image {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transform: rotate(-10deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-image:nth-child(1) {
    top: 0;
    left: 0;
    width: 300px;
    height: 200px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .floating-image:nth-child(2) {
    top: 150px;
    left: 200px;
    width: 250px;
    height: 250px;
    z-index: 2;
    transform: rotate(5deg);
    animation-delay: 1s;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .floating-image:nth-child(3) {
    top: 300px;
    left: 80px;
    width: 220px;
    height: 180px;
    z-index: 3;
    transform: rotate(-5deg);
    animation-delay: 2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) rotate(-10deg);
    }
    50% {
      transform: translateY(-20px) rotate(-5deg);
    }
    100% {
      transform: translateY(0) rotate(-10deg);
    }
  }
  
  .footer {
    padding: 40px 0;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
  }

  
  
  @media (max-width: 1100px) {
    .hero {
      flex-direction: column;
      text-align: center;
      gap: 60px;
    }
    
    .hero-content {
      max-width: 100%;
    }
    
    .hero-image {
      min-height: 400px;
    }
    
    .stats {
      justify-content: center;
    }
  }
  
  /* @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .location-form {
      padding: 30px 20px;
    }
    
    .floating-image {
      display: none;
    }
  }
   */
  /* Nav styles */
  nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  
  nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  nav a:hover {
    opacity: 1;
    color: var(--primary);
  }
  
  .mobile-menu {
    display: none;
  }
  
  @media (max-width: 768px) {

    .hero-image{
      display: none;
    }
    .nav-items ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0px;
      width: 40vw;
      background-color: var(--dark);
      padding:20px;
    }

    .nav-items.active ul{
      display: flex;
      z-index: 1000;
      
    }
    
    .mobile-menu {
      display: block;
      font-size: 1.5rem;
      z-index: 1000;
      color: white;

    }

    .mobile-menu.active {
      display: block;
      font-size: 1.5rem;
      z-index: 1000;
      color: white;

    }

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

    .mobile-menu:hover{
      cursor: pointer;
    }

  }

  .redirect{
    color: red;
    background-color: yellowgreen;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-style: italic;
    border-radius: 50%;
    padding: 10px 20px;
  }
  .redirect:hover {
    color: pink;
    background-color: black;
  }
