    :root {
        --bg: #ffffff;
        --bg-2: #f8f5f0;
        --bg-3: #f8fbff;
        --card: #ffffff;
        --card-2: #ffffff;
        --text: #0f172a;
        --muted: #475569;
        --line: rgba(15, 23, 42, 0.08);
        --blue: #1d4ed8;
        --blue-2: #3b82f6;
        --cyan: #38bdf8;
        --green: #16a34a;
        --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
        --radius: 18px;
        --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        color: var(--text);
        background: #ffffff;
        line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
    }

    .section {
        padding: 88px 0;
        position: relative;
        background: #ffffff;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border: 1px solid rgba(59,130,246,.18);
        background: rgba(37,99,235,.06);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #1e3a8a;
        backdrop-filter: blur(10px);
    }

    .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 4px rgba(22,163,74,.12);
    }

    .section-title {
        font-size: clamp(32px, 4vw, 56px);
        line-height: 1.05;
        margin: 18px 0 18px;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: #0b1220;
    }

    .section-subtitle {
        color: var(--muted);
        font-size: clamp(16px, 1.8vw, 20px);
        max-width: 760px;
        margin: 0;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .nav {
        height: 84px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .brand img {
        height: 56px;
        width: auto;
        object-fit: contain;
    }

    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center;
        font-size: 14px;
        color: #475569;
    }

    .nav-links a:hover { color: #0f172a; }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 14px;
        font-weight: 700;
        border: 1px solid transparent;
        transition: .25s ease;
        cursor: pointer;
    }

    .btn-primary {
        background: #003b75;
        color: white;
        box-shadow: 0 10px 30px rgba(37,99,235,.18);
    }

    .btn-primary:hover {
        background: #ffffff;
        border: 1px solid #003b75;
        color: #003b75;
    }

    .btn-secondary {
        border-color: rgba(15,23,42,.10);
        background: #ffffff;
        color: #0f172a;
    }

    .btn-secondary:hover {
        background: #f8fafc;
    }

    .hero {
        padding: 32px 0 56px;
        background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #f8f5f0 100%);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 40px;
        align-items: center;
    }

    .hero p {
        font-size: 18px;
        color: var(--muted);
        max-width: 660px;
        margin-bottom: 28px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 28px;
    }

    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .badge {
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(37,99,235,.12);
        background: #ffffff;
        color: #1e3a8a;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(15,23,42,.04);
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-visual img {
        object-fit: cover;
        border-radius: 16px;
    }

    .stats {
        margin-top: 112px;
        gap: 16px;
    }

    .stat-card {
        width: 820px;
        margin: auto;
        padding: 22px;
        border-radius: 20px;
        border: 1px solid rgba(15,23,42,.08);
        background: #ffffff;
        text-align: center;
        box-shadow: var(--shadow);
        color: #475569;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: start;
    }

    .card {
        padding: 28px;
        border-radius: 22px;
        border: 1px solid rgba(15,23,42,.08);
        background: #E7ECF3;
        box-shadow: var(--shadow);
    }

    .feature-grid {
        margin-top: 28px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .feature h3,
    .info-block h4 {
        margin: 0 0 10px;
        font-size: 18px;
        color: #0b1220;
    }

    .feature p,
    .info-block p,
    .card p,
    .contact-card p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
    }

    .icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        margin-bottom: 16px;
        background: linear-gradient(135deg, rgba(29,78,216,.08), rgba(56,189,248,.08));
        border: 1px solid rgba(59,130,246,.14);
        font-size: 20px;
        color: #1d4ed8;
    }

    .list {
        display: grid;
        gap: 16px;
        margin-top: 20px;
    }

    .list-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 16px;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid rgba(15,23,42,.06);
    }

    .tick {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        flex: 0 0 28px;
        display: grid;
        place-items: center;
        background: rgba(34,197,94,.12);
        color: #15803d;
        font-weight: 700;
        margin-top: 2px;
    }

    .contact-wrap {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 28px;
        align-items: start;
        margin-top: 28px;
    }

    .contact-card {
        padding: 28px;
        border-radius: 22px;
        border: 1px solid rgba(15,23,42,.08);
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    form {
        display: grid;
        gap: 14px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    input, select, textarea {
        width: 100%;
        padding: 15px 16px;
        border-radius: 14px;
        border: 1px solid rgba(15,23,42,.10);
        background: #ffffff;
        color: #0f172a;
        outline: none;
        font: inherit;
    }

    textarea { min-height: 120px; resize: vertical; }
    input::placeholder, textarea::placeholder { color: #94a3b8; }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: rgba(37,99,235,.35);
        box-shadow: 0 0 0 4px rgba(37,99,235,.08);
    }

    footer {
        padding: 40px 0 60px;
        border-top: 1px solid rgba(255,255,255,.06);
        background: #0b1220;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 28px;
    }

    .footer-title {
        font-size: 14px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .footer-links {
        display: grid;
        gap: 8px;
        color: #cbd5e1;
        font-size: 14px;
    }

    .small {
        font-size: 12px;
        color: #94a3b8;
        margin-top: 18px;
    }

    .mobile-toggle { display: none; }

    /* ==================================================
        SECTION BACKGROUND MATCHING LIKE ORIGINAL WEBSITE
    ================================================== */

    #about {
        background: #f8f5f0;
    }

    #technology {
        background: #f8f5f0;
    }

    #contact {
        background: #ffffff;
    }

    /* This targets the extra sections between your main sections */
    main > section:nth-of-type(3) {
        background: #ffffff;
    }

    main > section:nth-of-type(5) {
        background: #f8f5f0;
    }

    @media (max-width: 980px) {
        header .btn.btn-primary {
            display: none;
        }
        .hero-grid,
        .grid-2,
        .contact-wrap,
        .footer-grid {
            grid-template-columns: 1fr;
        }
        .feature-grid { grid-template-columns: 1fr; }
        .hero-visual { min-height: auto; }
        .nav-links {
            position: absolute;
            left: 16px;
            right: 16px;
            top: 84px;
            background: #003b75;
            border: 1px solid rgba(15,23,42,.08);
            border-radius: 18px;
            padding: 16px;
            flex-direction: column;
            align-items: flex-start;
            display: none;
            box-shadow: 0 12px 30px rgba(15,23,42,.08);
        }
        .nav-links a {
            color: #ffffff;
        }
        .nav-links.open { display: flex; }
        .mobile-toggle {
            display: inline-flex;
            background: #ffffff;
            border: 1px solid rgba(15,23,42,.08);
            color: #0f172a;
            border-radius: 12px;
            padding: 10px 12px;
            cursor: pointer;
        }
        .stat-card {
            width: 90%;
        }
    }

    .section#contact {
        background-color: #f6f9fc;
    }

    .contact-email-div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 18px 0 10px;
    }

    .contact-email {
        display: inline-block;
        color: #1d4ed8;
        font-weight: 700;
        font-size: 18px;
    }

    .contact-email-svg {
        display: flex;
        background: #E7ECF3;
        padding: 8px;
        border-radius: 8px;
    }

    .contact-email-svg svg {
        stroke: #1d4ed8;
    }

    hr {
        background: #475569;
        margin: 40px;
    }

    .section#about {
        background: #ffffff;
    }

    .section#about .container {
        align-items: center;
        padding-top: 40px;
    }

    .section#about img {
        border-radius: 8px;
        object-fit: cover;
    }

    .section#about .about-sec {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section#why, .section#technology {
        background: #E7ECF3;
    }

    .section#why .card, .section#technology .card {
        background: #ffffff;
    }

    .section#why .eyebrow, .section#technology .eyebrow {
        display: flex;
        width: fit-content;
        margin: auto;
    }

    .section#why .eyebrow {
        background: #ffffff;
    }

    .section#why .section-title, .section#why .section-subtitle, .section#technology .section-title, .section#technology .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section#technology .card.feature:last-child {
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: #003b75;
    }

    .tech-stats {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .tech-stats-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background: #ffffff1a;
        border-radius: 20%;
    }

    .tech-stats-card h1 {
        color: #ffffff;
        margin: 0;
    }

    @media (min-width: 981px) {
        .section#technology .card.feature:last-child {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            grid-column-start: 1;
            grid-column-end: 4;
        }
        .tech-card {
            width: 70%;
        }
    }

    .section#technology .card.feature:last-child h3, .section#technology .card.feature:last-child p {
        color: #ffffff;
    }

    .section#technology .card.feature:last-child .icon {
        background: #ffffff;
    }

    .section#compliance {
        background: #003b75;
        padding: 112px 0;
    }

    .section#compliance .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compliance-content h2, .compliance-content p {
        text-align: center;
        color: #ffffff;
    }

    .section#compliance .list {
        grid-template-columns: 1fr 1fr;
        margin-top: 0;
    }

    .section#compliance .list-item {
        flex-direction: column;
    }

    .section#compliance .list-item span {
        color: #0f172a;
    }

    .section#compliance .tick {
        width: 64px;
        height: 64px;
        flex: 0 0 64px;
    }

    .section#compliance .hero-badges {
        justify-content: center;
    }

    .section#compliance .badge {
        background: #15803d;
        color: #ffffff;
    }

    @media (max-width: 980px) {
        .section#compliance .list {
            grid-template-columns: 1fr;
        }
    }

    /*Thank you page*/
    .thankyou-container {
        display: flex;
        flex-direction: column;
        padding: 100px 10vw;
    }
    .thankyou-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .thankyou-page h1 {
        margin: 100px 0 0;
        font-size: clamp(34px, 5vw, 52px);
        line-height: 1.08;
        font-weight: 800;
        color: var(--terms-heading);
        letter-spacing: -0.02em;
    }
    .thankyou-page p {
        margin: 40px 0 100px;
        font-size: 24px;
        color: var(--terms-text);
        line-height: 1.7;
    }

    /* =========================
       TERMS CONTENT
    ========================= */
    .terms-shell {
      background: var(--terms-bg);
      color: var(--terms-text);
      min-height: calc(100vh - 200px);
      padding: 24px 0 60px;
    }

    .terms-container {
      width: min(980px, calc(100% - 32px));
      margin: 0 auto;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--terms-link);
      margin-bottom: 22px;
      transition: color .2s ease;
    }

    .back-link:hover {
      color: var(--terms-link-hover);
    }

    .back-link svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .terms-shell h1 {
      margin: 0;
      font-size: clamp(34px, 5vw, 52px);
      line-height: 1.08;
      font-weight: 800;
      color: var(--terms-heading);
      letter-spacing: -0.02em;
    }

    .updated {
      margin-top: 14px;
      margin-bottom: 48px;
      font-size: 14px;
      color: var(--terms-muted);
    }

    .terms-section {
      margin-bottom: 42px;
    }

    .terms-section h2 {
      margin: 0 0 14px;
      font-size: clamp(22px, 2.6vw, 30px);
      line-height: 1.25;
      font-weight: 700;
      color: var(--terms-heading);
      letter-spacing: -0.01em;
    }

    .terms-section p {
      margin: 0;
      font-size: 16px;
      color: var(--terms-text);
      line-height: 1.7;
    }

    .terms-section p + p {
      margin-top: 14px;
    }

    @media (max-width: 768px) {
      .terms-shell {
        padding: 18px 0 48px;
      }

      .updated {
        margin-bottom: 38px;
      }

      .terms-section {
        margin-bottom: 34px;
      }

      .terms-section p {
        font-size: 15px;
      }
    }

    /* =========================
   LOGIN SECTION
========================= */

