body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #000;
    height: 100%;
  }

body{
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

  /* NAV BAR */
nav {
  position: relative;
  background-color: #071a3f;
  color: #ffcb05;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img{
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo img{
  height: 40px;
  width: auto;
}

/* hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffcb05;
  margin: 5px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* desktop panel + links */
.nav-panel {
  display: block;
  position: static;
  max-height: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 25px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

/* ---- Mobile layout ---- */
@media (max-width: 800px) {
  .menu-toggle { display: block; }

  /* turn the panel into a sliding dropdown */
  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071a3f;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 220ms ease;
    border-top: 1px solid rgba(255,203,5,0.2);
    z-index: 10;
  }
  .nav-panel.open {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* stack links vertically inside the dropdown */
  nav ul {
    display: block;
    padding: 10px 20px 14px 20px;
  }
  nav ul li {
    margin: 10px 0;
  }
  nav ul li a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
  }

  /* burger -> X animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-panel,
  .menu-toggle .bar {
    transition: none !important;
  }
}


  /* TOP SECTION */
  header {
  /* add a subtle overlay for readability */
  background:
    linear-gradient(to bottom, rgba(7,26,63,.35), rgba(7,26,63,.55)),
    url("images/bg.jpg") center / cover no-repeat; /* <= cover fix */
  color: #ffcb05;
  padding: 60px 40px 50px 40px;
}

header h1 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-align: left;
}

header p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: white;
  margin: 0;
  max-width: 650px;
  text-align: left;
}


  /* SECTION TITLES */
  h2.section-title {
    font-family: 'Georgia', serif;
    font-weight: 400; /* not bold */
    font-size: 1.5rem;
    color: #ffcb05;
    margin-top: 60px;
    margin-bottom: 8px;
    padding-left: 40px;
    text-align: left;
    position: relative;
    display: inline-block;
  }
  /* Small yellow line under titles */
  h2.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffcb05;
    margin-top: 5px;
    border-radius: 2px;
  }

  /* PRICING SECTION */
  #pricing {
    background: white;
    padding: 40px 40px;
  }
  #pricing p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 650px;
    text-align: left;
    padding-left: 40px;
  }

  /* HOW IT WORKS SECTION */
  #how-it-works {
    background-color: #071a3f;
    color: white;
    padding: 40px 40px;
  }
  #how-it-works p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin: 6px 0;
    max-width: 650px;
    text-align: left;
    padding-left: 40px;
  }

  /* BOOKING SECTION */
  #benchmarking-call {
    background: white;
    padding: 40px 40px 30px 40px;
  }
  #benchmarking-call p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 650px;
    text-align: left;
    padding-left: 40px;
  }
  #benchmarking-call button {
    background-color: #ffcb05;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 7px rgba(0,0,0,0.2);
    cursor: pointer;
    color: #000;
    margin-left: 40px;
  }

  /* YELLOW LINE UNDER BENCHMARKING CALL */
  .yellow-line {
    border-top: 3px solid #ffcb05;
    width: 95%;
    margin: 20px auto 0 auto;
  }


/* WHO WE ARE */

    


    #our-pricing {
    background-color: #071a3f;
    color: white;
    padding: 40px 40px;
  }
  #our-pricing p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin: 6px 0;
    max-width: 650px;
    text-align: left;
    padding-left: 40px;
  }


/* FOOTER */
footer {
  background-color: #071a3f;
  color: white;
  padding: 30px 20px;
  text-align: center;
  flex-shrink: 0; /* for sticky footer */
  margin-top: auto;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffcb05;
  margin-bottom: 5px;
}

footer .tagline {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: #ffcb05;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links li a {
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffcb05;
}

footer p {
  font-size: 0.8rem;
  color: #ccc;
  margin: 0;
}


@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .nav-panel,
  .menu-toggle .bar {
    transition: none !important;
  }
}



/* Contact Section */
#contact {
  background-color: #0a1a3f; /* dark blue background */
  padding: 40px;
  color: #fff;
  display: flex;
  justify-content: center; /* centers the form horizontally */
}

#contact .contact-wrapper {
  width: 100%;
  max-width: 650px;
}

#contact h2.section-title {
  color: #ffcb05; /* yellow */
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

#contact form {
  margin-top: 20px;
}

#contact label {
  display: block;
  margin: 14px 0 6px;
  font-weight: bold;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  background-color: rgba(0, 51, 102, 0.8);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #ccc;
}

#contact button {
  margin-top: 14px;
  background-color: #ffcb05;
  color: #000;
  border: 0;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

#contact button:hover {
  background-color: #e6b800;
}

#contact .note {
  font-size: 0.9rem;
  color: #ccc;
}

#formMsg {
  margin-top: 10px;
}

.alert {
  padding: 10px 12px;
  border-radius: 8px;
}

.alert.ok {
  background: #e7f7ec;
  color: #0a6b2b;
}

.alert.err {
  background: #fdecea;
  color: #b3261e;
}

/* Make the whole page background dark blue */
body {
  margin: 0;
  background-color: white; /* default background */
}

footer {
  background-color: #0a1a3f;
  color: #fff;
  padding: 20px;
  border-top: 3px solid #ffcb05; /* yellow line for separation */
}

#who-we-are {
    color: black;
    padding: 40px 40px;
  }
  #who-we-are p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    margin: 6px 0;
    max-width: 650px;
    text-align: left;
    padding-left: 40px;
  }


@keyframes fadeInUp{
  0%{
    transform: translateY(100%);
    opacity: 0;
  }
  100%{
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 0.5s fadeInUp;
}