
:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --primary: #021740;
    --primary-dark: #021740;
    --accent: #d8b36a;
    --text: #1f2937;
    --muted: #667085;
    --border: #dbe3ee;
    --success: #0f766e;
    --success-bg: #ecfdf5;
    --warning: #92400e;
    --warning-bg: #fff7ed;
    --danger: #b91c1c;
    --danger-bg: #fef2f2;
    --shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    --radius: 20px;
    --radius-sm: 14px;
    --max-width: 1240px;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Manrope', sans-serif;
    ;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
  h3, h4, h5, h6 {
      font-weight: 700;
  }

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

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

  [hidden] {
    display: none !important;
  }

  .container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
  }

  .topbar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.95rem;
    position: relative;
    z-index:99;
  }

  .topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    flex-wrap: wrap;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    flex-wrap: wrap;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
  }

  nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  nav a {
    font-weight: 600;
    color: #fff;
  }

  .mobile-toggle {
    display: none;
    border: none;
    background: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.35rem;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
    font-size: 0.95rem;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
  }

  .btn-primary:hover {
    background: var(--primary-dark);
  }

  .btn-secondary {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid var(--primary);
  }
  .btn-secondary:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
  }

  .btn-ghost {
    background: transparent;
    color: var(--primary-dark);
    border: 1px dashed var(--border);
  }

  .btn-danger {
    background: var(--danger);
    color: #fff;
  }

  .btn-full {
    width: 100%;
  }

  .btn-small {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
        padding: 5rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(25, 60, 125, 0.12), transparent 30%), linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  z-index: 0;
  height: calc(100vh - 75px);
  display: flex;
  align-items: center;
      background-size: cover;
  width: 100%;
  background-position: center;
  position: relative;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
  }

  .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(25, 60, 125, 0.08);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
  }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
section.hero.main-banner .container {
  position: relative;
  z-index: 1;
}

  .hero h1 {
    color:#fff;
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .hero p {
    color: #fff;
    font-size: 1.08rem;
    max-width: 62ch;
    margin-bottom: 1.4rem;
  }

  .hero-actions,
  .hero-points {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-actions {
    margin-bottom: 1.1rem;
  }

  .hero-points {
    color: var(--success);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .card {
    background: var(--surface);
    border: 1px solid rgba(219, 227, 238, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .panel {
    padding: 1.5rem;
  }

  .hero-card h3,
  .section-head h2,
  .feature-card h3,
  .will-card h3,
  .step-card h3,
  .pricing-card h3,
  .dashboard-card h3,
  .wizard-card h3,
  .summary-card h3,
  .faq summary,
  .modal-card h2,
  footer h4 {
    color: var(--primary-dark);
  }

  .warning-banner,
  .info-banner,
  .success-banner,
  .danger-banner {
    border-radius: 16px;
    padding: 1rem 1.1rem;
    margin-top: 1.2rem;
    font-weight: 700;
  }

  .warning-banner {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid #fed7aa;
  }

  .info-banner {
    background: #eef4ff;
    color: var(--primary-dark);
    border: 1px solid #c9dafc;
  }

  .success-banner {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid #a7f3d0;
  }

  .danger-banner {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid #fecaca;
  }

  .section-head {
    text-align: center;
    margin: 0 auto 2.2rem;
  }

  .section-head h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
  }

  .section-head p,
  .muted,
  .feature-card p,
  .will-card p,
  .step-card p,
  .pricing-card p,
  .dashboard-card p,
  .wizard-card p,
  .summary-card p,
  .faq details p,
  .field-note,
  .summary-block li {
    color: var(--muted);
  }

  .field input.input-invalid,
  .field input.input-invalid:focus {
    border-color: var(--danger);
    box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.12);
  }

  .field input.input-valid,
  .field input.input-valid:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
  }

  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .wizard-layout,
  .summary-grid,
  .wizard-grid,
  .dashboard-grid,
  .checkout-grid {
    display: grid;
    gap: 1.4rem;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  }

  .wizard-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

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

  .dashboard-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .checkout-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .stat-card,
  .feature-card,
  .will-card,
  .step-card,
  .pricing-card,
  .dashboard-card,
  .wizard-card,
  .summary-card,
  .checkout-card {
    padding: 1.4rem;
  }

  .stat-card {
    text-align: center;
  }

  .stat-card strong {
    display: block;
    font-size: 1.45rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(25, 60, 125, 0.08);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: 0.3s ease;
  }

  .check-list,
  .warning-list,
  .pricing-list,
  .summary-list,
  .footer-links,
  .step-list,
  .wizard-nav,
  .saved-drafts,
  .review-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
        padding-left: 0.5rem;
  }

  .check-list li::before,
.pricing-list li::before,
.summary-list li::before,
.review-list li::before {
content: "\f058";          /* Unicode for fa-circle-check */
font-family: "Font Awesome 6 Free"; /* Required for FA6 */
font-weight: 900;          /* Solid style */
color: var(--primary);
display: inline-block;
margin-right: 0.5rem;      /* spacing between icon and text */
}

  .warning-list li::before {
    content: "⚠ ";
    color: var(--danger);
    font-weight: 700;
  }

  .step-list li::before {
    content: "• ";
    color: var(--primary);
    font-weight: 700;
  }

 .step-number {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--primary);
  padding: 5px 20px;
  border-radius: 0px 15px 0px 10px;
  color: rgb(255, 255, 255);
  font-size: 0.95rem;
  font-weight: 700;
}

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .pill-success {
    background: var(--success-bg);
    color: var(--success);
  }

  .pill-warning {
    background: var(--warning-bg);
    color: var(--warning);
  }

  .pill-info {
    background: #eef4ff;
    color: var(--primary-dark);
  }

  .pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: translateY(-6px);
  }

 .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #02193f;
  color: #fff;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

  .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1rem 0;
    margin-top: 0;
  }

  article.card.pricing-card h3 {
  margin-bottom: 0;
}
  .app-section {
    padding-top: 0;
  }

  .auth-shell,
  .app-shell {
    margin-top: 1.8rem;
  }

  .tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
  }

  .tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .field,
  .full-span {
    display: grid;
    gap: 0.45rem;
  }

  .full-span {
    grid-column: 1 / -1;
  }

  label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .field-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .field-label-text {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .field-info-btn {
    width: 1.15rem;
    height: 1.15rem;
    border: 0;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .field-info-btn:hover {
    background: var(--primary);
  }

  input,
  select,
  textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius:8px;
    padding: 0.65rem 0.95rem;
    background: #fff;
    color: var(--text);
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid rgba(25, 60, 125, 0.18);
    border-color: var(--primary);
  }

  textarea {
    min-height: 110px;
    resize: vertical;
  }

  .password-input-wrap {
    position: relative;
  }

  .password-input-wrap input {
    padding-right: 2.8rem;
  }

  .password-toggle {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .password-toggle:hover {
    color: var(--primary);
    background: rgba(2, 23, 64, 0.06);
  }

  .checkbox-row,
  .radio-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--text);
  }

  .checkbox-row input,
  .radio-row input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  .auth-actions,
  .wizard-actions,
  .dashboard-actions,
  .inline-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .auth-actions,
  .wizard-actions {
    margin-top: 1.2rem;
  }

  .wizard-sidebar {
    position: sticky;
    top: 104px;
  }

  .wizard-sidebar .panel,
  .wizard-main .panel {
    padding: 1.35rem;
  }

  .wizard-nav li {
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .wizard-nav li.active {
    border-color: var(--primary);
    background: #eef4ff;
  }

  .wizard-nav li.done {
    border-color: #9ce8d2;
    background: #f0fdf8;
  }

  .wizard-progress {
    height: 10px;
    border-radius: 999px;
    background: #e8eef7;
    overflow: hidden;
    margin: 1rem 0 0.8rem;
  }

  .wizard-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.25s ease;
  }

  .mini-card {
    border: 1px solid var(--border);
    background: var(--surface-alt);
    padding: 1rem;
    border-radius: 14px;
  }

  .choice-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .choice-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
  }

  .choice-card h4 {
    min-height: 58px;
  }

  .choice-card p {
    min-height: 96px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .choice-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 60, 125, 0.08);
    background: #f8fbff;
  }

  .entry-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .entry-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
  }

  .entry-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .entry-head strong {
    color: var(--primary-dark);
  }

  .review-grid {
    display: grid;
    gap: 1rem;
  }

  .review-block {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    background: #fff;
  }

  .review-block h4 {
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
  }

  .table-like {
    display: grid;
    gap: 0.7rem;
  }

  .table-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #edf2f7;
  }

  .table-row:last-child {
    border-bottom: none;
  }

  .table-row strong {
    color: var(--primary-dark);
  }

  .saved-drafts li {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 1rem;
  }

  .pagination-row {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .pagination-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    cursor: pointer;
  }

  .pagination-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .pagination-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
  }

  .modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 2000;
  }

  .modal-card {
    width: min(100%, 760px);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
    padding: 1.5rem;
  }

  .modal-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
  }

  .close-btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.1rem;
  }

  footer {
    background: #0b0f1a;
    color: #fff;
  }

  footer h4 {
    color: #fff;
    margin-bottom: 1.85rem;
  }
  .footer-links {
      padding-left: 0;
  }

  footer ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
  }

  .footer-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
  }
  .footer-logo img {
      height: 50px;
  }

  .hero-block {
      width: 70%;
  }
  @media (max-width:1200px) {
    .mobile-toggle {
      display: block;
    }
    .navbar {
  padding: 0.5rem 0;
}
    nav {
      width: 100%;
      display: none;
    }

    nav {
      width: 100%;
      display: none;
    }

    nav.open {
      display: block;
    }

    nav ul {
      flex-direction: column;
      align-items: flex-start;
      padding-top: 1rem;
    }
    nav a {
  font-weight: 600;
  color: #fff;
}
header {
  background: #f4f7fb;
}

  }
  @media (max-width: 1080px) {

    .hero-grid,
    .wizard-layout,
    .checkout-grid,
    .dashboard-grid,
    .grid-4,
    .grid-3,
    .footer-grid,
    .stats,
    .choice-grid,
    .summary-grid {
      grid-template-columns: 1fr 1fr;
    }

    .wizard-layout,
    .dashboard-grid,
    .checkout-grid {
      grid-template-columns: 1fr;
    }

    .wizard-sidebar {
      position: static;
    }
  }

  @media (max-width: 760px) {
   
    .hero-grid,
    .stats,
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid,
    .choice-grid,
    .form-grid,
    .summary-grid {
      grid-template-columns: 1fr;
    }

    .table-row {
      grid-template-columns: 1fr;
      gap: 0.35rem;
    }
  }

  header.scroll {
  background: #fff;
  transition: 0.3s ease;
  box-shadow: 0px 4px 10px rgb(0,0,0,0.12);
}

.accordion-item {
  margin-bottom: 12px;
  /* box-shadow: 0px 4px 12px rgb(0,0,0,0.12); */
  background: #02193f0f;
  border-radius: 20px!important;
  border: 1px solid #cfcfcf!important;
      overflow: hidden;
}
button.accordion-button {
  background: #fff !important;
}
.accordion-button:focus {
  box-shadow: none;
}

.section-space-top {
  padding-top: 80px;
}
.section-space-bottom {
  padding-bottom: 80px;
}
article.card.pricing-card {
  padding: 35px 30px;
  padding-top: 45px;
}
#how-it-works article.card.step-card {
  padding-top: 50px;
}
#how-it-works .section-head {
  z-index: 2;
  position: relative;
}
.pricing-section .pricing-card {
position: relative; /* needed for positioning ::after */
z-index: 0; /* ensure stacking context */
}

.pricing-section .pricing-card::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 0px;
  width: 100px;
  height: 100px;
  background-image: url(../images/my-will.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  opacity: 0.07;
}
article.card.feature-card {
  border-bottom: 4px solid var(--primary);
  transition: 0.3s ease;
}
article.card.feature-card:hover .icon {
  background: var(--primary);
  color: #fff;
}
article.card.will-card .icon {
  width: 80px;
  height: 80px;
  padding: 10px;
  margin-bottom: 25px;
}
.card.will-card {
position: relative;
overflow: hidden;
    padding: 45px 30px;
    transition: 0.3s ease;
}
.card.will-card:hover {
  box-shadow: 0px 4px 12px 4px rgb(0,0,0,0.15);
}

.card.will-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: rgb(2 25 63 / 11%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease 0s;
}

.card.will-card:hover::after {
opacity: 1;
transform: scale(1.5);
}
.social-icons-bottom.d-flex.gap-3 a {
  width: 34px;
  height: 32px;
  background: #fff;
  color: var(--primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-images img {
  width: 140px;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
}
.card.will-card p {
  margin-bottom: 20px;
}

.card.will-card h4 {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .hero-block {
  width: 100%;
}
.section-space-top {
  padding-top: 50px;
}
.section-space-bottom {
  padding-bottom: 50px;
}
.card.will-card {
  padding: 25px 20px;
}
.topbar span {
  font-size: 13px;
}

}


/* ── Cards grid ── */
.wimp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.wimp-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wimp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px 30px;
  border: 1px solid rgba(219, 227, 238, 0.95);
  border-bottom: 3px solid #0d1f3c;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  
}

.wimp-badge {
      display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eef0f3;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f3c;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: 0.3s ease;
}
.wimp-card:hover .wimp-badge {
  background: var(--primary);
  color: #fff;
}
.wimp-card h5 {
  margin: 0;
  margin-top: 8px;
}

.wimp-card p {
  margin: 0;
}

/* ── Warning callout ── */
.wimp-callout {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  border: 1px solid rgba(219, 227, 238, 0.95);
  border-bottom: 4px solid var(--primary);
  
}

.wimp-callout-left h4 {
  margin-bottom: 18px;
}

.wimp-callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wimp-callout-list li {
  padding-left: 20px;
  position: relative;
}

.wimp-callout-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.wimp-callout-right h4 {
  margin-bottom: 18px;
}

.wimp-callout-right p {
  margin-bottom: 24px;
}

.wimp-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}

.wimp-cta-btn:hover {
  background: #162d54;
  transform: translateY(-1px);
}

/* ── UK Stats bar ── */
.wimp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.wimp-stat-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wimp-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.wimp-stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

header.main-header .brand img {
    height: 45px;
    object-fit: contain;
}

header.main-header {
    background: #0b0f19;
}

@media (max-width: 900px) {
  .wimp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .wimp-stats {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-head {
  margin: 0 auto 1.5rem;
}
}

@media (max-width: 900px) {
  .wimp-grid,
  .wimp-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .wimp-callout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 580px) {
  .wimp-grid,
  .wimp-grid-bottom {
    grid-template-columns: 1fr;
  }

  .wimp-callout {
    padding: 28px 24px;
  }
}


.wimp-stat-card::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  top: 0;
  transition: all 0.4s;
  background: #ffffff91;
  opacity: 0.2;
  z-index: -1;
  border-radius: 4px;
}
.wimp-stat-card:hover {
  transition: all 0.4s;
  transform: translateY(-1px);
}
.wimp-stat-card:hover::after {
  width: 100%;
  transition: all 0.4s;
  right: auto;
  left: 0;
}
.footer-logo img {
  height: 50px;
}

/* abbas sir css 05-05-2026  */
.bg-dark {
  --si-bg-opacity: 1;
  background-color: #0b0f19 !important;
}

.footer {
  flex-shrink: 0;
}

.footer-brand-logos {
  display: flex;
  flex-wrap: wrap;
}

.navbar-brand .footer-logo img {
  margin-right: .4375rem;
  height: 48px;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

[data-bs-theme=dark] .dark-mode-img {
  display: block;
}

[data-bs-theme=dark] .light-mode-img {
  display: none;
}

.btn-instagram,
.btn-youtube,
.btn-linkedin {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .06);
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin:active {
  color: #fff !important;
  background-color: #0077b5 !important;
  border-color: #0077b5 !important;
  box-shadow: 0 .375rem 1.125rem -.375rem rgb(0 119 181 / .8) !important;
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram:active {
  color: #fff !important;
  background-color: #d102c3 !important;
  border-color: #d102c3 !important;
  box-shadow: 0 .375rem 1.125rem -.375rem #cf19bf !important;
}

.btn-youtube:hover,
.btn-youtube:focus,
.btn-youtube:active {
  color: #fff !important;
  background-color: red !important;
  border-color: red !important;
  box-shadow: 0 .375rem 1.125rem -.375rem rgb(255 0 0 / .8) !important;
}

#mainNav li.active a {
    color: #8bb9fe;
    position: relative;
}
 
#mainNav li.active a:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background: #8bb9fe;
}