/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    background: #333;
    color: #fff;
    padding: 15px 0;
    position: relative; /* Add this */
  }
  
  header .logo img {
    height: 50px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    margin-top: -40px; /* Adjust the margin-top value */
    margin-bottom: 20px; 
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
  }
  
  /* Services Section */
  .services {
    padding: 50px 0;
    text-align: center;
  }
  
  .services h2 {
    margin-bottom: 40px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* About Us Section */
  .about {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
  }
  
  /* Contact Section */
  .contact {
    padding: 50px 0;
    text-align: center;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .contact select option:first-child {
    color: #ccc; /* Light grey color */
  }
  .contact select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    height: 40px; /* Use a valid unit */
  }
  

  .contact .btn {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
    nav ul {
      margin-top: 10px; /* Add a margin to the top */
      display: none;
      flex-direction: column;
      background: #333;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      z-index: 1; /* Add this */
    }
  
    nav ul li {
      margin: 10px 0;
      text-align: center;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    header .menu-toggle {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2; /* Add this */
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    /* Add this */
    nav ul.active {
      display: block;
    }
  }

  .carousel {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust the height as needed */
  }
  
  .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
  }
  
  .carousel-item.active {
    opacity: 1;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }