/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f7fc;
  color: #1f2933;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Header / nav */
header {
  background: #1e407c;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-bottom: 4px solid #15325e;
}



.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 32px;
  width: auto;
  border-radius: 8px;
}

.home-hero-logo img {
  width: 450px;
  max-width: 85%;
  margin: 0 auto 1rem auto;
  display: block;
  border-radius: 8px;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-wrap a.brand-pill {
  text-decoration: none;
  color: inherit;
}
.brand-wrap a.brand-pill:hover {
  text-decoration: none;
}
.brand-pill {
  background: #ffffff;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e407c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.brand-line {
  width: 100%;
  height: 3px;
  background: #5b9bd5;
  margin-top: 2px;
  border-radius: 0 0 4px 4px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

nav a {
  color: #e5f0ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

nav a.active {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #5b9bd5;
}

/* Shared page hero */
.page-hero {
  background: #1e407c;
  color: #ffffff;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-title {
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: #ffffff;
}

.page-hero-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Home hero specific */
.home-hero {
  padding: 4.5rem 1.5rem 4rem;
  background: #1e407c;
}

.home-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-hero-card {
  display: inline-block;
  background: #ffffff;
  padding: 0.5rem 1.35rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: 1rem;
  color: #1e407c;
}
.home-hero-card-line {
  width: 100%;
  height: 3px;
  background: #5b9bd5;
  margin-bottom: 1rem;
  border-radius: 0 0 4px 4px;
}

.home-hero-tagline {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-style: italic;
  color: #c6d8ee;
}

.home-hero-heading {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.home-hero-heading span {
  display: block;
}

.home-hero-text {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: #d1d5db;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  background: #ffffff;
  color: #1e407c;
  border: 2px solid #1e407c;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #f1f5fb;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.section-light {
  background: #f3f7fc;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: #1e407c;
}

.section-subtitle {
  text-align: center;
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: #374151;
}

/* Video area */
.video-wrapper {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  min-height: 320px;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* Feature / card grid – light blue boxes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #e8f0fe;
  border: 1px solid #a0c4f6;
  border-radius: 10px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.feature-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #1e407c;
}

.feature-text {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

/* About text */
.about-text {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  color: #374151;
}

.about-text .section-title {
  color: #1e407c;
  font-size: 1.4rem;
}

.about-text p {
  margin: 0 0 1rem;
}

/* Team */
.team-section-title {
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #0a406f;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}

.team-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #1e407c;
}

.team-role {
  font-size: 0.85rem;
  color: #374151;
}

/* Services page */
.services-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Light blue boxes with checkbox bullets */
.service-panel {
  background: #e8f0fe;
  border: 1px solid #a0c4f6;
  border-radius: 10px;
  padding: 1.7rem 1.8rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.service-heading {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  color: #1e407c;
  font-weight: 700;
}

.service-divider {
  height: 1px;
  background: #a0c4f6;
  margin: 0.75rem 0 1rem;
}

.service-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.95rem;
  color: #374151;
}

.service-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.45;
}

/* Checkbox icon (light blue circle with check) */
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  background: no-repeat center / 10px 10px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='%23e8f0fe' stroke='%235b9bd5' stroke-width='1.5'/%3E%3Cpath fill='none' stroke='%231e407c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 9 l3 3 5-6'/%3E%3C/svg%3E");
}

/* Services CTA strip */
.services-cta {
  background: #1e407c;
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
}

.services-cta-title {
  margin: 0 0 0.5rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
}

.services-cta-text {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* Contact page */
.contact-cards {
  max-width: 900px;
  margin: -2.5rem auto 3rem;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: #e8f0fe;
  border: 1px solid #a0c4f6;
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}

.contact-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #1e407c;
}

.contact-role {
  font-size: 0.8rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-line {
  font-size: 0.9rem;
  margin: 0.15rem 0;
  color: #1f2933;
}

.contact-line a {
  color: #1e407c;
}

.office-card {
  margin-top: 1.5rem;
  background: #e8f0fe;
  border: 1px solid #a0c4f6;
  border-radius: 10px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  text-align: center;
  font-size: 0.9rem;
  color: #374151;
}

.office-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Footer */
footer {
  background: #1e407c;
  color: rgba(255, 255, 255, 0.95);
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  margin: 0.5rem auto 0.75rem;
  height: 40px;
}

.footer-text {
  margin: 0.15rem 0;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-heading {
    font-size: 1.7rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }
}

