:root {
  /* ==============================
     MUMTAZA BRAND COLORS
     ==============================
     Extracted from the supplied logo:
     Navy/Teal : #00404F
     Olive     : #4D6411
     Red       ::root {
  /* ==============================
     MUMTAZA BRAND COLORS
     ==============================
     Extracted from the supplied logo:
     Navy/Teal : #00404F
     Olive     : #4D6411
     Red       : #8A0009
  */
  --mumtaza-teal: #00404F;
  --mumtaza-olive: #4D6411;
  --mumtaza-red: #8A0009;

  --text: #163F49;
  --muted: #63757B;
  --background: #F7F9F7;
  --surface: #FFFFFF;
  --soft-green: #EEF3EC;
  --border: #DCE6E3;

  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow: 0 18px 55px rgba(0, 64, 79, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--background);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(circle at 10% 15%, rgba(77, 100, 17, 0.09), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(0, 64, 79, 0.08), transparent 26%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(0, 64, 79, 0.08);
  pointer-events: none;
}

.page-shell::before {
  top: -145px;
  left: -145px;
  box-shadow:
    65px 65px 0 -15px rgba(77, 100, 17, 0.06),
    130px 130px 0 -30px rgba(0, 64, 79, 0.05);
}

.page-shell::after {
  right: -170px;
  bottom: 55px;
  box-shadow:
    -65px -65px 0 -15px rgba(77, 100, 17, 0.06),
    -130px -130px 0 -30px rgba(0, 64, 79, 0.05);
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding-top: 42px;
  display: flex;
  justify-content: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  text-decoration: none;
}

.brand img {
  width: min(360px, 72vw);
  max-height: 105px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  gap: 5px;
}

.brand-values {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-values .value-religious {
  color: var(--mumtaza-olive);
}

.brand-values .value-respectful {
  color: var(--mumtaza-teal);
}

.brand-values .value-excellent {
  color: var(--mumtaza-red);
}

.brand-values .value-dot {
  color: var(--muted);
  opacity: 0.45;
  margin: 0 4px;
}

.brand-curriculum {
  margin: 0;
  color: var(--mumtaza-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

/* HERO */

.hero {
  min-height: 555px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0 54px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mumtaza-olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--mumtaza-olive);
}

h1 {
  margin: 18px 0 22px;
  color: var(--mumtaza-teal);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--mumtaza-olive);
}

.intro {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.status-message {
  display: grid;
  gap: 3px;
  margin-top: 25px;
  padding-left: 18px;
  border-left: 3px solid var(--mumtaza-olive);
}

.status-message strong {
  color: var(--mumtaza-teal);
  font-size: 18px;
}

.status-message span {
  color: var(--muted);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--mumtaza-teal);
  box-shadow: 0 10px 25px rgba(0, 64, 79, 0.18);
}

.button-primary:hover {
  background: #003642;
}

.button-secondary {
  color: var(--mumtaza-teal);
  background: #fff;
  border: 1px solid rgba(0, 64, 79, 0.28);
}

.button-secondary:hover {
  border-color: var(--mumtaza-teal);
}

/* ILLUSTRATION */

.hero-visual {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 390px;
  height: 260px;
  border-radius: 50%;
  background: rgba(77, 100, 17, 0.075);
  filter: blur(12px);
}

.arch-shape {
  position: absolute;
  width: 360px;
  height: 270px;
  bottom: 65px;
  border-radius: 180px 180px 20px 20px;
  background: rgba(0, 64, 79, 0.045);
}

.laptop {
  position: relative;
  z-index: 2;
  width: 430px;
  transform: translateY(8px);
}

.screen {
  height: 270px;
  padding: 11px;
  border: 7px solid #1B4D55;
  border-bottom-width: 10px;
  border-radius: 19px 19px 10px 10px;
  background: #E9F0EC;
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 6px;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #9CB1AA;
}

.screen-content {
  height: calc(100% - 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F8FAF7;
}

.gear {
  color: var(--mumtaza-teal);
  font-size: 74px;
  line-height: 1;
  animation: slow-spin 10s linear infinite;
}

.progress {
  width: 155px;
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #D8E2DB;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--mumtaza-olive);
}

.screen-content small {
  margin-top: 10px;
  color: #879690;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.base {
  width: 485px;
  height: 17px;
  margin: -1px auto 0;
  border-radius: 0 0 28px 28px;
  background: #B6C5BF;
  box-shadow: 0 8px 18px rgba(0, 64, 79, 0.12);
}

.base::after {
  content: "";
  display: block;
  width: 88px;
  height: 5px;
  margin: auto;
  border-radius: 0 0 8px 8px;
  background: #8DA19B;
}

.books {
  position: absolute;
  left: 4%;
  bottom: 67px;
  z-index: 3;
  width: 145px;
}

.books span {
  display: block;
  height: 27px;
  margin-top: 3px;
  border-radius: 3px 10px 3px 3px;
  background: #38636A;
  box-shadow: 0 4px 8px rgba(0, 64, 79, 0.08);
}

.books span:nth-child(2) {
  width: 128px;
  margin-left: 8px;
  background: #6F8A42;
}

.books span:nth-child(3) {
  width: 115px;
  margin-left: 18px;
  background: #D5DED7;
}

.plant {
  position: absolute;
  right: 5%;
  bottom: 64px;
  z-index: 3;
  width: 100px;
  height: 150px;
}

.stem {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 4px;
  height: 88px;
  border-radius: 999px;
  background: var(--mumtaza-olive);
  transform: translateX(-50%) rotate(7deg);
}

.leaf {
  position: absolute;
  width: 47px;
  height: 23px;
  border-radius: 100% 0 100% 0;
  background: #607E39;
}

.leaf-a {
  left: 8px;
  bottom: 93px;
  transform: rotate(24deg);
}

.leaf-b {
  right: 4px;
  bottom: 112px;
  transform: rotate(-29deg);
}

.leaf-c {
  right: 10px;
  bottom: 75px;
  transform: rotate(-50deg);
}

.plant::after {
  content: "";
  position: absolute;
  left: 27px;
  bottom: 16px;
  width: 48px;
  height: 40px;
  border-radius: 5px 5px 16px 16px;
  background: #D5DDD4;
}

/* INFO PANEL */

.info-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr;
  margin-bottom: 42px;
  border: 1px solid rgba(0, 64, 79, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.info-block {
  min-height: 185px;
  display: flex;
  gap: 17px;
  padding: 30px;
  align-items: flex-start;
}

.info-block + .info-block {
  border-left: 1px solid var(--border);
}

.info-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--mumtaza-olive);
}

.info-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.info-label {
  margin: 0 0 5px;
  color: var(--mumtaza-olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.info-block h2 {
  margin: 0 0 7px;
  color: var(--mumtaza-teal);
  font-size: 18px;
}

.info-block p:not(.info-label) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.info-block a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--mumtaza-teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.info-block a span {
  margin-left: 5px;
  color: var(--mumtaza-olive);
}

.social .info-icon {
  background: var(--mumtaza-teal);
}

.social a span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 500;
}

.contact {
  display: grid;
  align-content: center;
  gap: 13px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-row a {
  margin: 0;
}

.contact-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mumtaza-teal);
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

address {
  margin: 0;
  font-style: normal;
}

/* FOOTER */

.site-footer {
  padding: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: #7B898C;
  font-size: 12px;
  white-space: nowrap;
}

.footer-line {
  width: 90px;
  height: 1px;
  background: var(--border);
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 55px;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .intro {
    margin-inline: auto;
  }

  .status-message {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .info-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    grid-column: 1 / -1;
    border-left: 0 !important;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding-top: 26px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: min(285px, 80vw);
    max-height: 82px;
  }

  .brand-text {
    gap: 4px;
  }

  .brand-values {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .brand-curriculum {
    font-size: 9.5px;
    letter-spacing: 0.11em;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    padding: 40px 0 35px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .intro {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
    margin-inline: auto;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 305px;
    transform: scale(0.78);
    margin: -25px 0 -30px;
  }

  .info-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .info-block {
    min-height: 0;
    padding: 24px 21px;
  }

  .info-block + .info-block {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .contact {
    grid-column: auto;
  }

  .site-footer {
    gap: 10px;
    padding-bottom: 22px;
  }

  .footer-line {
    width: 35px;
  }
}