/* THEME VARIABLES */
:root {
  --navy-blue: #2A4B60;
  /* RGBA value of --navy-blue is (30,58,95) */
  --hover-white: #d1d1d1;
  --light-blue: #E8F1FF;
  --gold: #d7b63f;
  --header-h: 65px;
  --accent-orange: rgb(244, 95, 9);
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  line-height: 24px;
  letter-spacing: 0.25px;
  overflow-x: hidden;
}

/* ------------------------------------------------ */
/* Styling from the old CSS file */
.mx-16percent {
  margin: 0 16%;
}

.w-20 {
  width: 20%;
}

.p-20 {
  padding: 20px;
}

.red-color {
  color: red;
}

span {
  font-size: 0.9rem;
}

.no-border {
  border-left: none;
  border-right: none;
}

.horizontal-line {
  border: none;
  height: 1px;
  background-color: lightgrey;
  margin: 0;
}

.verticle-line {
  border-right: 1px solid lightgrey;
  height: 72px;
}

.verticle-line-large {
  border-right: 1px solid lightgrey;
  height: 102px;
}

.blue-boxes {
  width: 460px;
  height: 344px;
  background-color: var(--light-blue);
}

.benefit-box {
  background-color: var(--light-blue);
  width: 100%;
  max-width: 700px;
  min-height: 0px;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: start;
}

.benefit-img {
  width: 69px !important;
  height: 69px !important;
}

.table-img {
  vertical-align: start;
  margin-right: 8px;
  width: 35px;
  height: 35px;
}

.mark-icon {
  width: 31px;
  height: 31px;
  margin-right: 12px;
}

.connect-button-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px;
}

.connect-wrapper {
  gap: 30px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------- */
/* Responsive Styling for Heading tags and Paragraph tags
    TYPES OF TEXT (Reference Table for understanding typography):
    -   <div class="text-content">
    -   <h1 class="h1-main">Main Heading</h1>  h1: 4rem, #1E3A5F, bolder (desktop) 
    -   <h2 class="h2-title">Title</h2>  h2: 3.5rem, bold, black 
    -   <h3 class="h3-title">Sub Title</h3>  h3: 3rem, bold, black 
    -   <h4 class="h4-title">Section Heading</h4>  h4: 2.5rem, medium, black 
    -   <h5 class="h5-title">Minor Heading</h5> h5: 2rem, regular, black 
    -   <p class="p-large">This is a large paragraph.</p> p-large: 1.5rem, medium
    -   <p class="p-medium">This is a medium paragraph.</p> p-medium: 1.3rem, medium
    -   <p class="p-small">This is a small paragraph.</p> p-small: 1.1rem, medium */

@layer components {
  .text-content h1.h1-main {
    color: var(--navy-blue);
    font-size: 40px;
    font-weight: bolder;
    margin-bottom: 1.2rem;
  }

  .text-content h2.h2-title {
    color: var(--navy-blue);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 1.2rem;
  }

  .text-content h3.h3-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1.2rem;
  }

  .text-content h4.h4-title,
  .text-content h5.h5-title {
    font-weight: 300;
    font-size: 20px;
  }

  .text-content p.p-large,
  .text-content p.p-medium,
  .text-content p.p-small {
    font-weight: medium;
    font-size: 24px;
  }

  /* Mobile */
  .text-content h1.h1-main {
    font-size: 2.27rem;
  }

  .text-content h2.h2-title {
    font-size: 2.07rem;
  }

  .text-content h3.h3-title {
    font-size: 1.62rem;
  }

  .text-content h4.h4-title {
    font-size: 1.20rem;
  }

  .text-content h5.h5-title {
    font-size: 1.17rem;
  }

  .text-content p.p-large {
    font-size: 1.20rem;
  }

  .text-content p.p-medium {
    font-size: 1.17rem;
  }

  .text-content p.p-small {
    font-size: 0.84rem;
  }

  /* Tablet */
  @media (min-width: 768px) {
    .text-content h1.h1-main {
      font-size: 2.97rem;
    }

    .text-content h2.h2-title {
      font-size: 2.52rem;
    }

    .text-content h3.h3-title {
      font-size: 2.07rem;
    }

    .text-content h4.h4-title {
      font-size: 1.8rem;
    }

    .text-content h5.h5-title {
      font-size: 1.44rem;
    }

    .text-content p.p-large {
      font-size: 1.44rem;
    }

    .text-content p.p-medium {
      font-size: 0.99rem;
    }

    .text-content p.p-small {
      font-size: 0.81rem;
    }
  }

  /* Desktop */
  @media (min-width: 992px) {
    .text-content h1.h1-main {
      font-size: 3.42rem;
    }

    .text-content h2.h2-title {
      font-size: 2.97rem;
    }

    .text-content h3.h3-title {
      font-size: 2.52rem;
    }

    .text-content h4.h4-title {
      font-size: 2.07rem;
    }

    .text-content h5.h5-title {
      font-size: 1.62rem;
    }

    .text-content p.p-large {
      font-size: 1.62rem;
    }

    .text-content p.p-medium {
      font-size: 1.17rem;
    }

    .text-content p.p-small {
      font-size: 0.99rem;
    }
  }
}

