* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1530
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

:root {
  --teal: #12b1a9;
  --navy: #2b347a;
  --btn: #d77c2b;
  --max: 1200px;
  --white: #fff;
}

/* ================= TOP BAR ================= */
.topbar {
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
}

.topbar__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__item img {
  width: 12px;
  height: 12px
}

.topbar__right a {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__right img {
  width: 12px;
  height: 12px
}

.sep {
  opacity: .85;
  font-weight: 700;
}

img.facebook {
  width: 10px;
  height: 12px;
}

/* ================= NAV ================= */
.header {
  background: var(--navy);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  /* padding: 14px 18px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-box {
  background: #fff;
  border-radius: 4px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-width: 240px; */
}

.logo-box img {
  height: 44px;
  width: auto;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.menu a {
  color: #fff;
  opacity: .9
}

.menu a:hover {
  opacity: 1
}

.ctas {
  background: var(--btn);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  white-space: nowrap;
}

.ctas .cta-arrow {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.ctas .cta-arrow img {
  width: 12px;
  height: 11px;
}

/* ================= BANNER ================= */
.banner {
  position: relative;
  height: auto;
  overflow: hidden;
  background: #000;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Blue gradient overlay like screenshot */
.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background:
    linear-gradient(to bottom,
      rgba(43, 52, 122, .10) 0%,
      rgba(43, 52, 122, .45) 45%,
      rgba(43, 52, 122, .95) 100%);
  pointer-events: none;
}

.banner__title {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1c2333
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

:root {
  --max: 980px;
  --muted: #7b849a;
  --line: #eceef3;
  --card: #f6f7f9;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 18px 70px;
}

/* =======================
       TOP: IMAGE + TEXT
    ======================= */
.about-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: start;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}

.about-text h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 10px;
  color: #27314a;
}

.about-text .quote {
  margin-top: 18px;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  color: #4a556f;
  line-height: 1.6;
  font-size: 13px;
}

.about-text .para {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 42px 0 34px;
}

/* =======================
       MEET KEY PERSONS
    ======================= */
.section-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: .6px;
  color: #27314a;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 26px;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  line-height: 1.6;
  color: #6f7890;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.team-card {
  border: 1px solid var(--line);
  background: #fff;
}

.team-card img.team-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.team-body {
  background: #fff;
  text-align: center;
  padding: 16px 14px 18px;
}

.team-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  color: #27314a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  color: #6f7890;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.team-social a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  opacity: .85;
}

.team-social a:hover {
  opacity: 1
}

.team-social img {
  width: 14px;
  height: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

/* =====================
     STATS SECTION
  ===================== */
.stats-section {
  background: #2b347a;
  /* same navy */
  padding: 50px 20px;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  color: #fff;
}

.stat-box img {
  margin: 0 auto 12px;
}

.stat-box p {
  font-size: 14px;
  opacity: .95;
  letter-spacing: .3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f2a44
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

:root {
  --max: 1100px;
  --navy: #293173;
  /* main blue */
  --muted: #6f7a90;
  --line: #e9ecf3;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
}

.section {
  padding: 54px 16px 64px;
  background: #fff;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* =====================
       HEADING
    ===================== */
.top-title {
  text-align: center;
  /* font-weight: 900; */
  font-size: 34px;
  margin-bottom: 10px;
  color: #1e2a44;
}

.top-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

/* =====================
       CONTACT + FORM GRID
    ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
}

/* LEFT: CONTACT INFO */
.info-card {
  background: var(--navy);
  color: #fff;
  padding: 28px 24px;
  min-height: 440px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 12px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 18px;
  max-width: 340px;
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 18px 0;
}

.info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
}

.info-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #6044DE;
  display: grid;
  place-items: center;
}

.info-ic img {
  width: 16px;
  height: 16px;
}

.info-item h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}

.info-item span {
  font-size: 12px;
  opacity: .88;
  line-height: 1.6;
  display: block;
}

/* RIGHT: FORM */
.form-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  min-height: 440px;
}

.form-card h3 {
  font-size: 22px;
  /* font-weight: 900; */
  color: #1e2a44;
  margin-bottom: 10px;
}

.form-card .hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 12px;
  outline: none;
  background: #fff;
  color: #1e2a44;
}

.field:focus {
  border-color: #c9d2ff;
  box-shadow: 0 0 0 3px rgba(41, 49, 115, .10);
}

.full {
  grid-column: 1 / -1;
}

textarea.field {
  min-height: 110px;
  resize: vertical;
}

.btn-row {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 14px 11px 16px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(41, 49, 115, .28);
}

