/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    color: #333;
    background: #f9f9f9;
  }
  
  header {
    background: #eeae00;
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
  }
  
  .nav-links a:hover {
    background: #3949ab;
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero {
    height: 90vh;
    background: url('wallpaper errand camel.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff7043;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #d84315;
  }
  
  /* Sections */
  .section {
    padding: 5rem 2rem;
    text-align: center;
    background: #f4f4f4;
  }
  
  .section:nth-child(even) {
    background: #fff;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section p {
    max-width: 600px;
    margin: 0 auto;
  }
  



  .hamburger {
    display: none; /* Hidden by default */
    font-size: 2rem;
    background: transparent;
    color: white;
    border: none;
  }
  
  .nav-links {
    display: flex; /* Default to flex for wide screens */
    list-style: none;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide links initially */
      flex-direction: column; /* Stack vertically */
      position: absolute;
      background-color: #333;
      width: 100%;
      z-index: 1; /* Ensure it appears on top */
    }
  
    .nav-links.active {
      display: flex; /* Show links when active */
    }
  
    .hamburger {
      display: block; /* Show hamburger icon */
    }
  }
  

  .card-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of cards */
    justify-content: space-around; /* Space out cards */
    margin: 20px;
  }
  
  .card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 200px; /* Fixed width for cards */
    height: 200px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
  }
  

  .network-section {
    display: flex;
    justify-content: space-around; /* Space out the cards */
    margin: 20px;
    flex-wrap: wrap; /* Allow wrapping */
  }
  
  .network-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 400px; /* Fixed width for cards */
    height: 300px;
    text-align: center; /* Center text */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  }
  

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  