.login-section {
  min-height: calc(100vh - 220px);
  background: linear-gradient(
    135deg,
    #f7f9fc 0%,
    #edf2f9 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.login-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 40, 104, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  filter: blur(20px);
}

.login-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 40, 104, 0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -80px;
  filter: blur(15px);
}

.login-container {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.login-left h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #001437;
  margin-bottom: 20px;
  font-weight: 700;
}

.login-left p {
  color: #5e6778;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.tag {
  display: inline-block;
  background: rgba(0, 40, 104, 0.08);
  color: #003b8f;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #001437;
  font-weight: 500;
  font-size: 16px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #003b8f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0, 59, 143, 0.2);
}

/* LOGIN CARD */

.login-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow:
    0 10px 40px rgba(0, 20, 55, 0.08),
    0 2px 10px rgba(0, 20, 55, 0.04);
  border: 1px solid rgba(0, 20, 55, 0.06);
  position: relative;
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    #003b8f,
    #0f5ed7
  );
  border-radius: 24px 24px 0 0;
}

.login-card h2 {
  font-size: 34px;
  color: #001437;
  margin-bottom: 10px;
}

.subtitle {
  color: #7b8496;
  margin-bottom: 35px;
  font-size: 15px;
}

/* INPUTS */

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  color: #001437;
  font-weight: 600;
  font-size: 14px;
}

