:root {
  --primary-color: #003366;    /* Deep Navy */
  --accent-color: #006699;     /* Muted corporate blue */
  --highlight-color: #f4c300;  /* Bold Yellow from logo */
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f3f6fb 0, #e7edf7 35%, #f9fafc 70%, #ffffff 100%);
  color: var(--text-color);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* === NAVIGATION BAR === */
nav {
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-logo {
  flex: 0 0 auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 96px;
  max-width: 260px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-text .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-brand-text .brand-tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: #e2e8f0;
}

/* === TOGGLE BUTTON === */
.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle svg .bar {
  fill: var(--white);
  transition: all 0.4s ease;
  transform-origin: center;
}

.nav-toggle.open .top {
  transform: translateY(30px) rotate(45deg);
}

.nav-toggle.open .middle {
  opacity: 0;
}

.nav-toggle.open .bottom {
  transform: translateY(-30px) rotate(-45deg);
}

/* === NAVIGATION LINKS === */
.navbar {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  flex-wrap: wrap;
}

.navbar li {
  margin: 0;
}

.navbar a {
  color: var(--white);
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.navbar a:hover {
  color: var(--highlight-color);
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--highlight-color);
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* === ANIMATION === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
    position: relative;
    letter-spacing: 0.04em;
  }

  .navbar.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
}

/* HERO SECTION */
.hero {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  background: linear-gradient(120deg, rgba(0, 51, 102, 0.95), rgba(0, 102, 153, 0.92));
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  padding: 1.5rem 1.75rem 2.25rem;
  text-align: center;
  overflow: hidden;
}

.header-image {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: 2.4rem;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slogan {
  font-size: 1.05rem;
  margin-top: 0.4rem;
  font-style: normal;
  color: #f4f6fb;
}

.hero-cta {
  margin-top: 1.35rem;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 1.25rem;
}

/* HOME PAGE FORMAL LAYOUT */
.home-page .container {
  max-width: 1000px;
}

.home-page main section {
  background: var(--white);
  padding: 1.9rem 2.25rem;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.home-page main section:last-of-type {
  margin-bottom: 0;
}

.home-page main p {
  font-size: 1rem;
  line-height: 1.8;
}

.home-page main ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.home-page main li {
  margin-bottom: 0.4rem;
}

/* KEY SERVICES ON HOME */
.key-services {
  margin-bottom: 2.5rem;
}

.key-services-grid {
  margin-top: 1.5rem;
}

.key-service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.key-service-card p {
  font-size: 0.98rem;
}

.key-services-link {
  text-align: right;
  margin-top: 1rem;
  font-weight: 500;
}

.key-services-link a {
  color: var(--accent-color);
}

/* PROCESS, SECTORS, TESTIMONIALS, FAQ, NEWSLETTER */
.process-section,
.sectors-section,
.testimonials-section,
.faq-section,
.newsletter-section {
  margin-top: 2.25rem;
}

.process-step h3,
.sector-card h3 {
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  margin-top: 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-list {
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f1f5f9;
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
  border-top: 1px solid #e2e8f0;
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  padding: 0.75rem 1rem 1rem;
}

.newsletter-intro {
  max-width: 700px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  min-width: 240px;
  max-width: 320px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* TITLES */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--highlight-color);
  display: block;
  margin: 0.5rem auto 0;
}

/* GRID AND CARDS */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card, .team-card {
  background: var(--white);
  border-left: 5px solid var(--highlight-color);
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover, .team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

/* TEAM PROFILE ICONS */
.team-section {
  padding: 3rem 1.5rem;
  background-color: #f8f9fc;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* EBEN TEAM LIST (TEAM PAGE) */
.eben-team {
  max-width: 900px;
  margin: 0 auto 3rem;
  background: var(--white);
  padding: 2.5rem 3rem;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

.eben-team p {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.eben-team-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 2.5rem;
  padding: 0;
  margin: 0;
}

.eben-team-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
}

.eben-team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
}

/* OUR CLIENTS SECTION */
.clients-section {
  margin-top: 2rem;
}

.clients-section p {
  text-align: center;
  margin-bottom: 1rem;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.client-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
}

.client-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 1.1rem;
  line-height: 1;
}

/* Shared team card styles */
.team-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.profile-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-card.ceo {
  order: -1; /* Show first in grid order */
  grid-column: 1 / -1; /* Full width on large screens */
  background-color: #eefaff;
  border: 2px solid #00aacc;
  box-shadow: 0 6px 15px rgba(0, 170, 204, 0.2);
  position: relative;
}

/* Optional: CEO badge overlay */
.team-card.ceo::after {
  content: "CEO";
  position: absolute;
  top: 16px;
  right: 16px;
  background: #00aacc;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 170, 204, 0.3);
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button, .cta-button {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .cta-button:hover {
  background-color: var(--highlight-color);
  color: var(--primary-color);
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2.25rem 1.25rem 2.5rem;
  margin-top: 3.25rem;
  box-shadow: 0 -6px 16px rgba(15, 23, 42, 0.18);
}

footer h3 {
  margin-bottom: 0.5rem;
}

footer p {
  margin: 0.3rem 0;
}

.footer-links {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e2e8f0;
  font-size: 0.95rem;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  body {
    font-size: 1.02rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-logo img {
    height: 72px;
  }

  .nav-brand-text .brand-name {
    font-size: 0.9rem;
  }

  .nav-brand-text .brand-tagline {
    font-size: 0.7rem;
  }

  .navbar {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero {
    margin-top: 1rem;
    padding: 1rem 1.1rem 1.5rem;
  }

  .header-image {
    max-height: 220px;
    object-fit: cover;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .slogan {
    font-size: 0.95rem;
  }

  .hero-cta {
    display: inline-block;
    margin-top: 1rem;
    padding-inline: 1.4rem;
  }

  .container {
    margin: 1.5rem auto 2.5rem;
    padding: 0 0.85rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card,
  .team-card {
    padding: 1.1rem 1.2rem;
  }

  form {
    padding: 1.4rem 1.2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  footer {
    padding: 1.75rem 1rem 2rem;
  }
}

.centered-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
}

.centered-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.centered-list li::before {
  content: "✔";
  color: var(--highlight-color);
  position: absolute;
  left: 0;
}

.trainer-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  border-left: 6px solid var(--highlight-color);
  border-radius: 6px;
  box-shadow: var(--shadow);
  margin: 2rem auto;
  max-width: 600px;
}

.trainer-values h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.trainer-values ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
}

.trainer-values li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==== CAREERS PAGE ==== */
.careers {
  padding: 4rem 2rem;
  background-color: #f5f8fb;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #003f5e;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.job-listings {
  margin: 2rem 0;
}

.no-jobs {
  font-style: italic;
  color: #888;
  font-size: 1rem;
  padding: 1.5rem;
  background-color: #f0f0f0;
  border: 1px dashed #ccc;
  border-radius: 6px;
  display: inline-block;
}

.apply-note {
  margin-top: 2rem;
}

.apply-note p {
  font-size: 1rem;
  color: #333;
}

.apply-note a {
  color: #007acc;
  text-decoration: none;
  font-weight: 600;
}

.apply-note a:hover {
  text-decoration: underline;
}
.cta-button {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 2rem;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005c9e;
}
.cta-button:active,
.cta-button:focus {
  background-color: #ffcc00;
  color: #000;
  outline: none;
}
