:root {
  --navy: #14205a;
  --navy-deep: #0e1a4a;
  --blue: #2f6bff;
  --blue-soft: #eaf3fc;
  --blue-mid: #cfe4fb;
  --bg-page: #f3f8fe;
  --gray: #5b6684;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: linear-gradient(180deg, var(--bg-page) 0%, #eaf3fc 55%, #dcebfb 100%);
  overflow-x: hidden;
  position: relative;
}

h1, h2, .brand-text h2 {
  font-family: "Poppins", sans-serif;
}

.page {
  position: relative;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 0 0;
  overflow: hidden;
}

/* decorative crosses ------------------------------------------------ */
.deco-cross {
  position: absolute;
  color: rgba(255,255,255,.55);
  font-size: 1.4rem;
  z-index: 1;
  pointer-events: none;
}
.deco-cross.c1 { top: 12%; right: 3%; font-size: 2.2rem; color: rgba(255,255,255,.65); }
.deco-cross.c2 { top: 46%; right: 1%; font-size: 1.6rem; }
.deco-cross.c3 { top: 4%; left: 42%; font-size: 1.1rem; color: rgba(47,107,255,.18); }
.deco-cross.c4 { top: 62%; left: 46%; font-size: 1.1rem; color: rgba(47,107,255,.18); }

/* emergency badge ---------------------------------------------------- */
.emergency-badge {
  position: absolute;
  top: 26px; right: 34px;
  z-index: 5;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 8px 24px -10px rgba(20,32,90,.18);
}
.badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #dce8fd; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.badge-label { font-size: 0.78rem; color: var(--gray); }
.badge-value { font-weight: 700; color: var(--navy); font-size: 0.98rem; }

/* hero grid ----------------------------------------------------------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  padding: 56px 56px 0;
  position: relative;
  z-index: 2;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; padding-bottom: 30px; }

.brand-row { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.brand-mark { width: 92px; height: 92px; flex-shrink: 0; }
.mark-svg { width: 100%; height: 100%; }
.brand-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.brand-text p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gray);
  font-weight: 600;
}

.headline {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 22px;
}
.headline span {
  display: inline-block;
  color: var(--blue);
  position: relative;
}
.headline span::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 4px; width: 60%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  max-width: 560px;
}
.sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 0 30px;
  line-height: 1.6;
}

/* progress ---------------------------------------------------------------- */
.progress-block { display: flex; align-items: center; gap: 18px; margin-bottom: 10px; max-width: 560px; }
.progress-track {
  flex: 1;
  height: 14px;
  border-radius: 20px;
  background: #dfe7f6;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #1c3fd1, var(--blue));
}
.progress-pct { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.progress-caption {
  margin: 0 0 30px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--gray);
  font-weight: 600;
}

/* feature strip -------------------------------------------------------- */
.feature-strip {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  padding: 22px 8px;
  box-shadow: 0 10px 26px -14px rgba(20,32,90,.15);
}
.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0 8px;
  border-right: 1px solid rgba(20,32,90,.08);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
}

/* right column: media -------------------------------------------------- */
.hero-right { position: relative; display: flex; flex-direction: column; }
.media-wrap {
  position: relative;
  border-radius: 0 0 0 60px;
  overflow: hidden;
  flex: 1;
  min-height: 480px;
}
.media-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-wave { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 130px; }

.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  padding: 20px 26px;
  margin-top: -10px;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 26px -14px rgba(20,32,90,.15);
}
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #dce8fd; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.contact-label { font-size: 0.72rem; color: var(--gray); }
.contact-value { font-weight: 700; font-size: 0.9rem; color: var(--navy); }

/* footer ------------------------------------------------------------------ */
.page-footer {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 56px 20px 20px;
}
.stay-connected {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--navy); font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.stay-connected .line { width: 70px; height: 1px; background: rgba(20,32,90,.25); }

.social-row { display: flex; justify-content: center; gap: 14px; margin-bottom: 18px; }
.social-circle {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
}
.social-circle.fb { background: #1877f2; }
.social-circle.ig { background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-circle.yt { background: #ff0000; }
.social-circle.wa { background: #25d366; }

.copyright { color: var(--gray); font-size: 0.85rem; margin: 0; }

.bottom-wave {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 140px;
  margin-top: -20px;
}

/* responsive ------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 28px 0; }
  .hero-right { order: -1; }
  .media-wrap { border-radius: 0 0 40px 40px; min-height: 320px; }
  .emergency-badge { position: static; margin: 0 0 20px; width: fit-content; }
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feature-strip { flex-wrap: wrap; row-gap: 18px; }
  .feature-item { flex: 1 1 30%; border-right: none; }
}

@media (max-width: 560px) {
  .brand-row { flex-wrap: wrap; }
  .headline { font-size: 2rem; }
  .feature-item { flex: 1 1 45%; }
}
.brand-row{
    display:flex;
    align-items:center;
    gap:20px;
}

.brand-logo img{
    width:110px;      /* Change as needed */
    height:auto;
    display:block;
}

.brand-text h2{
    margin:0;
    font-size:26px;
    font-weight:800;
    color:#12308a;
    line-height:1.1;
}

.brand-text p{
    margin-top:8px;
    font-size:12px;
    letter-spacing:3px;
    color:#5b6d8f;
    text-transform:uppercase;
}

@media (max-width:768px){

    .brand-row{
        flex-direction:column;
        text-align:center;
    }

    .brand-logo img{
        width:80px;
    }

    .brand-text h2{
        font-size:12px;
    }

    .brand-text p{
        font-size:14px;
        letter-spacing:2px;
    }

}