/* -------------------------------------------------------- */
/* HERO SECTION */
/* Desktop & Tablet */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
}

.hero-section .hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}


.hero-section .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 25vh;
  max-height: 45vh;
  background-color: rgba(30, 58, 95, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 2;
  padding: 15px 15px;
  padding-block: 16px;
}

/* Tablet or desktop split screen mode */
@media (min-width: 500px) and (max-width: 900px) {
  .hero-section .hero-overlay .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    row-gap: 10px;
    padding: 0rem 0rem;
  }

  .hero-section .hero-overlay .btn {
    align-self: flex-start;
    transform: scale(0.8);
    transform-origin: left center;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
  }

  .hero-section .hero-overlay {
    min-height: clamp(220px, 32vh, 360px);
  }

  .hero-section .h1-main {
    font-size: 1.8rem;
    line-height: 1;
  }

  .hero-section .h3-title {
    font-size: 1.2rem;
    line-height: 1;
  }

  .hero-section .h5-title {
    font-size: 0.9rem;
    line-height: 1;
  }
}


/* Mobile screens */
@media (max-width: 576px) {
  .hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 55px);
    overflow: hidden;
  }

  .hero-section .hero-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
  }

  .hero-section .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background-color: rgba(30, 58, 95, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    z-index: 2;
    padding: 12px 12px;
  }

  .hero-section .h1-main {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-section .h3-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .hero-section .h5-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}

/* -------------------------------------------------------- */
/* Info Boxes */
.theme-info-box {
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background-color: var(--light-blue);
  color: var(--navy-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

/* -------------------------------------------------------- */
/* Built on Process CARDS */
.Built-on-Process-section .Built-on-Process-card {
  transition: all 0.3s ease;
}

.Built-on-Process-section .Built-on-Process-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

/* -------------------------------------------------------- */
/* How It Works CARDS */
.How-It-Works-section .How-It-Works-card {
  transition: all 0.3s ease;
  border: none;
  border-left: 2px solid rgba(39, 76, 222, 0.08);
  border-bottom: 2px solid rgba(39, 76, 222, 0.08);
  border-radius: 0;
}

.How-It-Works-section .How-It-Works-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #153ebb;
  background-color: rgba(49, 91, 216, 0.05);
  box-shadow: 0 6px 15px rgba(34, 72, 222, 0.3);
}

/* -------------------------------------------------------- */
/* "Why Investors Choose Big Leap" TABLE STYLING */

.table-header {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  font-family: 'Open Sans', sans-serif;
  background-color: white;
  font-size: 1rem;
}

.table-header th,
.body-row td {
  width: 25%;
  white-space: normal;
  word-break: break-word;
}

.header-row th {
  background-color: var(--navy-blue);
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-bottom: 5px solid white;
  font-size: 1rem;
  color: var(--light-blue);
}

.body-row td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--light-blue);
  font-size: 0.95rem;
  color: black;
}

.body-row td:first-child {
  font-style: italic;
  text-align: center;
  font-weight: 550;
  color: var(--navy-blue);
  background-color: var(--light-blue);
}

.body-row td[data-label="Secondary"] {
  background-color: var(--light-blue);
}

.highlight-col,
.header-row th[data-label="Main"],
.body-row td[data-label="Main"] {
  background-color: lightblue;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  text-align: left;
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 8px 16px rgba(72, 123, 255, 0.5);
}

