* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f2f5f9;
  color: #222;
  padding-top: 80px; 
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 61, 98, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* Navigation */
nav {
  transition: all 0.3s ease-in-out;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  color: #cce7ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  transition: all 0.25s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: #ffffff;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: rgba(10, 61, 98, 0.95);
    backdrop-filter: blur(12px);
    transition: right 0.4s ease-in-out;
    padding-top: 4rem;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
  }

  nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  nav ul li a {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: block;
  }

  .container {
    flex-wrap: wrap;
  }
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  margin-bottom: 1rem;
  color: #0a3d62;
}

.form-card label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.form-card textarea {
  resize: vertical;
  height: 100px;
}

.form-card .btn {
  margin-top: 1.5rem;
  background: #0a3d62;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-card .btn:hover {
  background: #07456b;
}

/* Responsive */
@media (max-width: 768px) {
  .form-section {
    grid-template-columns: 1fr;
  }
}

.form-section-single {
  max-width: 500px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* Logo styling */
.logo img {
  height: 50px; /* Adjust size to fit your header */
  display: block;
}

.contact-section {
  padding: 4rem 0;
  background: #fff;
  color: #222;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0a3d62; /* deep blue */
  text-align: center;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  text-align: center;
  color: #444;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  font-weight: 600;
  color: #0a3d62;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #0a3d62;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1976d2; /* lighter blue */
  box-shadow: 0 0 5px rgba(25, 118, 210, 0.5);
}

.contact-form button.btn {
  background-color: #0a3d62;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  align-self: center;
  width: 150px;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #1976d2;
}