.cta .circle {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.cta .circle img {
  width: 30px;
  height: 30px;
}

/* =====================
       TESTIMONIALS
    ===================== */
.testi-title {
  text-align: center;
  margin-top: 56px;
  /* font-weight: 900; */
  font-size: 18px;
  letter-spacing: .4px;
  color: #2a344a;
  text-transform: uppercase;
}

.testi-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.testi-card {
  background: #f8fbff;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;
  border: 1px solid #eef4ff;
}

.testi-card .q {
  width: 36px;
  margin: 0 auto 12px;
  opacity: .65;
}

.testi-card p {
  font-size: 11px;
  color: #6f7a90;
  line-height: 1.7;
  margin-bottom: 16px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 5px solid #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
  background: #fff;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-weight: 600;
  font-size: 13px;
  color: #2a344a;
  margin-bottom: 2px;
}

.role {
  font-size: 11px;
  color: #9aa6bd;
}

.site-footer {
  position: relative;
  background: #2A3276;
  color: #fff;
  padding: 0 0 22px;
  overflow: hidden;
  font-family: Inter, system-ui, Arial, sans-serif;
}

/* Decorative shapes (very light) */
.f-shape {
  position: absolute;
  opacity: .15;
  pointer-events: none;
  user-select: none;
}

.f-shape--t1 {
  left: 35px;
  top: 30px;
  width: 38px;
}

.f-shape--t2 {
  left: 75px;
  top: 58px;
  width: 26px;
}

.f-shape--t3 {
  right: 55px;
  top: 55px;
  width: 36px;
}

.f-shape--t4 {
  right: 30px;
  top: 35px;
  width: 24px;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Big logo box (white) */
.footer-logoBox {
  width: 250px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logoBox img {
  height: 54px;
  width: auto;
  display: block;
}

/* Socials on right */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__label {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  margin-right: 8px;
}

.footer-social__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.footer-social__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Divider lines */
.footer-divider {

  background: rgba(255, 255, 255, .10);
  margin: 18px 0 0;
}

.footer-divider--bottom {
  margin: 40px 0 14px;
}

/* Grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: 140px 140px 170px 260px 1fr;
  gap: 20px;
  padding-top: 26px;
  align-items: start;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 10px 0;
}

.footer-list a {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.footer-contact__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-contact__text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-top: 2px;
}

/* Subscribe */
.footer-subtext {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
}

.footer-form {
  display: flex;
  align-items: center;
  width: 250px;
  height: 36px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.footer-input {
  border: none;
  outline: none;
  padding: 0 12px;
  height: 100%;
  width: 100%;
  font-size: 12px;
  color: #333;
}

.footer-input::placeholder {
  color: #8a8a8a;
}

.footer-btn {
  width: 42px;
  height: 100%;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.footer-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

img.facebook-logo {
  width: 8px;
}

/* Bottom copyright */
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 1050px) {
  .footer-logoBox {
    width: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-col--subscribe .footer-form {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 620px) {
  .footer-wrap {
    padding: 0 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logoBox {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-form {
    width: 100%;
    max-width: 320px;
  }
}





/* =====================
       RESPONSIVE
    ===================== */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .form-card {
    min-height: unset;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .top-title {
    font-size: 28px;
  }
}

/* =====================
     RESPONSIVE
  ===================== */
@media(max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-box img {
    height: 64px;
  }
}

/* =======================
       RESPONSIVE
    ======================= */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding: 40px 14px 60px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .topbar__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-box {
    width: 100%;
    min-width: unset
  }

  .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .cta {
    width: 100%;
    justify-content: center
  }

  .banner {
    height: 360px
  }

  .banner__title {
    font-size: 38px
  }
}

@media (max-width: 480px) {
  .banner {
    height: 320px
  }

  .banner__title {
    font-size: 30px;
    top: 64%
  }
}

/* ================================================================
   ABOUT-US — MOBILE OVERRIDES
   ================================================================ */
@media (max-width: 1024px) {
  .header .nav {
    padding: 12px 16px !important;
    position: relative !important;
    flex-wrap: nowrap !important;
  }

  .header .menu {
    display: none;
  }

  .header .ctas {
    display: none !important;
  }

  .header .hamburger {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .topbar__wrap {
    flex-direction: column !important;
    padding: 8px 16px !important;
    gap: 6px !important;
    align-items: flex-start !important;
  }

  .topbar__right {
    gap: 10px !important;
  }

  .banner {
    height: 220px !important;
  }

  .banner__title {
    font-size: 28px !important;
  }

  .wrap {
    padding: 30px 16px 40px !important;
  }

  .about-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-img {
    aspect-ratio: 16/9 !important;
  }

  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .stats-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .info-card {
    min-height: auto !important;
  }

  .form-card {
    min-height: auto !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .footer-top {
    flex-direction: column !important;
    gap: 16px !important;
    padding-top: 20px !important;
    text-align: center !important;
  }

  .footer-form {
    width: 100% !important;
  }

  .top-title {
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}