.highlight-col::after,
.header-row th[data-label="Main"]::after,
.body-row td[data-label="Main"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  50% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

.body-row:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease;
}

/* Mobile (small) */
@media (max-width: 767.98px) {
  .header-row th {
    padding: 10px;
    font-size: 0.85rem;
  }

  .body-row td {
    padding: 8px;
    font-size: 0.85rem;
  }
}

/* Tablet (medium) */
@media (min-width: 768px) {
  .header-row th {
    padding: 12px;
    font-size: 0.95rem;
  }

  .body-row td {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Desktop (large) */
@media (min-width: 992px) {
  .header-row th {
    padding: 14px;
    font-size: 1rem;
  }

  .body-row td {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* -------------------------------------------------------- */
/* FOUNDER-BOX STYLES */
.founder-box {
  background: #fff;
  border: 1px solid var(--navy-blue);
  box-shadow: 0 8px 25px rgba(72, 123, 255, 0.5);
  padding: 1.5rem;
}

.founder-box img {
  width: 100%;
  height: auto;
  max-width: 204px;
}

.founder-box .quote-wrap {
  min-height: 72px;
}

.founder-box .quote-icon {
  position: absolute;
  color: #F45F09;
  ;
  font-size: 1.75rem;
}

.founder-box .quote-icon-left {
  top: 0;
  left: 0;
}

.founder-box .quote-icon-right {
  bottom: 0;
  right: 0;
}

@media (min-width: 768px) {
  .founder-box .quote-icon {
    font-size: 2rem;
  }

  .founder-box {
    padding: 3rem;
  }
}

/* Replace your existing .connect-btn rule */
.connect-btn {
  background-color: var(--navy-blue);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  padding: 5px 35px;
  cursor: pointer;
  /* smooth hover */
  transition: background-color .2s ease, box-shadow .2s ease, transform .08s ease;
}

/* Replace your existing .connect-btn:hover rule */
.connect-btn:hover {
  background-color: #16324A;
  /* a touch darker than --navy-blue */
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  transform: translateY(-1px);
}

/* -------------------------------------------------------- */
/* MODAL STYLES shared style for all modals */
.custom-modal .modal-content {
  border-radius: 12px;
  box-shadow: 0 0 20px var(--navy-blue);
  border: none;
}

.custom-modal .modal-title {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  width: 100%;
}

.custom-modal .modal-body {
  color: black;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
}

/* -------------------------------------------------------- */
/* FOOTER BAR AT THE BOTTOM */
.footer-bar {
  background-color: var(--navy-blue);
  color: white;
  font-size: 1rem;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 14px;
  position: relative;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-bar a {
  color: white;
  margin-left: 12px;
  text-decoration: none;
  font-size: 1rem;
}

.footer-bar a:hover {
  color: var(--hover-white);
}

.footer-bar i {
  color: white;
  font-size: 1.05rem;
}

.footer-bar i:hover {
  color: var(--hover-white);
}

.footer-bar .social-icon {
  filter: brightness(0) invert(1);
}

/* Footer: mobile-only layout */
@media (max-width: 576px) {
  .footer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 14px 12px;
  }

  .footer-left p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .footer-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .footer-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  }

  .footer-right a i {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--navy-blue);
  }
}

/* ------------------------------------------------------------- */
/* SCROLL BAR STYLES */

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-blue);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffffff, #e6e6e6);
  border-radius: 10px;
  border: 2px solid var(--navy-blue);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f5f5f5, #d9d9d9);
}

/* ----------------------------------------------------------------- */
/* Header bar */

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--navy-blue);
  margin-left: 12px;
}

.navbar-nav .nav-link:hover {
  color: rgb(244, 95, 9);
}

.bli-navbar {
  background-color: var(--navy-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.bli-navbar .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.bli-nav .nav-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  padding: .5rem 1rem;
}

.bli-nav .nav-link:hover,
.bli-nav .nav-link:focus {
  color: #fff;
}

.bli-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.bli-nav .nav-link:hover::after,
.bli-nav .nav-link:focus::after,
.bli-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.navbar-dark .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  position: relative;
}

.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
}

.navbar-dark .navbar-toggler-icon::before {
  top: -7px;
}

.navbar-dark .navbar-toggler-icon::after {
  top: 7px;
}

