:root{
  --qm:#0082c6;
  --bs-primary: var(--qm);
  --glass-bg: rgba(255,255,255,0.36);
  --glass: rgba(255,255,255,0.08);
  --glass-2: rgba(255,255,255,0.12);
  --text: #0f1724;
  --muted: #586069;
  --nm:#235b71;
  --tvm:#0884C4;
}
.bg-main{
    background-color: var(--qm);
    color: white;
}
.text-main{
    color: var(--qm);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fs-large{
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
}
html, body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    /* font-weight: 600; */
    /* letter-spacing: 1px; */
}
.bt
.btn-qm {
  background: white;
  color: var(--qm);
  border:1px solid;
  border-color: var(--qm);
  font-weight: 600;
}
.btn-qm:hover {
  background-color: var(--qm);
  color: white;
}
.btn-rqm {
  background-color: var(--qm);
  color: white;
  font-weight: 600;
  border:1px solid;
  border-color: var(--qm);
}
.btn-rqm:hover {
  background-color: white;
  color: var(--qm);
}
.page-divider{
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    width: 100vw;
    height: 50px;
    background-image: radial-gradient(circle, #0082c6, #0082c6, #0082c6, #0082c6, #0082c6);
}
.row-divider{
    margin: 0 auto;
    width: 100%;
    height: 3px;
    background-image: radial-gradient(circle, #0082c6, #0084b3, #00839d, #268088, #447c76);
}
/* Main Header – Brand Hero */
.s1 {
  font-size: 3.6rem;
  font-weight: 700;          /* Poppins shines at 600–700 */
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Section Header – Clear & Professional */
.s2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Card / Feature Header – Structured */
.s3 {
  font-size: 1.15rem;
  font-weight: 500;
  /* line-height: 1.45; */
  margin: 0;
  padding: 0;
}

/* Paragraph – Trustworthy & Readable */
.s4 {
  font-size: 1.05rem;
  font-weight: 400;          /* best readability for Poppins */
  line-height: 1.75;
  letter-spacing: 0.01em;    /* improves long-text readability */
}
.image-wrapper {
  width: 100%;
  height: 380px;          /* SAME height for all images */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* use contain if you don’t want cropping */
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  padding: 0.15rem;
}

@media (max-width: 768px) {
  .s1 { font-size: 2.7rem; }
  .s2 { font-size: 1.6rem; }
  .s3 { font-size: 1.05rem; }
  .s4 { font-size: 0.90rem; }
  .image-wrapper {
    height: 260px;
  }
}

.border-main{
  border-color: var(--qm);
}