:root {
  --navy: #082b67;
  --navy-dark: #061f4a;
  --blue: #2ba9e9;
  --blue-light: #dff5ff;
  --blue-pale: #f2fbff;
  --yellow: #ffd139;
  --yellow-light: #fff6c9;

  --text: #18304c;
  --muted: #64748b;
  --white: #ffffff;
  --border: #dceaf2;

  --shadow: 0 14px 36px rgba(8, 43, 103, 0.08);

  --header-height: 180px;
}


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

html {
  scroll-behavior: auto;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


#home,
#about,
#programme,
#team,
#service-info,
#contact {
  scroll-margin-top: calc(var(--header-height) + 8px);
}


h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}

h3 {
  font-size: 1.3rem;
}

h1 span,
h2 span {
  color: var(--blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--yellow);
}

.small-label {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--border);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 43, 103, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo-link {
  display: flex;
}

.site-logo {
  width: 150px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 700;
}

.header-button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(43, 169, 233, 0.15),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #f6fcff,
      #ffffff 58%,
      #fffdf4
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.hero-content {
  padding: 8px 0;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-intro {
  max-width: 580px;
  color: #38506b;
  font-size: 1.17rem;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 27px;
}

.hero-service {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-icon {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.blue-icon {
  background: var(--blue-light);
}

.yellow-icon {
  background: var(--yellow-light);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}

.hero-image-area {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 42% 13% 29% 13% / 15% 24% 20% 37%;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-note {
  position: absolute;
  right: -4px;
  bottom: 10px;
  padding: 14px 22px;
  color: var(--navy);
  background: var(--yellow);
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  margin-top: 2px;
  font-size: 0.86rem;
}

.hero-decoration {
  position: absolute;
  border-radius: 999px;
}

.hero-decoration-one {
  top: 28px;
  right: -180px;
  width: 620px;
  height: 72px;
  border: 18px solid rgba(43, 169, 233, 0.15);
  transform: rotate(21deg);
}

.hero-decoration-two {
  top: 140px;
  right: -120px;
  width: 440px;
  height: 54px;
  border: 14px solid rgba(255, 209, 57, 0.28);
  transform: rotate(-21deg);
}


/* ABOUT */

.intro-section {
  padding: 48px 0;
}

.intro-content {
  max-width: 980px;
}

.intro-content h2 {
  max-width: 900px;
}

.intro-copy {
  max-width: 760px;
  margin-top: 22px;
  color: #52677e;
  font-size: 1.03rem;
  line-height: 1.7;
}

.intro-copy p + p {
  margin-top: 18px;
}


.programme-section {
  padding: 50px 0;
  background: var(--blue-pale);
}

.programme-heading {
  max-width: 1100px;
  margin-bottom: 30px;
  text-align: left;
}

.programme-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.45rem, 3.3vw, 3.35rem);
}

.programme-heading p {
  max-width: 690px;
  margin-top: 13px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 26px;
  border: 1px solid rgba(43, 169, 233, 0.18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 43, 103, 0.05);
}

.large-service-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--blue-light);
  font-size: 1.5rem;
}

.service-card:nth-child(even) .large-service-icon {
  background: var(--yellow-light);
}

.service-card h3 {
  margin-bottom: 9px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.programme-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  margin-top: 24px;
}

.programme-panel {
  padding: 26px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(43, 169, 233, 0.18);
}

.programme-panel-yellow {
  background: #fffdf4;
}

.programme-panel-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.programme-icon {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.yellow-programme-icon {
  color: var(--navy);
  background: var(--yellow);
}

.programme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.programme-list span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #415873;
  background: #f2f8fb;
  font-size: 0.81rem;
  font-weight: 650;
}

.programme-panel-yellow .programme-list span {
  background: #fff4c4;
}


.people-section {
  padding: 50px 0;
  background: var(--white);
}

.people-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.people-heading p {
  max-width: 650px;
  margin-top: 13px;
  color: var(--muted);
}


.founder-feature {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 34px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff, #f3fbff);
  box-shadow: var(--shadow);
}

.founder-image {
  min-height: 610px;
  overflow: hidden;
  border-radius: 21px;
  background: #edf4f7;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-content {
  padding: 8px 8px 4px;
}

.founder-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.founder-content > h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
}

.founder-content > p {
  color: #50657c;
  font-size: 0.95rem;
}

.founder-content > p + p {
  margin-top: 12px;
}