body {
  padding-top: var(--header-h);
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 56px;
  }

  .bli-nav .nav-link {
    padding: .5rem 0;
  }
}


/* -------------------------------------------------------- */

/* Card view of the Comparison Table for mobile (phones) */
:root {
  --green-okay: #1fa64a;
  --green-bg: #e9f8ef;
  --orange: #f45f09;
  --orange-bg: #fff4ec;
}

.compare-cards {
  display: none;
}

@media (max-width: 576px) {
  #compareTable.is-hidden-mobile {
    display: none !important;
  }

  .compare-cards {
    display: grid;
    gap: 14px;
    margin-top: 12px;
  }

  .card-compare {
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
  }

  .card-compare__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .card-compare__header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
  }

  .card-compare__header i {
    font-size: 1.4rem;
  }

  .card-compare__list {
    margin: 0;
    padding-left: 18px;
  }

  .card-compare__list li {
    margin: 6px 0;
    line-height: 1.35;
  }

  .bli-card {
    background: var(--green-bg);
    color: #0d3b1e;
    position: relative;
    overflow: hidden;
  }

  .bli-card .card-compare__header i {
    color: var(--green-okay);
  }

  .shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .45) 40%, transparent 80%);
    transform: skewX(-20deg);
    animation: shine-sweep 2.8s infinite;
    pointer-events: none;
  }

  @keyframes shine-sweep {
    0% {
      left: -150%;
    }

    100% {
      left: 150%;
    }
  }

  .other-card {
    background: var(--orange-bg);
    color: #4a2b16;
  }

  .other-card .card-compare__header i {
    color: #d22;
  }

  .warn .card-compare__header h3 {
    color: var(--orange);
  }
}

.bli-card .card-compare__header h3 {
  font-size: 1.3rem;
  color: var(--navy-blue);
  line-height: 1.1;
}

.bli-card .card-compare__list li {
  font-weight: 500;
  font-size: 1rem;
  color: #297846;
  font-style: italic;
}

.bli-card .card-compare__list .feat {
  font-weight: 800;
  font-size: 1rem;
  font-style: italic;
}

.bli-card.shine::after {
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 80%);
}

.other-card .card-compare__list li {
  font-weight: 400;
  font-style: normal;
}

.other-card .card-compare__list .feat {
  font-weight: 400;
  font-style: normal;
}

/* -------------------------------------------------------- */
/* ADD (in styles.css): keyboard-focusable skip link */
.visually-hidden-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  background: #fff;
  outline: 2px solid #000;
  z-index: 10000;
  display: inline-block;
}


/* -------------------------------------------------------- */
/* ABOUT US PAGE SPECIFIC STYLES */
.about-hero {
  color: #000;
  background: transparent;
  padding: calc(var(--header-h) + 48px) 0 24px;
  position: relative;
}

.about-hero-icon {
  font-size: 2.2rem;
  color: #f4b183;
  opacity: .9;
  margin-bottom: .35rem;
}

