* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Style for the navbar container */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007a7a; /* Background color for the navbar */
    padding: 25px 30px; /* Padding for the navbar */
  }
  .nav-branding img{
    position: absolute;
    width:16%;
    border-radius: 10px;  
    padding: 0px;
    top: 2px; /* Adjust top position as needed */
    left: 8%; /* Align the logo horizontally */        
    transform: translateX(-50%); /* Center the logo horizontally */
    z-index: 2; /* Ensure the logo appears above the image */
    }
  
  
  /* Style for the branding/logo */
  .nav-branding {
    color: white; /* Text color for the branding/logo */
    font-size: 27px; /* Font size for the branding/logo */
    text-decoration: none; /* Remove underline from the branding/logo */
  }
  
  
  
  /* Style for the navigation menu */
  .nav-menu {
    display: flex;
    gap: 20px; /* Spacing between menu items */
    list-style-type: none; /* Remove default list styling */
  }
  
  /* Style for each navigation menu item */
  .nav-items {
    margin: 0; /* Remove default margin */
  }
  
  /* Style for navigation menu links */
  .nav-list {
    color: white; /* Text color for menu items */
    text-decoration: none; /* Remove underline from menu items */
    font-size: 18px; /* Font size for menu items */
    transition: color 0.3s ease; /* Smooth color transition on hover */
  }
  
  /* Style for navigation menu links on hover */
  .nav-list:hover {
    color: #ffd700; /* Change color on hover */
  }
  
  /* Media query for responsive design */
  li{
    list-style: none;
  }
  a{
    color: white;
    text-decoration: none;
  }
  
  .nav-link {
    transition: 0.7s ease;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  }
  .nav-menu {
    display: flex;
    gap: 20px; /* Spacing between menu items */
    list-style-type: none; /* Remove default list styling */
  }
  
  /* Style for each navigation menu item */
  .nav-items {
    margin: 0; /* Remove default margin */
  }
  
  /* Style for navigation menu links */
  .nav-list {
    color: white; /* Text color for menu items */
    text-decoration: none; /* Remove underline from menu items */
    font-size: 18px; /* Font size for menu items */
    transition: color 0.3s ease; /* Smooth color transition on hover */
  }
  
  /* Style for navigation menu links on hover */
  .nav-list:hover {
    color: #ffd700; /* Change color on hover */
  }
  
  
 
@media (max-width: 768px) {
  .hamburger {
      display: block;
  }

  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
      position: absolute;
      border-radius: 50px;
      right: 0;
      top: 78px;
      gap: 1px;
      flex-direction: column;
      width: 50%;
      background-color: white;
      text-align: center;
      transition: 0.3s;
      display: none; /* Hide menu by default */
  }

  .nav-item {
      margin: 20px 0; /* Adjust margin as needed */
  }
  .nav-menu a{
    color: black;
    z-index: 1000; /* Display menu when active */

  }

  .nav-menu.active {
    display: flex; /* Display menu when active */
  }
  .nav-items a:hover{
      color: red;
  }
}

  .form img{
    width: 100%;
  }

  .form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9; /* Light gray */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form h1 {
  color: #f9f9f9;
   position: fixed;
   position: absolute;
   top: 37%;
   left: 46%;
   font-size: 40px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff; /* White */
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="number"]:focus,
.form textarea:focus {
    outline: none;
    border-color: #007bff; /* Blue */
}

.form input[type="hidden"] {
    display: none; /* Hide hidden inputs */
}

.form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.map {
    margin-top: 30px;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

@media (max-width: 1192px){
  .nav-branding img{
    top: 0px; /* Adjust top position as needed */
    left: 12.5%;
    width: 25%;
  }
  .form h1{
    font-size: 29px;
    top: 180px;
  }
}
@media (max-width: 430px){
  .form h1{
    font-size: 18px;
    top: 180px;
  }
}