.founder-quote {
  margin-top: 20px;
  padding: 19px 21px;
  border-radius: 17px;
  background: var(--blue-pale);
  color: #35516f;
}

.quote-mark {
  display: block;
  height: 25px;
  color: var(--blue);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.7;
}

.founder-quote p {
  font-size: 0.92rem;
  font-style: italic;
}

.founder-quote cite {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}


.founder-training {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(43, 169, 233, 0.18);
  border-radius: 18px;
  background: var(--white);
}

.founder-training-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.training-check {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.founder-training h4 {
  font-size: 1rem;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.training-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #415873;
  background: var(--blue-pale);
  font-size: 0.74rem;
  font-weight: 650;
}

.trust-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--yellow-light);
  font-size: 0.8rem;
}

.trust-note strong,
.trust-note span {
  display: block;
}


.team-subheading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-top: 38px;
  margin-bottom: 20px;
}

.team-subheading h3 {
  font-size: 1.55rem;
}

.team-subheading p {
  max-width: 430px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(8, 43, 103, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-photo {
  height: 300px;
  overflow: hidden;
  background: #f4f8fb;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-content {
  padding: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-content h3 {
  font-size: 1.05rem;
}

.team-role {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.team-content p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}


.values-banner {
  padding: 43px 0;
  color: var(--white);
  background: var(--navy);
}

.slogan-centre {
  text-align: center;
}

.values-small {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.values-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.values-banner h2 span {
  color: var(--yellow);
}


.service-info-section {
  padding: 50px 0;
  background: var(--white);
}

.service-info-heading {
  max-width: 830px;
  margin-bottom: 28px;
}

.service-info-heading h2 {
  max-width: 790px;
}

.service-info-heading p {
  max-width: 690px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-fact {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fbfdff;
}

.fact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-fact strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.transport-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.commission-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 15px;
  background: var(--yellow-light);
  color: var(--navy);
}

.commission-icon {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}


.gallery-section {
  padding: 50px 0;
  background: #fbfdff;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 26px;
}

.gallery-heading > div {
  max-width: 720px;
}

.gallery-heading p {
  max-width: 400px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}


.contact-section {
  padding: 52px 0;

  background:
    linear-gradient(
      145deg,
      #effaff,
      #fffbed
    );
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.contact-intro {
  margin-top: 17px;
  max-width: 540px;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-point {
  display: flex;
  gap: 13px;
}

.contact-point-icon {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
}

.contact-point strong,
.contact-point span {
  display: block;
}

.contact-point span {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-card {
  padding: 30px;
  border: 1px solid rgba(43, 169, 233, 0.2);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card > p {
  margin: 7px 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.form-group {
  margin-bottom: 13px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ccdae5;
  border-radius: 10px;
  background: #fcfeff;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-submit {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
  cursor: pointer;
}

.form-message {
  display: none;
}


.site-footer {
  padding-top: 40px;
  background: #f6fbfe;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.9fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 165px;
  height: auto;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 410px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 28px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-links a {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-contact p {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-instagram {
  margin-top: 10px;
  color: var(--navy);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.77rem;
}

.footer-message {
  color: var(--navy);
  font-weight: 700;
}


@media (max-width: 1040px) {

  .header-button {
    display: none;
  }

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

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

  .programme-heading h2 {
    white-space: normal;
  }

  .founder-feature {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

}


@media (max-width: 820px) {

  .container {
    width: min(100% - 34px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 5px;
  }

  .hero-grid,
  .programme-detail-grid,
  .founder-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 470px;
  }

  .founder-image {
    min-height: 570px;
    max-height: 650px;
  }

  .team-subheading,
  .gallery-heading {
    display: block;
  }

  .team-subheading p,
  .gallery-heading p {
    margin-top: 12px;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links,
  .footer-contact {
    padding-top: 0;
  }

}


@media (max-width: 580px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 25px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 370px;
    border-radius: 26px;
  }

  .intro-section,
  .programme-section,
  .people-section,
  .service-info-section,
  .gallery-section,
  .contact-section {
    padding: 38px 0;
  }

  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .founder-feature {
    padding: 18px;
  }

  .founder-image {
    min-height: 470px;
  }

  .team-photo {
    height: 360px;
  }

  .service-facts {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links,
  .footer-contact {
    padding-top: 0;
  }

  .footer-bottom-inner {
    padding: 15px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

}
