 :root {
  --yellow: #ffd900;
  --blue: #004fb6;
  --green: #59b337;
  --dark: #0a1628;
  --light-bg: #f4f7fc;
  --white: #ffffff;
  --text-muted-custom: #6b7a99;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Titan One", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}



/* ── NAVBAR ── */
.navbar-aviva {
  background: var(--white);
  border-bottom: 2px solid #eef1f8;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,79,182,.07);
}
.navbar-aviva .logo img { height: 38px; }
.navbar-aviva .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 14px !important;
  transition: color .2s;
}
.navbar-aviva .nav-link:hover { color: var(--blue); }
.btn-premium {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  letter-spacing: .5px;
}
.btn-premium:hover { background: #e6c300; color: var(--dark); }

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #eaf0fc 0%, #f8faff 50%, #fff9e0 100%);
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,217,0,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,79,182,.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-block;
  background: rgba(89,179,55,.15);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title span { color: var(--yellow); position: relative; }
.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted-custom);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 30px;
}
.btn-cta-yellow {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 15px 36px;
  letter-spacing: .3px;
  box-shadow: 0 6px 24px rgba(255,217,0,.45);
  transition: all .25s;
  display: inline-block;
}
.btn-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,217,0,.55);
  background: #e6c300;
  color: var(--dark);
}
.btn-cta-blue {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 15px 36px;
  box-shadow: 0 6px 24px rgba(0,79,182,.3);
  transition: all .25s;
  display: inline-block;
}
.btn-cta-blue:hover {
  transform: translateY(-2px);
  background: #003d8c;
  color: #fff;
  box-shadow: 0 10px 32px rgba(0,79,182,.4);
}

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,79,182,.13);
  padding: 38px 34px;
  border-top: 5px solid var(--yellow);
  position: relative;
  z-index: 2;
}
.form-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.form-card p.sub { font-size: 13px; color: var(--text-muted-custom); margin-bottom: 24px; }
.form-label-custom {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted-custom);
  margin-bottom: 6px;
}
.form-control-custom {
  border: 1.5px solid #e0e6f0;
  border-radius: 9px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
  background: #fafbff;
  color: var(--dark);
  appearance: none;
}
.form-control-custom:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,79,182,.1);
  background: #fff;
}
.btn-submit {
  background: linear-gradient(135deg, var(--blue) 0%, #0064e0 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  letter-spacing: .4px;
  box-shadow: 0 6px 20px rgba(0,79,182,.35);
  transition: all .25s;
  cursor: pointer;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,79,182,.45);
  background: linear-gradient(135deg, #003d8c 0%, #004fb6 100%);
}
.btn-submit i { margin-right: 8px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue);
  padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  border-left: 1px solid rgba(255,255,255,.2);
}

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue);
  line-height: 1.25;
}
.section-title span { color: var(--yellow); }
.section-line {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  margin: 14px 0 20px;
}
.section-desc { font-size: 15.5px; color: var(--text-muted-custom); line-height: 1.75; max-width: 600px; }

/* ── WHY AVIVA ── */
.why-section { background: var(--light-bg); padding: 90px 0; }
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(0,79,182,.07);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,79,182,.13);
}
.benefit-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #0064e0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon i { color: var(--yellow); font-size: 22px; }
.benefit-card h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}
.benefit-card p { font-size: 14px; color: var(--text-muted-custom); line-height: 1.65; margin: 0; }