.about-title {
  color: var(--navy-blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.about-title i {
  font-size: 2rem;
  color: var(--navy-blue);
}

.about-title span {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-sub {
  color: rgba(0, 0, 0, .55);
  margin-top: 8px;
}

.section-centered {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.centered-copy {
  margin: 0 auto;
}

.fade-in-left {
  animation: fadeInLeft 1.2s ease forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.fade-up.reveal {
  animation: fadeUp .6s cubic-bezier(.2, .6, .2, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--navy-blue);
}

.section-heading span {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-heading i {
  font-size: 2.2rem;
  color: var(--navy-blue);
}

.value-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  color: rgb(244, 95, 9);
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy-blue);
}

.value-card p {
  font-size: 1rem;
  color: #333;
}

:root {
  --header-h: 64px;
  --container-pad: clamp(12px, 2.5vw, 24px);
}

.h1-main,
.about-title span,
.section-heading span {
  font-size: clamp(1.6rem, 2.4vw + 1rem, 2.2rem);
}

.about-sub {
  font-size: clamp(1rem, 1.2vw + .7rem, 1.25rem);
}

.about-title i,
.section-heading i,
.value-card i {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.2rem);
}

.section-centered {
  max-width: min(1000px, 100%);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.about-hero {
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 24px;
}

@media (hover: none) {
  .value-card:hover {
    transform: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .08);
  }
}

@media (max-width: 575.98px) {
  .about-hero {
    padding-top: calc(var(--header-h) + 16px);
  }

  .section-centered {
    padding-left: 16px;
    padding-right: 16px;
  }

  .h4-title.about-sub {
    margin-top: 6px;
  }

  .p-medium.centered-copy {
    font-size: 1.2em;
    line-height: 1.6;
  }
}

@media (min-width: 1200px) {
  .about-hero {
    padding-top: calc(var(--header-h) + 48px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .fade-up,
  .fade-in-left,
  .fade-in-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -------------------------------------------------------- */
/* CO-OWNERSHIP PAGE STYLES */

.about-hero {
  color: #000;
  background: transparent;
  padding: calc(var(--header-h) + 48px) 0 20px;
  text-align: center;
}

.about-title {
  color: var(--navy-blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.about-title span {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-sub {
  color: rgba(0, 0, 0, .55);
  margin-top: 6px;
}

.section-centered {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.centered-copy {
  margin: 0 auto;
  color: #000;
}

.journey {
  --accent: rgb(244, 95, 9);
  --route: #7f94ab;
  max-width: 1600px;
  margin: 40px auto;
  position: relative;
  padding: 0 30px;
}

.journey-container {
  position: relative;
  min-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.center-path {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 100%;
  z-index: 2;
}

.route-svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.route-path {
  fill: none;
  stroke: var(--route);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 4s ease-in-out;
}

.route-path.animate {
  stroke-dashoffset: 0;
}

.stop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
  transition: all 0.5s ease;
}

.stop.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.stop i {
  font-size: 25px;
  color: var(--accent);
}

.cards-container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.step-card {
  position: absolute;
  background: #fff;
  color: #000;
  border: 1px solid rgba(30, 58, 95, .15);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  min-height: 120px;
  width: 350px;
  opacity: 0;
  transition: all 0.6s ease;
}

.step-card.left {
  right: 65%;
  transform: translateX(-30px);
}

.step-card.right {
  left: 65%;
  transform: translateX(30px);
}

.step-card.show {
  opacity: 1;
  transform: translateX(0);
}

.step-title {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: rgba(127, 148, 171, 0.4);
  transform: translateY(-50%);
}

.step-card.left::after {
  right: -40px;
}

.step-card.right::after {
  left: -40px;
}

.step-card[data-step="1"] {
  top: 50px;
}

.step-card[data-step="2"] {
  top: 200px;
}

.step-card[data-step="3"] {
  top: 350px;
}

.step-card[data-step="4"] {
  top: 500px;
}

.step-card[data-step="5"] {
  top: 650px;
}

.step-card[data-step="6"] {
  top: 800px;
}

.stop[data-step="1"] {
  top: 100px;
}

.stop[data-step="2"] {
  top: 250px;
}

.stop[data-step="3"] {
  top: 400px;
}

.stop[data-step="4"] {
  top: 550px;
}

.stop[data-step="5"] {
  top: 700px;
}

.stop[data-step="6"] {
  top: 850px;
}

@media (min-width: 1400px) {
  .step-card.left {
    right: 70%;
  }

  .step-card.right {
    left: 70%;
  }

  .step-card {
    width: 380px;
  }
}

@media (min-width: 969px) and (max-width: 1399px) {
  .step-card {
    width: 300px;
  }

  .step-card.left {
    right: 62%;
  }

  .step-card.right {
    left: 62%;
  }
}

/* Mobile layout (≤968px) */
@media (max-width: 968px) {

  .p-medium.centered-copy {
    font-size: 1.1em;
    line-height: 1.6;
  }

  .journey-container {
    min-height: auto;
    display: block;
  }

  .center-path {
    display: none;
  }

  .route-svg {
    display: none;
  }

  .cards-container {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }

  .step-card {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: start;
    column-gap: 12px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .45s ease, transform .45s ease;
    min-height: unset;
  }

  .step-card.show {
    opacity: 1;
    transform: translateX(0);
  }

  .step-card::after {
    display: none;
  }

  .step-card.left,
  .step-card.right {
    left: auto;
    right: auto;
    transform: none;
  }

  .step-card[data-step] {
    top: auto;
  }

  .stop.stop--inline {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    position: static;
    width: 46px;
    height: 46px;
    margin: 2px 0 0 0;
    opacity: 0;
    transform: scale(0.85);
    transition: transform .35s ease, opacity .35s ease;
    z-index: 0;
  }

  .step-card.show .stop.stop--inline {
    opacity: 1;
    transform: scale(1);
  }

  .step-title,
  .step-card p {
    grid-column: 2 / 3;
  }
}



.note {
  background: #fff7f0;
  border: 1px dashed rgba(244, 95, 9, .6);
  border-radius: 12px;
  padding: 16px 20px;
  color: #000;
  max-width: 1000px;
  margin: 40px auto 60px;
}

.note i {
  color: var(--navy-blue);
  margin-right: 8px;
}

.step-card.left {
  margin-right: 20px;
}

.step-card.right {
  margin-left: 20px;
}

.step-card::after {
  width: 60px;
}

.step-card.left::after {
  right: -60px;
}

.step-card.right::after {
  left: -60px;
}

/* -------------------------------------------------------- */
/* DISCLAIMER PAGE STYLES */
.about-hero {
  color: #000;
  background: transparent;
  padding: calc(var(--header-h) + 48px) 0 24px;
  position: relative;
}

.about-title {
  color: var(--navy-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0;
  text-align: center;
}

.about-title i {
  color: #d7b63f;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
  line-height: 1;
}

.about-title span {
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.4rem, 2.2vw + 0.9rem, 2.2rem);
}


.section-centered {
  max-width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.centered-copy {
  margin: 0 auto;
}

:root {
  --header-h: 64px;
  --container-pad: clamp(12px, 2.5vw, 24px);
}

.about-hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 24px;
}

.section-centered .p-medium {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.125rem);
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .about-hero {
    padding-top: calc(var(--header-h) + 24px);
  }
}

@media (min-width: 1200px) {
  .about-hero {
    padding-top: calc(var(--header-h) + 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------- */

/* Styling to adjust the ZOHO form section */
.connect-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.1rem;
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
  position: relative;
}

.connect-block {
  flex: 1 1 30%;
  min-width: 250px;
  padding: 0 1.5rem;
}

.connect-block p.p-medium {
  font-size: 1em;
  font-style: italic;
  line-height: 1.4;
}

.connect-wrapper::before,
.connect-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(30, 58, 95, 0.2);
}

.connect-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(30, 58, 95, 0.2);
  transform: translateX(-50%);
}

.connect-wrapper::after {
  display: none;
}

@media (max-width: 992px) {
  .connect-block {
    flex: 1 1 100%;
    padding: 1rem 0;
  }

  .connect-wrapper::before,
  .connect-wrapper::after {
    display: none;
  }

  .connect-wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/* Footer  Opt-In for Texts*/
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 5vw;
  background-color: var(--navy-blue, #2A4B60);
  color: #ffffff;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-left {
  justify-content: flex-start;
}

.footer-right {
  justify-content: flex-end;
}

.footer-subscribe-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}

.footer-subscribe-link i {
  transition: transform 0.3s ease;
}

.footer-subscribe-link:hover {
  color: #A2B7C4;
  text-shadow: 0 0 8px rgba(162, 183, 196, 0.6);
}

.footer-subscribe-link:hover i {
  transform: rotate(20deg) scale(1.2);
}

@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
  }
}

#content {
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
}


/*  Two-Column Centered Layout for Connect Section  */
.connect-wrapper.two-column {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4rem;
  position: relative;
  margin: 0 auto;
  width: fit-content;
  padding: 2rem 0;
}

.connect-wrapper.two-column .connect-block {
  flex: 0 1 400px;
  text-align: center;
}

.connect-wrapper.two-column .divider {
  width: 2px;
  background-color: rgba(30, 58, 95, 0.2);
  height: auto;
  min-height: 250px;
  align-self: stretch;
}

@media (max-width: 992px) {
  .connect-wrapper.two-column {
    flex-direction: column;
    gap: 2rem;
  }

  .connect-wrapper.two-column .divider {
    display: none;
  }
}

.connect-block a {
  position: relative;
  color: #2A4B60;
  text-decoration: none;
  transition: color 0.3s ease;
}

.connect-block a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #A2B7C4;
  transition: width 0.3s ease;
}

.connect-block a:hover {
  color: #A2B7C4;
}

.connect-block a:hover::after {
  width: 100%;
}
