/* 🔹 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* 🔹 Global Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b1c2c;
  color: white;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1001;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* 🔹 Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #0b1c2c;
    width: 200px;
    padding: 1rem;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* 🔹 Global WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  background-color: #1ebc5b;
}

/* 🔹 Global Footer Styles */
footer {
  background-color: #0b1c2c;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: white;
  text-decoration: underline;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5em;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }
}

.thank-you {
  text-align: center;
  padding: 4em 2em;
  font-family: 'Segoe UI', sans-serif;
}

.thank-you h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.thank-you p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #004aad;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* 🔹 Unified Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b1c2c;
  color: white;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1001;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* 🔹 Responsive Navbar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0b1c2c;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
}
