/* ==========================
   Base Styles
========================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #E9E7E2; /* Cream White background */
  color: #1F2B3A; /* Navy text */
  line-height: 1.6;
}

h1, h2, h3 {
  color: #306998; /* Medium Blue */
}

a {
  color: #306998;
  text-decoration: none;
}

a:hover {
  color: #56748F; /* Accent Blue */
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================
   Navigation
========================== */
.navbar {
  background-color: #1F2B3A; /* Navy */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

.navbar a {
  color: #E9E7E2; /* Cream White */
  padding: 10px 15px;
  display: block;
  font-weight: bold;
}

.navbar a.active {
  color: #56748F; /* Accent Blue */
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #E9E7E2;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

/* Show nav links horizontally by default */
.navbar a {
  display: inline-block;
}

/* ==========================
   Hero Section
========================== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #D9D9D9; /* Light Gray background for hero */
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #306998;
  color: #E9E7E2;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.btn:hover {
  background-color: #56748F;
}

/* ==========================
   Container Sections
========================== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.container img {
  margin-top: 20px;
}

/* ==========================
   Testimonial Blocks
========================== */
.testimonial-block {
  background-color: #E9E7E2; /* Cream White */
  border-left: 5px solid #306998; /* Medium Blue */
  padding: 15px 20px;
  margin-bottom: 20px;
}

/* ==========================
   Footer
========================== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1F2B3A; /* Navy */
  color: #E9E7E2;
}

/* ==========================
   Responsive Styles
========================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar a {
    display: none;
    width: 100%;
    padding: 12px 20px;
  }

  .navbar a.active {
    display: block;
  }

  .navbar.show-menu a {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .container {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* ========== FORM STYLES ========== */
.form {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
}

.form label {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--navy);
}

.form input,
.form textarea,
.form select {
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border: 1px solid var(--medium-blue);
  outline: none;
  box-shadow: 0 0 4px rgba(48,105,152,0.3);
}

.form button,
.form .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--medium-blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.form button:hover,
.form .btn:hover {
  background: var(--accent-blue);
}
/* HAMBURGER MENU - MOBILE STYLES */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .navbar a {
    display: none; /* hide all links by default */
    text-align: left;
    padding: 10px;
    border-top: 1px solid var(--shield-gray);
    background: var(--navy);
  }

  .navbar.show-menu a {
    display: block; /* show links when toggled */
  }

  .hamburger {
    display: block; /* show hamburger only on mobile */
    position: absolute;
    top: 15px;
    right: 20px;
  }
}