:root {
  --primary-color: #2563eb;
  --primary-color-dark: #1d4ed8;
  --background-color: #f9fafb;
  --text-color: #1f2937;
  --secondary-text-color: #374151;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
  color: white;
}

header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-top: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
} */


header {
  background: #046d51; /* emerald green */
  color: #fff;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 8px; /* optional */
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.tagline {
  margin: 12px 0 20px;
  font-size: 1rem;
  opacity: 0.9;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ccefe4; /* soft mint on hover */
}
main {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-align: center;
}

section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-text-color);
  text-align: center;
}

.about-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: block;
  margin: 2rem auto;
}

/* .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.service-card p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
} */

.quiz-link {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.quiz-link:hover {
  background-color: var(--primary-color-dark);
}

footer {
  background-color: #046d51;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

footer p {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

footer a {
  color: #60a5fa;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

#about {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

#about h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #003366; /* navy/compass theme */
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0077b6; /* accent blue */
  margin: 10px auto 0;
  border-radius: 2px;
}

#about p {
  margin-bottom: 16px;
  font-size: 1rem;
}

#about ul {
  margin: 15px 0 25px 20px;
  padding: 0;
  list-style-type: none;
}

#about ul li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

#about ul li::before {
  content: "➤"; /* compass arrow */
  position: absolute;
  left: 0;
  color: #0077b6;
  font-size: 1rem;
}

#about blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 30px 0;
  padding: 20px;
  border-left: 5px solid #0077b6;
  background: #eef6fb;
  border-radius: 8px;
  color: #003366;
}

#about .tagline {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 20px;
  color: #0077b6;
}

#what-we-do {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  text-align: center;
}

#what-we-do h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
}

#what-we-do h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0077b6;
  margin: 10px auto 0;
  border-radius: 2px;
}

#what-we-do .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.service {
  background: #f9fafb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.service h3 {
  font-size: 1.3rem;
  color: #0077b6;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

#services {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

#services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
  position: relative;
}

#services h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0077b6;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.service-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: #0077b6;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Packages Section */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.package-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
}

.package-card .package-sub {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.package-card ul li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-weight: bold;
}

/* Call-to-action button */
.cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0077b6;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #005f86;
}