.input-group input {
  width: 100%;
  height: 58px;
  border: 1px solid #dce3ef;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  background: #f9fbff;
  transition: all 0.3s ease;
  outline: none;
}

.input-group input:focus {
  border-color: #003b8f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 59, 143, 0.08);
}

/* BUTTON */

.login-button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #001437 0%,
    #003b8f 100%
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(0, 59, 143, 0.25);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 59, 143, 0.35);
}

/*Dashboard CSS*/

.login-welcome{
    font-size:18px;
    color:#dbeafe;
}

.iframe-wrap{
    width:100%;
    height:calc(100vh - 70px);
    overflow:hidden;
    margin: 24px 0;
}

iframe{
    width:100%;
    height:100%;
    border:none;
}

.dash-container .welcome {
    font-weight: 700;
    color: #001437;
    font-size: 24px;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .login-left {
    text-align: center;
  }

  .login-left p {
    margin: 0 auto 35px;
  }

  .login-features {
    align-items: center;
  }

    .dash-container .btn-primary.logout-btn {
        display: inline-flex;
    }
    .dash-container .welcome {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .dash-header {
        position: inherit;
    }
    .dash-container {
        flex-direction: column;
        height: fit-content;
        padding: 12px;
    }
    .dash-container .welcome {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
  .login-card {
    padding: 35px 25px;
  }

  .login-left h1 {
    font-size: 42px;
  }

  .login-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 350px) {
    .login-btn {
        font-size: 12px;
        padding: 8px;
    }
}
