#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #023a4e;
}
header{
   background-color: rgba(10, 69, 124, 0.671); 
}

.contact-hero {
  padding: 10px 10px;
  text-align: center;
  color: rgb(255, 255, 255);
}

.contact-form-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: rgba(173, 173, 173, 0.103); /* overlay on top of particles */
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: white;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #023a4e;
  color: white;
}

.contact-form button {
  padding: 14px 20px;
 background-color: #023a4e;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #204f5e;
}

  .top-bar {
  display: flex;
  justify-content: space-between; /* logo left, button right */
  align-items: center;
  padding: 0px 0px;
  
}
  .top-bar img {
  height: 220px;
  width: auto;
}
  .logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
  }
  
  .top-buttons a {
    margin-left: 00px;
    padding: 14px 34px;
    border: 1px solid #000000;
    background-color: #00BFFF;  
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
.top-buttons .btn-demo {
  background-color: #005f73; /* or your brand blue */
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
  .top-buttons:hover {
  transform: translateY(-4px); /* Moves up slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adds shadow */
}

body {
  margin: 0;
  padding: 0;
}