/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
nav {
  background: #2286B8;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: space-between; /* Space between logo and links */
  padding: 0 20px; /* Add padding for inner spacing */
  box-sizing: border-box;
  z-index: 1000;
}

label.logo img {
  vertical-align: middle;
  height: 50px;
  width: auto;
  margin: 0;
}

nav ul {
  display: flex; /* Flexbox for horizontal alignment */
  gap: 20px; /* Space between links */
  margin: 0;
  list-style: none; /* Remove default list styling */
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #18638A;
}

.checkbtn {
  font-size: 22px;
  color: white;
  display: none; /* Hide hamburger menu for desktop */
  cursor: pointer;
}

#check {
    display: none;
  }

/* Responsive Navbar */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s ease-in-out;
  }

  nav ul li {
    margin: 20px 0;
  }

  nav ul li a {
    font-size: 20px;
  }

  #check:checked ~ ul {
    left: 0; /* Show menu when checked */
  }
}

/* Contact Page Styling */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.container h2 {
  text-align: center;
  color: #444;
  margin-bottom: 20px;
}

/* Contact Info Section */
.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.contact-info .info-box p {
  margin: 10px 0;
  font-size: 1rem;
}

/* Separator */
.separator {
  text-align: center;
  margin: 30px 0;
}

.separator hr {
  width: 50%;
  border: none;
  border-top: 2px solid #ddd;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  resize: none;
}

.submit-button {
  padding: 10px 20px;
  background: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #666;
}

/* Adjusting for Mobile Screens */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
}
