.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00111e;
  padding: 10px 6rem;
}

.navbar .logo img {
  height: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Hamburger menu (hidden by default) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  background-color: #fff;
  height: 2.3px;
  width: 30px;
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
}






/* Contact Section */
.contact-section {
  padding: 20px;
  text-align: center;
  background: white;
}

.contact-section .contact-form{
  text-align: start;
}


.contact-section h1 {
  margin-bottom: 10px;
  color: #333;
}

.contact-section p {
  margin-bottom: 20px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #da9500;
  color: white;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #845a00;
}









/* Responsive styles */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 32rem;
    background-color: #00111e;
    width: 15rem;
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    border-radius: 0px 0px 15px 15px;
  }

  .nav-links.expanded {
    height: 230px; /* Adjust based on menu items */
  }

  .nav-links li {
    margin: 10px 0;
  }

  .navbar {
       padding: 10px 1.5rem;
       overflow-x: visible;
  }


  .nav-links a {
    font-size: 17px; 
  }
  

}








