body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

}
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  h1, h2, h3, p {
    margin: 0;
    padding: 0;
  }
  
  
  #main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #09a6e4;
     
    background-size: cover; /

  }
  
  #main-header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: white;
    font-weight: bold;
  }
  
  .nav-links li a:hover {
    text-decoration: underline;
  }



/* Services Section */
.services {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .services h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between boxes */
  }
  
  .service-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for box effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  }
  
  .service-item:hover {
    transform: translateY(-10px); /* Lift the box on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
  }
  
  .service-item .icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #007BFF; /* Icon color */
  }
  
  .service-item h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 16px;
    color: #555;
  }