/* ── JOURNEY STEPS ── */
.journey-section { padding: 90px 0; background: var(--white); }
.step-wrap { position: relative; }
.step-connector {
  position: absolute;
  top: 38px; left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(255,217,0,.4);
  transition: transform .25s;
}
.step-circle:hover { transform: scale(1.08); }
.step-circle i { font-size: 26px; color: var(--dark); }
.step-num {
  position: absolute;
  top: -8px; right: calc(50% - 46px);
  width: 22px; height: 22px;
  background: var(--blue);
  color: #fff;
  font-size: 11px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-card h6 { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.step-card p { font-size: 12.5px; color: var(--text-muted-custom); line-height: 1.55; }

/* ── ELIGIBILITY / POSTER ── */
.poster-section {
  background: linear-gradient(135deg, var(--blue) 0%, #0a2d6e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.poster-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,217,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.poster-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(89,179,55,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.poster-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 36px 30px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform .25s, background .25s;
}
.poster-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.10);
}
.poster-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}
.poster-card h5 { color: var(--yellow); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.poster-card p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.65; margin: 0; }
.poster-section .section-title { color: #fff; }
.poster-section .section-eyebrow { color: var(--yellow); }
.poster-section .section-line { background: var(--green); }

/* ── VIDEO ── */
.video-section { background: var(--light-bg); padding: 90px 0; }
.video-thumb-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,79,182,.18);
}
.video-thumb-wrap img { width: 100%; display: block; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,79,182,.65), rgba(10,22,40,.55));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: background .3s;
}
.video-thumb-wrap:hover .video-overlay { background: rgba(0,79,182,.5); }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(255,217,0,.2);
  transition: transform .25s, box-shadow .25s;
}
.play-btn i { font-size: 30px; color: var(--dark); margin-left: 5px; }
.video-thumb-wrap:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 24px rgba(255,217,0,.18);
}
.video-label {
  color: #fff;
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
  opacity: .9;
}

/* VIDEO MODAL */
.video-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-bg.active { display: flex; }
.video-modal-inner {
  width: 100%;
  max-width: 860px;
  position: relative;
}
.video-close {
  position: absolute;
  top: -44px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
}
.video-close:hover { opacity: 1; }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--white); padding: 90px 0; }
.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 6px 28px rgba(0,79,182,.09);
  border-bottom: 4px solid var(--yellow);
  height: 100%;
  transition: transform .25s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: #ffb800; margin-bottom: 14px; font-size: 15px; }
.testi-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-text::before { content: '\201C'; font-size: 2.5rem; color: var(--yellow); line-height: .5; vertical-align: -12px; font-family: 'DM Serif Display', serif; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0064e0);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--text-muted-custom); }

/* ── FAQ ── */
.faq-section { background: var(--light-bg); padding: 90px 0; }
.accordion-aviva .accordion-item {
  border: 1.5px solid #e0e6f0;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: none;
}
.accordion-aviva .accordion-button {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border-radius: 12px !important;
  padding: 18px 24px;
  box-shadow: none;
  border: none;
  transition: color .2s;
}
.accordion-aviva .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f0f5ff;
  border-bottom: 1.5px solid #e0e6f0;
}
.accordion-aviva .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004fb6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-aviva .accordion-body {
  font-size: 14.5px;
  color: var(--text-muted-custom);
  line-height: 1.75;
  padding: 18px 24px;
  background: #fff;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffc200 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 14px;
}
.cta-banner p { font-size: 16px; color: rgba(10,22,40,.7); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 0 28px;
}
.footer-logo img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 240px; }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-link:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 15px;
  margin-right: 8px;
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--yellow); color: var(--dark); }

.show-border{
    border-left:2px solid #e0e6f0;
    /*padding-left:16px*/
}

.custom-desgin .mm-aling {
  position: relative;
  height: 100%;
 }

/* Text */
.mm-aling .title {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue);
}

.mm-aling .sub {
  font-size: 12px;
  color: var(--text-muted-custom);
}

/* Vertical border */
.mm-aling.show-border::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ccc;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp .65s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 60px 0; }
  .stat-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); }
  .step-connector { display: none; }
  .form-card { padding: 28px 20px; }
  .custom-desgin{
        display: flex!important;
        /*align-items: anchor-center;*/
        flex-wrap: nowrap!important;
        text-align: center;

  }
  .custom-reverse {
    flex-direction: column-reverse;
    display: flex;
    gap: 40px;
}
.mobile-first-section {
    padding-top: 0!important;
    padding-bottom: 20px!important;
}
.mobile-first-section .cua-r, .video-section .row, .faq-section .row {
    --bs-gutter-y: 0!important;
    --bs-gutter-x: 0!important;
}

 .custom-desgin{
        --bs-gutter-x: 1.5rem!important;
    --bs-gutter-y: 0!important;
 }
 

.mobile-first-section .container{
    padding-bottom:0!important;
    padding-top:14px!important;
}

.custom-reverse .custom-m-b{
    justify-content:center;
    
}
.custom-top-avv{
    margin-top:2rem;
}

.stat-divider {
    border: none!important;
}


 
}
 