:root {
      --primary: #1456f0;
      --primary-dark: #0b3db5;
      --dark: #101828;
      --text: #667085;
      --light: #f5f8ff;
      --border: #e7ebf3;
      --white: #fff;
      --green: #18a66a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "DM Sans", sans-serif;
      color: var(--dark);
      background: #fff;
      overflow-x: hidden;
    }
 

    .section-padding {
      padding: 100px 0;
    }

    .section-title {
      max-width: 700px;
      margin: auto;
      text-align: center;
    }

    .section-title .subtitle {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .section-title h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .section-title p {
      color: var(--text);
      font-size: 16px;
    }

    /* =========================
       NAVBAR
    ========================== */

    .navbar {
      padding: 18px 0;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,.04);
      z-index: 999;
    }

    .navbar-brand {
      font-family: "Manrope", sans-serif;
      font-size: 25px;
      font-weight: 800;
      color: var(--dark);
    }

    .navbar-brand span {
      color: var(--primary);
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #fff;
      border-radius: 11px;
      margin-right: 7px;
      font-size: 20px;
    }

    .navbar-nav .nav-link {
      color: #344054;
      font-weight: 600;
      font-size: 15px;
      padding: 10px 17px !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary);
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      padding: 13px 23px;
      border-radius: 9px;
      border: 1px solid var(--primary);
      font-weight: 700;
      transition: .3s;
    }

    .btn-main:hover {
      background: var(--primary-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: var(--dark);
      padding: 13px 23px;
      border-radius: 9px;
      border: 1px solid #d0d5dd;
      font-weight: 700;
      transition: .3s;
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* =========================
       HERO
    ========================== */

    .hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 20%, rgba(20,86,240,.14), transparent 30%),
        linear-gradient(135deg, #f7faff 0%, #edf4ff 100%);
    }

    .hero-shape {
      position: absolute;
      width: 500px;
      height: 500px;
      right: -160px;
      top: 70px;
      border-radius: 50%;
      background: rgba(20,86,240,.07);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 50px;
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
      box-shadow: 0 5px 25px rgba(16,24,40,.06);
      margin-bottom: 20px;
    }

    .hero-badge i {
      font-size: 16px;
    }

    .hero h1 {
      font-size: 64px;
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      color: var(--text);
      font-size: 18px;
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-image {
      position: relative;
      z-index: 2;
    }

    .hero-card {
      position: relative;
      max-width: 490px;
      margin-left: auto;
    }

    .hero-main-img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 25px 70px rgba(16,24,40,.16);
    }

    .floating-card {
      position: absolute;
      background: #fff;
      padding: 18px;
      border-radius: 17px;
      box-shadow: 0 20px 50px rgba(16,24,40,.15);
    }

    .floating-card.policy {
      left: -50px;
      bottom: 55px;
      width: 220px;
    }

    .floating-card.support {
      right: -35px;
      top: 60px;
      width: 190px;
    }

    .floating-icon {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      font-size: 20px;
      margin-bottom: 10px;
    }

    .floating-card h6 {
      font-weight: 800;
      margin-bottom: 3px;
    }

    .floating-card small {
      color: var(--text);
    }

    /* =========================
       TRUST
    ========================== */

    .trust-bar {
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      background: #fff;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      color: #475467;
      font-weight: 600;
    }

    .trust-item i {
      color: var(--green);
      font-size: 22px;
    }

    /* =========================
       INSURANCE CARDS
    ========================== */

    .insurance-card {
      height: 100%;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: #fff;
      transition: .35s;
    }

    .insurance-card:hover {
      transform: translateY(-8px);
      border-color: rgba(20,86,240,.3);
      box-shadow: 0 20px 45px rgba(16,24,40,.09);
    }

    .insurance-icon {
      width: 58px;
      height: 58px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      font-size: 26px;
      margin-bottom: 22px;
    }

    .insurance-card h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .insurance-card p {
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .learn-more {
      color: var(--primary);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* =========================
       ABOUT
    ========================== */

    .about-section {
      background: var(--light);
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 530px;
      object-fit: cover;
      border-radius: 25px;
    }

    .experience-box {
      position: absolute;
      bottom: 30px;
      right: -30px;
      background: #fff;
      padding: 22px 27px;
      border-radius: 17px;
      box-shadow: 0 15px 40px rgba(16,24,40,.13);
    }

    .experience-box h2 {
      color: var(--primary);
      font-size: 35px;
      font-weight: 800;
      margin: 0;
    }

    .experience-box p {
      color: var(--text);
      margin: 0;
    }

    .about-content {
      padding-left: 50px;
    }

    .about-content .subtitle {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 13px;
    }

    .about-content h2 {
      font-size: 43px;
      font-weight: 800;
      line-height: 1.2;
      margin: 12px 0 18px;
    }

    .about-content > p {
      color: var(--text);
      line-height: 1.8;
    }

    .about-list {
      margin: 25px 0;
      padding: 0;
      list-style: none;
    }

    .about-list li {
      margin-bottom: 15px;
      display: flex;
      gap: 10px;
      color: #344054;
      font-weight: 600;
    }

    .about-list i {
      color: var(--green);
      font-size: 20px;
    }

    /* =========================
       STATS
    ========================== */

    .stats-section {
      background: var(--primary);
      color: #fff;
    }

    .stat-box {
      text-align: center;
      padding: 15px;
    }

    .stat-box h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .stat-box p {
      opacity: .8;
      margin: 0;
    }

    /* =========================
       PROCESS
    ========================== */

    .process-card {
      text-align: center;
      position: relative;
      padding: 20px;
    }

    .process-number {
      width: 65px;
      height: 65px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: #edf4ff;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
    }

    .process-card h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .process-card p {
      color: var(--text);
      line-height: 1.7;
    }

    /* =========================
       PLAN
    ========================== */

    .plan-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 35px;
      height: 100%;
      transition: .3s;
    }

    .plan-card.featured {
      border: 2px solid var(--primary);
      box-shadow: 0 20px 45px rgba(20,86,240,.12);
      position: relative;
    }

    .popular {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      padding: 6px 10px;
      border-radius: 50px;
      font-weight: 700;
    }

    .plan-card h4 {
      font-size: 21px;
      font-weight: 800;
    }

    .plan-price {
      font-size: 38px;
      font-weight: 800;
      margin: 15px 0 5px;
    }

    .plan-price span {
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
    }

    .plan-card > p {
      color: var(--text);
    }

    .plan-list {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }

    .plan-list li {
      padding: 10px 0;
      color: #475467;
    }

    .plan-list i {
      color: var(--green);
      margin-right: 8px;
    }

    /* =========================
       TESTIMONIAL
    ========================== */

    .testimonial-section {
      background: var(--light);
    }

    .testimonial {
      background: #fff;
      border: 1px solid var(--border);
      padding: 30px;
      border-radius: 20px;
      height: 100%;
    }

    .stars {
      color: #f5a623;
      margin-bottom: 15px;
    }

    .testimonial p {
      color: #475467;
      line-height: 1.8;
      font-size: 16px;
    }

    .client {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }

    .client img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .client h6 {
      margin: 0;
      font-weight: 800;
    }

    .client small {
      color: var(--text);
    }

    /* =========================
       CTA
    ========================== */

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 70px;
      background: linear-gradient(110deg, #104bd6, #236af7);
      color: #fff;
    }

    .cta-box:after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 70px solid rgba(255,255,255,.08);
      border-radius: 50%;
      right: -70px;
      top: -100px;
    }

    .cta-box h2 {
      font-size: 42px;
      font-weight: 800;
      max-width: 650px;
    }

    .cta-box p {
      opacity: .85;
      max-width: 600px;
      margin: 15px 0 25px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--primary);
      padding: 14px 24px;
      border-radius: 9px;
      font-weight: 800;
    }

    /* =========================
       BLOG
    ========================== */

    .blog-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      height: 100%;
      transition: .3s;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(16,24,40,.08);
    }

    .blog-img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }

    .blog-content {
      padding: 23px;
    }

    .blog-meta {
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 9px;
    }

    .blog-content h4 {
      font-size: 19px;
      line-height: 1.4;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .blog-content p {
      color: var(--text);
      line-height: 1.6;
    }

    /* =========================
       FOOTER
    ========================== */

    footer {
      background: #0d1728;
      color: #fff;
      padding-top: 70px;
    }

    .footer-brand {
      font-size: 25px;
      font-weight: 800;
      color: #fff;
    }

    .footer-brand span {
      color: #4e82ff;
    }

    .footer-text {
      color: #98a2b3;
      line-height: 1.8;
      margin-top: 18px;
      max-width: 340px;
    }

    footer h5 {
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: 800;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer li {
      margin-bottom: 11px;
    }

    footer li a {
      color: #98a2b3;
      transition: .2s;
    }

    footer li a:hover {
      color: #fff;
    }

    .footer-social {
      display: flex;
      gap: 9px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      background: rgba(255,255,255,.08);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 20px 0;
      margin-top: 55px;
      color: #98a2b3;
      font-size: 14px;
    }

    /* =========================
       ANIMATION
    ========================== */

    .fade-up {
      animation: fadeUp .8s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width: 991px) {

      .hero {
        padding: 90px 0;
      }

      .hero h1 {
        font-size: 48px;
      }

      .hero-image {
        margin-top: 60px;
      }

      .about-content {
        padding-left: 0;
        margin-top: 60px;
      }

      .experience-box {
        right: 15px;
      }

      .section-title h2,
      .about-content h2 {
        font-size: 36px;
      }

      .floating-card.policy {
        left: 15px;
      }

      .floating-card.support {
        right: 15px;
      }

      .cta-box {
        padding: 45px 30px;
      }
    }

    @media(max-width: 767px) {

      .hero {
        min-height: auto;
        padding: 70px 0;
      }

      .hero h1 {
        font-size: 39px;
        letter-spacing: -1px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-main-img {
        height: 430px;
      }

      .floating-card {
        transform: scale(.9);
      }

      .section-padding {
        padding: 70px 0;
      }

      .section-title h2,
      .about-content h2,
      .cta-box h2 {
        font-size: 31px;
      }

      .stat-box h2 {
        font-size: 32px;
      }

      .trust-item {
        justify-content: flex-start;
        margin-bottom: 10px;
      }

      .cta-box {
        padding: 40px 25px;
      }
    } 

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Manrope", sans-serif;
    }

    a {
      text-decoration: none;
    }

  
    /* =========================
       PAGE HERO
    ========================= */

    .page-hero {
      position: relative;
      padding: 115px 0 110px;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 20%,
        rgba(20, 86, 240, .13),
        transparent 30%),
        linear-gradient(135deg,
        #f7faff 0%,
        #edf4ff 100%);
    }

    .page-hero:before {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(20, 86, 240, .05);
      right: -100px;
      top: -120px;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .page-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      border-radius: 50px;
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
      box-shadow: 0 8px 25px rgba(16, 24, 40, .06);
      margin-bottom: 18px;
    }

    .page-hero h1 {
      font-size: 58px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 15px;
    }

    .page-hero h1 span {
      color: var(--primary);
    }

    .page-hero p {
      max-width: 650px;
      margin: auto;
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
    }

    /* =========================
       ABOUT INTRO
    ========================= */

    .section-padding {
      padding: 100px 0;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 570px;
      object-fit: cover;
      border-radius: 25px;
      box-shadow: 0 25px 60px rgba(16, 24, 40, .12);
    }

    .experience-card {
      position: absolute;
      bottom: 30px;
      right: -30px;
      background: #fff;
      padding: 22px 25px;
      border-radius: 17px;
      box-shadow: 0 20px 50px rgba(16, 24, 40, .15);
      min-width: 190px;
    }

    .experience-card .icon {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      border-radius: 12px;
      font-size: 21px;
      margin-bottom: 10px;
    }

    .experience-card h4 {
      font-size: 25px;
      font-weight: 800;
      margin-bottom: 2px;
    }

    .experience-card p {
      color: var(--text);
      margin: 0;
      font-size: 14px;
    }

    .about-content {
      padding-left: 50px;
    }

    .subtitle {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 13px;
    }

    .about-content h2 {
      font-size: 43px;
      font-weight: 800;
      line-height: 1.2;
      margin: 12px 0 18px;
    }

    .about-content > p {
      color: var(--text);
      line-height: 1.8;
      font-size: 16px;
    }

    .about-points {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }

    .about-points li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: #344054;
      font-weight: 600;
    }

    .about-points i {
      color: var(--green);
      font-size: 20px;
    }

    /* =========================
       EXPERIENCE TIMELINE
    ========================= */

    .journey-section {
      background: var(--light);
    }

    .section-title {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-title h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin: 10px 0 15px;
    }

    .section-title p {
      color: var(--text);
      line-height: 1.7;
    }

    .timeline {
      position: relative;
      max-width: 900px;
      margin: auto;
    }

    .timeline:before {
      content: "";
      position: absolute;
      width: 2px;
      background: #d9e2f5;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .timeline-item {
      position: relative;
      width: 50%;
      padding: 0 45px 45px 0;
    }

    .timeline-item:nth-child(even) {
      margin-left: 50%;
      padding: 0 0 45px 45px;
    }

    .timeline-dot {
      position: absolute;
      width: 18px;
      height: 18px;
      background: var(--primary);
      border: 4px solid #dce8ff;
      border-radius: 50%;
      right: -9px;
      top: 5px;
      z-index: 2;
    }

    .timeline-item:nth-child(even) .timeline-dot {
      left: -9px;
    }

    .timeline-card {
      background: #fff;
      padding: 28px;
      border-radius: 18px;
      border: 1px solid var(--border);
      transition: .3s;
    }

    .timeline-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
    }

    .timeline-year {
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .timeline-card h4 {
      font-size: 21px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .timeline-card p {
      color: var(--text);
      line-height: 1.7;
      margin: 0;
    }

    /* =========================
       STATS
    ========================= */

    .stats-section {
      background: var(--primary);
      color: #fff;
    }

    .stat {
      text-align: center;
      padding: 10px;
    }

    .stat h2 {
      font-size: 43px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .stat p {
      margin: 0;
      opacity: .8;
    }

    /* =========================
       VALUES
    ========================= */

    .value-card {
      height: 100%;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 18px;
      transition: .3s;
    }

    .value-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 45px rgba(16, 24, 40, .08);
    }

    .value-icon {
      width: 58px;
      height: 58px;
      border-radius: 15px;
      background: #edf4ff;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 25px;
      margin-bottom: 20px;
    }

    .value-card h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .value-card p {
      color: var(--text);
      line-height: 1.7;
      margin: 0;
    }

    /* =========================
       CTA
    ========================= */

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 70px;
      background: linear-gradient(110deg, #104bd6, #236af7);
      color: #fff;
    }

    .cta-box:after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 70px solid rgba(255, 255, 255, .08);
      border-radius: 50%;
      right: -70px;
      top: -100px;
    }

    .cta-box h2 {
      font-size: 42px;
      font-weight: 800;
      max-width: 650px;
    }

    .cta-box p {
      opacity: .85;
      max-width: 600px;
      margin: 15px 0 25px;
      line-height: 1.7;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--primary);
      padding: 14px 24px;
      border-radius: 9px;
      font-weight: 800;
    } 
    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width: 991px) {

      .page-hero h1 {
        font-size: 48px;
      }

      .about-content {
        padding-left: 0;
        margin-top: 60px;
      }

      .experience-card {
        right: 20px;
      }

      .about-content h2 {
        font-size: 36px;
      }
    }

    @media(max-width: 767px) {

      .page-hero {
        padding: 80px 0;
      }

      .page-hero h1 {
        font-size: 38px;
      }

      .section-padding {
        padding: 70px 0;
      }

      .section-title h2 {
        font-size: 32px;
      }

      .about-image img {
        height: 420px;
      }

      .timeline:before {
        left: 10px;
      }

      .timeline-item,
      .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 30px 40px;
      }

      .timeline-dot,
      .timeline-item:nth-child(even) .timeline-dot {
        left: 1px;
        right: auto;
      }

      .stat h2 {
        font-size: 32px;
      }

      .cta-box {
        padding: 40px 25px;
      }

      .cta-box h2 {
        font-size: 31px;
      }
    }  
    /* =========================
       PAGE HERO
    ========================= */

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 110px 0 105px;

      background:
        radial-gradient(
          circle at 85% 20%,
          rgba(20, 86, 240, .14),
          transparent 30%
        ),
        linear-gradient(
          135deg,
          #f7faff 0%,
          #edf4ff 100%
        );
    }

    .page-hero::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      right: -120px;
      top: -140px;
      border-radius: 50%;
      background: rgba(20, 86, 240, .06);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      background: #fff;
      color: var(--primary);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
      box-shadow: 0 8px 25px rgba(16, 24, 40, .06);
    }

    .hero-content h1 {
      font-size: 58px;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 17px;
    }

    .hero-content h1 span {
      color: var(--primary);
    }

    .hero-content p {
      max-width: 680px;
      margin: auto;
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
    }


    /* =========================
       CONTACT SECTION
    ========================= */

    .section-padding {
      padding: 100px 0;
    }

    .contact-wrapper {
      background: #fff;
    }


    /* =========================
       CONTACT INFO
    ========================= */

    .contact-info {
      padding-right: 45px;
    }

    .subtitle {
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
    }

    .contact-info h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 17px;
    }

    .contact-info > p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 30px;
    }


    /* =========================
       CONTACT ITEM
    ========================= */

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-item:last-child {
      border-bottom: 0;
    }

    .contact-icon {
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: #edf4ff;
      color: var(--primary);
      font-size: 21px;
    }

    .contact-item h5 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .contact-item p {
      color: var(--text);
      margin: 0;
      line-height: 1.6;
    }

    .contact-item a {
      color: var(--text);
    }

    .contact-item a:hover {
      color: var(--primary);
    }


    /* =========================
       SOCIAL
    ========================= */

    .social-title {
      margin-top: 25px;
      margin-bottom: 12px;
      font-weight: 800;
      font-size: 15px;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-links a {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--light);
      color: var(--primary);
      border-radius: 10px;
      transition: .3s;
    }

    .social-links a:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
    }


    /* =========================
       CONTACT FORM
    ========================= */

    .contact-form-box {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 20px 55px rgba(16, 24, 40, .07);
    }

    .contact-form-box h3 {
      font-size: 25px;
      font-weight: 800;
      margin-bottom: 7px;
    }

    .form-description {
      color: var(--text);
      margin-bottom: 25px;
    }

    .form-label {
      color: #344054;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      min-height: 52px;
      border: 1px solid #dfe4ec;
      border-radius: 10px;
      padding: 12px 15px;
      font-size: 15px;
      color: #344054;
      box-shadow: none !important;
    }

    textarea.form-control {
      min-height: 135px;
      resize: vertical;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(20, 86, 240, .08) !important;
    }

    .submit-btn {
      width: 100%;
      min-height: 53px;
      border: 0;
      border-radius: 10px;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      transition: .3s;
    }

    .submit-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }


    /* =========================
       SERVICES MINI CARDS
    ========================= */

    .services-section {
      background: var(--light);
    }

    .section-title {
      max-width: 700px;
      text-align: center;
      margin: 0 auto 50px;
    }

    .section-title h2 {
      font-size: 40px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--text);
      line-height: 1.7;
    }

    .mini-card {
      height: 100%;
      padding: 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      transition: .3s;
    }

    .mini-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(16, 24, 40, .08);
    }

    .mini-icon {
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      border-radius: 14px;
      font-size: 23px;
      margin-bottom: 18px;
    }

    .mini-card h4 {
      font-size: 19px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .mini-card p {
      color: var(--text);
      line-height: 1.65;
      margin: 0;
      font-size: 14px;
    }


    /* =========================
       MAP
    ========================= */

    .map-box {
      width: 100%;
      min-height: 350px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .map-box iframe {
      width: 100%;
      height: 350px;
      border: 0;
    }


    /* =========================
       CTA
    ========================= */

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: 70px;
      border-radius: 28px;
      background: linear-gradient(
        110deg,
        #104bd6,
        #236af7
      );
      color: #fff;
    }

    .cta-box::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -100px;
      top: -120px;
      border: 70px solid rgba(255,255,255,.08);
      border-radius: 50%;
    }

    .cta-box h2 {
      max-width: 650px;
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
    }

    .cta-box p {
      max-width: 620px;
      color: rgba(255,255,255,.82);
      line-height: 1.7;
      margin: 15px 0 25px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 25px;
      border-radius: 9px;
      background: #fff;
      color: var(--primary);
      font-weight: 800;
    }
 
    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width: 991px) {

      .hero-content h1 {
        font-size: 48px;
      }

      .contact-info {
        padding-right: 0;
        margin-bottom: 55px;
      }

      .contact-info h2 {
        font-size: 36px;
      }

      .section-title h2 {
        font-size: 36px;
      }

      .cta-box h2 {
        font-size: 36px;
      }

    }


    @media(max-width: 767px) {

      .page-hero {
        padding: 80px 0;
      }

      .hero-content h1 {
        font-size: 38px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .section-padding {
        padding: 70px 0;
      }

      .contact-form-box {
        padding: 25px;
        border-radius: 18px;
      }

      .contact-info h2 {
        font-size: 31px;
      }

      .section-title h2 {
        font-size: 31px;
      }

      .cta-box {
        padding: 40px 25px;
      }

      .cta-box h2 {
        font-size: 31px;
      }

      .map-box,
      .map-box iframe {
        min-height: 280px;
        height: 280px;
      }

    }
  

    /* =========================
       PAGE HERO
    ========================= */

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 115px 0 110px;

      background:
        radial-gradient(
          circle at 85% 20%,
          rgba(20,86,240,.14),
          transparent 30%
        ),
        linear-gradient(
          135deg,
          #f7faff 0%,
          #edf4ff 100%
        );
    }

    .page-hero::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      right: -120px;
      top: -140px;
      border-radius: 50%;
      background: rgba(20,86,240,.06);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      background: #fff;
      color: var(--primary);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
      box-shadow: 0 8px 25px rgba(16,24,40,.06);
    }

    .hero-content h1 {
      font-size: 58px;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 17px;
    }

    .hero-content h1 span {
      color: var(--primary);
    }

    .hero-content p {
      max-width: 680px;
      margin: auto;
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
    }


    /* =========================
       SERVICES
    ========================= */

    .section-padding {
      padding: 100px 0;
    }

    .section-title {
      max-width: 700px;
      text-align: center;
      margin: 0 auto 55px;
    }

    .subtitle {
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .section-title p {
      color: var(--text);
      line-height: 1.7;
    }


    /* =========================
       SERVICE CARD
    ========================= */

    .service-card {
      position: relative;
      height: 100%;
      padding: 35px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: .35s;
      overflow: hidden;
    }

    .service-card::after {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: rgba(20,86,240,.04);
      right: -55px;
      bottom: -55px;
      transition: .35s;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(20,86,240,.25);
      box-shadow: 0 22px 50px rgba(16,24,40,.09);
    }

    .service-card:hover::after {
      transform: scale(1.5);
    }

    .service-icon {
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 17px;
      background: #edf4ff;
      color: var(--primary);
      font-size: 28px;
      margin-bottom: 23px;
    }

    .service-card h3 {
      font-size: 23px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .service-card > p {
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .service-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #475467;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .service-list i {
      color: var(--green);
      font-size: 17px;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 12px;
      color: var(--primary);
      font-weight: 700;
      position: relative;
      z-index: 2;
    }


    /* =========================
       FEATURED LIFE INSURANCE
    ========================= */

    .featured-section {
      background: var(--light);
    }

    .featured-image {
      position: relative;
    }

    .featured-image img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      border-radius: 25px;
      box-shadow: 0 25px 60px rgba(16,24,40,.12);
    }

    .floating-info {
      position: absolute;
      background: #fff;
      padding: 20px;
      border-radius: 17px;
      box-shadow: 0 18px 45px rgba(16,24,40,.14);
      bottom: 30px;
      right: -25px;
      width: 220px;
    }

    .floating-info-icon {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      border-radius: 12px;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .floating-info h5 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 3px;
    }

    .floating-info p {
      color: var(--text);
      font-size: 13px;
      margin: 0;
    }

    .featured-content {
      padding-left: 55px;
    }

    .featured-content h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin: 10px 0 17px;
    }

    .featured-content > p {
      color: var(--text);
      line-height: 1.8;
    }

    .feature-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-top: 25px;
    }

    .feature-point-icon {
      flex: 0 0 45px;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #edf4ff;
      color: var(--primary);
      border-radius: 12px;
    }

    .feature-point h5 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .feature-point p {
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }


    /* =========================
       STATS
    ========================= */

    .stats-section {
      padding: 70px 0;
      background: var(--primary);
      color: #fff;
    }

    .stat-box {
      text-align: center;
    }

    .stat-box h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .stat-box p {
      margin: 0;
      opacity: .82;
    }


    /* =========================
       CTA
    ========================= */

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: 70px;
      border-radius: 28px;
      background: linear-gradient(
        110deg,
        #104bd6,
        #236af7
      );
      color: #fff;
    }

    .cta-box::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -100px;
      top: -120px;
      border: 70px solid rgba(255,255,255,.08);
      border-radius: 50%;
    }

    .cta-box h2 {
      max-width: 650px;
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
    }

    .cta-box p {
      max-width: 620px;
      color: rgba(255,255,255,.82);
      line-height: 1.7;
      margin: 15px 0 25px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 25px;
      border-radius: 9px;
      background: #fff;
      color: var(--primary);
      font-weight: 800;
    }
 
    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width: 991px) {

      .hero-content h1 {
        font-size: 48px;
      }

      .featured-content {
        padding-left: 0;
        margin-top: 60px;
      }

      .floating-info {
        right: 20px;
      }

      .featured-content h2 {
        font-size: 36px;
      }

      .section-title h2 {
        font-size: 36px;
      }

    }


    @media(max-width: 767px) {

      .page-hero {
        padding: 80px 0;
      }

      .hero-content h1 {
        font-size: 38px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .section-padding {
        padding: 70px 0;
      }

      .section-title h2 {
        font-size: 31px;
      }

      .service-card {
        padding: 28px;
      }

      .featured-image img {
        height: 420px;
      }

      .featured-content h2 {
        font-size: 31px;
      }

      .stat-box h2 {
        font-size: 32px;
      }

      .cta-box {
        padding: 40px 25px;
      }

      .cta-box h2 {
        font-size: 31px;
      }

    } 
 
    /* =========================
       HERO
    ========================= */

    .page-hero {
      position: relative;
      padding: 115px 0 110px;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 20%,
          rgba(20, 86, 240, .13),
          transparent 30%),
        linear-gradient(135deg,
          #f7faff 0%,
          #edf4ff 100%);
    }

    .page-hero:before {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(20, 86, 240, .05);
      right: -100px;
      top: -120px;
    }

    .page-hero:after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(24, 166, 106, .04);
      left: -80px;
      bottom: -100px;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .page-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 15px;
      border-radius: 50px;
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
      box-shadow: 0 8px 25px rgba(16, 24, 40, .06);
      margin-bottom: 18px;
    }

    .page-hero h1 {
      font-size: 58px;
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 15px;
    }

    .page-hero h1 span {
      color: var(--primary);
    }

    .page-hero p {
      max-width: 680px;
      margin: auto;
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
    }

    /* =========================
       SOCIAL SECTION
    ========================= */

    .section-padding {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 55px;
    }

    .subtitle {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 13px;
    }

    .section-title h2 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 800;
      margin: 10px 0 15px;
    }

    .section-title p {
      color: var(--text);
      line-height: 1.7;
      margin: 0;
    }

    /* =========================
       SOCIAL CARDS
    ========================= */

    .social-card {
      position: relative;
      height: 100%;
      padding: 32px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: #fff;
      overflow: hidden;
      transition: .3s;
    }

    .social-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 50px rgba(16, 24, 40, .10);
    }

    .social-card:after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(20, 86, 240, .04);
      right: -45px;
      top: -45px;
    }

    .social-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 17px;
      font-size: 29px;
      margin-bottom: 23px;
      color: #fff;
      position: relative;
      z-index: 2;
    }

    .facebook {
      background: #1877f2;
    }

    .instagram {
      background: linear-gradient(135deg,
          #833ab4,
          #fd1d1d,
          #fcb045);
    }

    .google {
      background: #fff;
      color: #4285f4;
      border: 1px solid var(--border);
      box-shadow: 0 8px 20px rgba(16, 24, 40, .06);
    }

    .podcast {
      background: #7c3aed;
    }

    .youtube {
      background: #ff0000;
    }

    .video {
      background: var(--primary);
    }

    .social-card h4 {
      font-size: 21px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .social-card p {
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--primary);
      font-weight: 700;
      transition: .3s;
    }

    .social-link:hover {
      gap: 11px;
      color: var(--primary-dark);
    }

    /* =========================
       FEATURED SOCIAL
    ========================= */

    .featured-section {
      background: var(--light);
    }

    .social-banner {
      position: relative;
      overflow: hidden;
      padding: 55px;
      border-radius: 25px;
      background: linear-gradient(110deg,
          #104bd6,
          #236af7);
      color: #fff;
    }

    .social-banner:before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 65px solid rgba(255, 255, 255, .07);
      border-radius: 50%;
      right: -80px;
      top: -100px;
    }

    .social-banner:after {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .05);
      left: -70px;
      bottom: -80px;
    }

    .banner-content {
      position: relative;
      z-index: 2;
    }

    .banner-content h2 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 13px;
    }

    .banner-content p {
      max-width: 650px;
      opacity: .85;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .social-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--primary);
      padding: 12px 18px;
      border-radius: 9px;
      font-weight: 700;
      transition: .3s;
    }

    .social-btn:hover {
      transform: translateY(-3px);
      color: var(--primary-dark);
    }

    /* =========================
       VIDEO GALLERY
    ========================= */

    .video-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fff;
      transition: .3s;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(16, 24, 40, .09);
    }

    .video-thumb {
      height: 220px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg,
          #dbe8ff,
          #edf4ff);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-thumb.one {
      background:
        linear-gradient(135deg,
          rgba(20, 86, 240, .9),
          rgba(65, 126, 255, .8));
    }

    .video-thumb.two {
      background:
        linear-gradient(135deg,
          #122b63,
          #2467ee);
    }

    .video-thumb.three {
      background:
        linear-gradient(135deg,
          #153b2b,
          #18a66a);
    }

    .play-button {
      width: 62px;
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: var(--primary);
      border-radius: 50%;
      font-size: 24px;
      padding-left: 4px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
      transition: .3s;
    }

    .video-card:hover .play-button {
      transform: scale(1.08);
    }

    .video-info {
      padding: 22px;
    }

    .video-info h5 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 7px;
    }

    .video-info p {
      color: var(--text);
      font-size: 14px;
      margin: 0;
    }
 
    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width: 991px) {

      .page-hero h1 {
        font-size: 48px;
      }

      .section-title h2 {
        font-size: 36px;
      }

      .social-banner {
        padding: 45px 35px;
      }

    }

    @media(max-width: 767px) {

      .page-hero {
        padding: 80px 0;
      }

      .page-hero h1 {
        font-size: 38px;
      }

      .section-padding {
        padding: 70px 0;
      }

      .section-title {
        margin-bottom: 40px;
      }

      .section-title h2 {
        font-size: 32px;
      }

      .social-card {
        padding: 27px;
      }

      .social-banner {
        padding: 40px 25px;
      }

      .banner-content h2 {
        font-size: 30px;
      }

      .video-thumb {
        height: 200px;
      }

    } 