
    @font-face {
        font-family: "IvyJournal";
        src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-Bold.woff2);
        font-weight: 700;
    }
    @font-face {
        font-family: "IvyJournal";
        src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-Regular.woff2);
        font-weight: 400;
    }
    @font-face {
        font-family: "IvyJournal";
        src: url(https://vela.testview.io/wp-content/uploads/2026/04/IvyJournal-SemiBold.woff2);
        font-weight: 600;
    }
    body{
        margin: 0;
    }
    .vela {
      --font-body: 'kyrial-sans-pro', sans-serif;
      --font-display: 'IvyJournal', sans-serif;
      --font-ui: 'Josefin Sans', sans-serif;
      --logo-font: var(--font-display);
      --bg: #dff0ee;
      --text: #2e2e2e;
      --nav-link: #444;
      --btn-bg: #e8724a;
      --btn-hover: #cf5a33;
      --btn-text: #fff;
    }

    .vela *,
    .vela *::before,
    .vela *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    strong{
        font-weight: 600;
    }
    .d-flex{
        display: flex;
    }
    .vela {
      font-family: var(--font-body);
      background: var(--bg);
    }

    .vela-container {
      max-width: 1760px;
      padding: 0px 20px;
      margin: 0 auto;
    }

    /* ── NAVBAR ── */
    .vela-header {
      width: 100%;
      background: linear-gradient(180deg, #DAE9E7 0%, #e8f5f3 60%, #effffd 100%);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 9;
    }

    /* ── HEADER ON-LOAD ANIMATION ── */
    .vela-logo {
      opacity: 0;
      transform: translateY(-18px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      max-width: 120px;

    }
    .vela-logo img{
        width: 100%;
    }
    .vela-nav-links li {
      opacity: 0;
      transform: translateY(-18px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .vela-btn-download.vela-desktop-btn {
      opacity: 0;
      transform: translateY(-18px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 0.35s ease, box-shadow 0.35s ease;
    }

    .vela-header.vela-in-view .vela-logo {
      opacity: 1;
      transform: none;
      transition-delay: 0.1s;
    }

    .vela-header.vela-in-view .vela-nav-links li:nth-child(1) {
      opacity: 1;
      transform: none;
      transition-delay: 0.2s;
    }

    .vela-header.vela-in-view .vela-nav-links li:nth-child(2) {
      opacity: 1;
      transform: none;
      transition-delay: 0.3s;
    }

    .vela-header.vela-in-view .vela-btn-download.vela-desktop-btn {
      opacity: 1;
      transform: none;
      transition-delay: 0.4s;
    }

    .vela-nav {
      margin: 0 auto;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    /* ── LOGO ── */
    .vela-logo {
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
      flex-shrink: 0;
    }

    .vela-logo-text {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.55rem;
      letter-spacing: 0.08em;
      color: var(--text);
      line-height: 1;
    }

    /* Rainbow arc SVG inside the A */
    .vela-logo-icon {
      display: inline-flex;
      align-items: flex-end;
      margin-left: -2px;
    }

    /* ── NAV LINKS ── */
    .vela-nav-links {
      display: flex;
      align-items: center;
      gap: 3rem;
      list-style: none;
      margin: 0px !important;
    }

    .vela-nav-links a {
      font-family: kyrial-sans-pro,sans-serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--nav-link);
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
    }

    .vela-nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--btn-bg);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .vela-nav-links a:hover {
      color: var(--btn-bg);
    }

    .vela-nav-links a:hover::after {
      width: 100%;
    }

    /* ── DOWNLOAD BUTTON ── */
    .vela-btn-download {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 14px 20px;
      background: #ED7C53!important;
      color: var(--btn-text)!important;
      border: none;
      border-radius: 30px;
      font-family: kyrial-sans-pro,sans-serif!important;
      font-size: 1.2rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none!important;
      white-space: nowrap;
      flex-shrink: 0;
      line-height: 1;

      transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.2s ease!important;
    }

    .vela-btn-download:hover {
      background: #CD3C07;
      box-shadow: 2px 1px 10px rgba(207, 90, 51, 0.45);
      transform: translateY(-1px);
      color: white !important;
    }

    .vela-btn-download:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(207, 90, 51, 0.3);
    }

    /* Download icon animation */
    .vela-btn-download .vela-dl-icon {
      display: inline-flex;
      align-items: center;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }



    /* ── HAMBURGER (mobile) ── */
    .vela-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      border: none;
      background: transparent;
      flex-shrink: 0;
    }

    .vela-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .vela-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .vela-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .vela-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── MOBILE MENU ── */
    .vela-mobile-menu {
      display: none;
      flex-direction: column;
      gap: 0;
      background: linear-gradient(180deg, #e2f0ee, #d8ebe8);
      border-top: 1px solid rgba(255, 255, 255, 0.4);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
      /* Float over page content */
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .vela-mobile-menu.open {
      max-height: 300px;
    }
    .vela-mobile-menu li a {
		display: block;
     }

    .vela-mobile-menu a {
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 500;
      font-family: var(--font-ui);
      color: var(--nav-link);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      transition: background 0.2s, color 0.2s;
    }

    .vela-mobile-menu a:hover {
      background: rgba(232, 114, 74, 0.08);
      color: var(--btn-bg);
    }

    .vela-mobile-menu .vela-btn-download {
      margin: 1rem 2rem 1.2rem;
      justify-content: center;
    }




    /* ── HERO ── */
    .vela-hero {
      position: relative;
      width: 100%;
      max-width: 1720px;
      padding: 0px 20px;
      min-height: 550px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 100px 100px 0 0;
      background: linear-gradient(to bottom, rgba(10, 8, 5, 0.15) 0%, rgba(20, 15, 5, 0.45) 100%),
        url('https://vela.testview.io/wp-content/uploads/2025/06/home-hero-1920x936.webp') center/cover no-repeat;
      z-index: 0;
      margin: auto;
      background-size: cover;
    }

    .vela-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    /* ── HERO ON-LOAD ANIMATION ── */
    .vela-hero-sub {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .vela-hero-heading {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .vela-hero-heading sup{
        font-size: 42px;
        vertical-align: super;
    }
    .vela-hero.vela-in-view .vela-hero-sub {
      opacity: 1;
      transform: none;
      transition-delay: 0.3s;
      text-transform: uppercase;
    }

    .vela-hero.vela-in-view .vela-hero-heading {
      opacity: 1;
      transform: none;
      transition-delay: 0.55s;
    }

    /* subheading */
    .vela-hero-sub {
      font-family: var(--font-display);
      font-size: clamp(4rem, 2.5vw, 1.4rem);
      font-weight: 400;
      color: #fff;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 0.35em;
      flex-wrap: wrap;
      justify-content: center;
    }

    .vela-hero-sub .vela-word-your {
      position: relative;
      display: inline-block;
     
    }

    /* SVG circle drawn around "Your" */
    .vela-circle-svg {
      position: absolute;
      top: 57%;
      left: 50%;
      transform: translate(-50%, -52%);
      width: 125%;
      height: 200%;
      pointer-events: none;
      overflow: visible;
    }

    .vela-circle-path {
      fill: none;
      stroke: #e8944a;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 0;
      stroke-dashoffset: 0;
    }

    /* main heading */
    .vela-hero-heading {
      font-family: var(--font-display);
      font-size: clamp(10rem, 9vw, 7rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-top: 0em;
    }


    /* ── STATS SECTION ── */
    .vela-stats-section {
      position: relative;
      /* background: linear-gradient(180deg, #f2e8d5 0%, #f0d9a8 50%, #f0c96a 100%); */
      /* background: linear-gradient(180deg, #f2e8d5 0%, #f0d9a8 50%, #f9e0a1 100%); */
      overflow: hidden;
      padding: 5rem 2rem 4.5rem;


    }

    .vela-deco-arc {
      position: absolute;
      top: 50%;
      width: 15%;
     
      pointer-events: none;
      opacity: 0;
      transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
    }

    .vela-deco-arc.vela-left {
      left: 0;
      transform: translateY(-50%) translateX(-100%);
    }

    .vela-deco-arc.vela-right {
      right: 0;
      transform: translateY(-50%) translateX(100%);
    }



    .vela-main-container-sec{
        background: linear-gradient(0deg, #F8B848 1%, #F7C060 8%, #E9D2A9 23%, #EEE1C9 38%, #EFE7DA 53%, #F9F4EB 62%, #FFFBF6 68%, #EFFFFD 84%, #EFFFFD 100%, #DAE9E7 100%);
    }


    .vela-stats-section.vela-in-view .vela-deco-arc.vela-left {
      opacity: 1;
      transform: translateY(-10%) translateX(0%);
    }

    .vela-stats-section.vela-in-view .vela-deco-arc.vela-right {
      opacity: 1;
      transform: translateY(-65%) translateX(0%);
    }

    .vela-stats-inner {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .vela-counters {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-bottom: 8.5rem;
    }

    .vela-counter-item {
      text-align: center;
      padding: 0 1.5rem 1.5rem;
      position: relative;
      opacity: 0;
      transform: translateY(24px)!important;
      transition: opacity 0.6s ease, transform 0.6s ease!important;
    }

    .vela-counter-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 10%;
      height: 80%;
      width: 1px;
      background: rgba(30, 40, 70, 0.18);
    }

    .vela-stats-section.vela-in-view .vela-counter-item:nth-child(1) {
      opacity: 1;
      transform: none;
      transition-delay: 0.1s;
    }

    .vela-stats-section.vela-in-view .vela-counter-item:nth-child(2) {
      opacity: 1;
      transform: none;
      transition-delay: 0.25s;
    }

    .vela-stats-section.vela-in-view .vela-counter-item:nth-child(3) {
      opacity: 1;
      transform: none;
      transition-delay: 0.4s;
    }

    .vela-counter-value {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 3.75vw, 10.0rem) !important;
      font-weight: 600;
      color: #303F5A;
      line-height: 1.1;
      display: block;
      margin-bottom: 1rem;
    }

    .vela-counter-label {
      font-family: var(--font-display);
      font-size: 26px;
      color: #31405B;
      margin-top: 1.4rem;
    }

    .vela-stats-body {
      text-align: center;
      font-family: var(--font-display);
      font-size: clamp(2rem, 1.6rem, 1.15rem) !important;
      color: #31405B;
      line-height: 1.5;
      max-width: 1400px;
      margin: 0 auto 2.5rem;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
    }

    .vela-stats-section.vela-in-view .vela-stats-body {
      opacity: 1;
      transform: none;
    }

    .vela-stats-body strong {
      font-weight: 600;
      color: #31405B;
    }

    .vela-stats-cta {
      display: flex;
      justify-content: center;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
    }

    .vela-stats-section.vela-in-view .vela-stats-cta {
      opacity: 1;
      transform: none;
    }



    .vela-btn-stats {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 13px 25px;
      background: #50A7BC;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-family: kyrial-sans-pro,sans-serif!important;
      font-size: 1.2rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      line-height: 1;

      transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.2s ease;
    }


    .vela-btn-stats:hover {
      background: #31405B;
      box-shadow: 0 6px 24px rgba(58, 173, 168, 0.45);
      transform: translateY(-1px);
      color: white !important;
    }

    .vela-btn-stats .vela-dl-icon {
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }




    /* ── CARDS SECTION ── */
    .vela-cards-section {
      /* background: linear-gradient(180deg, #f0c96a 0%, #f8b848df 50%, #F8B848 100%);*/
      /* background: linear-gradient(180deg, #f9e0a1 0%, #f8b848df 50%, #F8B848 100%);  */
      padding: 75px 0rem 100px;
    }

    .vela-cards-grid {
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* ── Individual Card ── */
    .vela-card {
      position: relative;
      border: 2px solid rgba(255, 255, 255, 0.55);
      border-radius: 30px;
      padding: 6.5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      overflow: hidden;
      cursor: pointer;
      /* base glass bg */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(2px);
      transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;

      /* slide-in on scroll */
      opacity: 0;
      transform: translateY(40px);
    }

    .vela-cards-section.vela-in-view .vela-card:nth-child(1) {
      opacity: 1;
      transform: none;
      transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s, border-color 0.4s, box-shadow 0.4s;
    }

    .vela-cards-section.vela-in-view .vela-card:nth-child(2) {
      opacity: 1;
      transform: none;
      transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s, border-color 0.4s, box-shadow 0.4s;
    }

    .vela-cards-section.vela-in-view .vela-card:nth-child(3) {
      opacity: 1;
      transform: none;
      transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, border-color 0.4s, box-shadow 0.4s;
    }

    /* Background image overlay — hidden by default */
    .vela-card-bg {
      position: absolute;
      inset: 0;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 0;
    }

    /* Dark scrim on top of image so text stays readable */
    .vela-card-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 18px;
      background: rgba(15, 20, 50, 0.55);
    }

    .vela-card:hover .vela-card-bg {
      opacity: 1;
    }

    .vela-card:hover {
      border-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
      transform: translateY(-4px);
    }

    /* Card content always on top */
    .vela-card-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      max-width: 375px;
      transition: color 0.4s;
    }

    .vela-card-for {
      font-family: var(--font-ui);
      font-size: 30px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #31405B;
      transition: color 0.4s;
    }

    .vela-card:hover .vela-card-for {
      color: rgba(255, 255, 255, 0.75);
    }

    .vela-card-title {
      font-family: var(--font-display);
      font-size: clamp(77px, 3.5vw, 2.8rem) !important;
      font-weight: 400;
      color: #31405B;
      line-height: 1.2;
      transition: color 0.4s;
    }

    .vela-card:hover .vela-card-title {
      color: #fff;
    }

    .vela-card-desc {
      font-family: var(--font-body);
      font-size: 22px;
      font-weight: 400;
      color: #31405B;
      line-height: 1.2;
      margin-bottom: 30px;
      transition: color 0.4s;
    }
    .vela-card:last-child .vela-card-desc{
        max-width: 90%;
    }
    .vela-card:hover .vela-card-desc {
      color: rgba(255, 255, 255, 0.88);
    }

    .vela-card-divider {
      width: 1px;
      height: 28px;
      background: transparent;
      transition: background 0.4s;
    }


    .vela-card-link {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #31405B;
      text-decoration: none;
      transition: color 0.4s, letter-spacing 0.3s;
    }

    .vela-card:hover .vela-card-link {
      color: #fff;
      letter-spacing: 0.22em;
    }



      /* belief section css starts */


    .vela-belief {
    position: relative;
    overflow: hidden;
    background: #F4EDE4;
    padding-top: 100px;
    padding-bottom: 100px;
    }

    .belief__copy {
    width: min(1386px, calc(100vw - 80px));
    margin: 0px auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
    }

    .belief__copy p {
    margin: 0;
    font-family: var(--font-display), serif;
    font-size: 32px;
    line-height: 1.28;
    }

    .belief__video {
    position: relative;
    width: min(1300px, calc(100vw - 80px));
    height: 730px;
    margin: 70px auto 0;
    overflow: hidden;
    border-radius: 30px;
    }

    .belief__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }


    .belief__flourish {
    position: absolute;
    pointer-events: none;
    }

    .belief__flourish--left {
    left: 0;
    bottom: 0;
    width: min(381px, 26vw);
    }

    .belief__flourish--right {
    right: 0;
    top: 0;
    width: min(445px, 30vw);
    z-index: 0;
    }

.a--play-icon-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 0;
    background: white;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(49, 64, 91, 0.25);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.a--play-icon-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 24px 50px rgba(49, 64, 91, 0.3);
}

.a--play-icon-btn:active {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 30px rgba(49, 64, 91, 0.2);
}
    
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 14, 22, 0.78);
  z-index: 50;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__dialog {
  position: relative;
  width: min(1200px, 100%);
}

.video-modal__close {
  position: absolute;
  top: -58px;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0;
  cursor: pointer;
}
.video-modal__close img{
    width: 100%;
    max-width: 25px;
}

.video-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
  background: #000;
}


/* bottom banner  */


.movement {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
    padding: 48px 0 48px 57px;
    background: linear-gradient(180deg, #A9C5C9 1%, #AAC4C5 23%, #B1C3BB 41%, #BBC1AB 57%, #C9BF93 72%, #DCBC75 86%, #F2B850 100%, #F8B848 100%);
    position: relative;
    overflow: hidden;

}

.movement__panel {
  min-height: 395px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 931.5px minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid white;
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  background: transparent;
}

.movement__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.688vw 3.125vw;
  max-width: 52vw;
  background: transparent;
}

.movement__copy h2 {
  margin: 0 0 20px;
  font-family: var(--font-display), serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.02;
  color: #31405B;
  text-transform: capitalize;
}
.movement__copy h2 .a--highlighted-text-color{
    color: #50A5B9;
}

.movement__copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.5;
  color: #31405B;
}

.movement__image {
    min-height: 500px;
    max-width: 48vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.movement__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}


/* Footer CSS starts */


.main-footer {
  background-color: #F5EEE6;
  padding: 70px 20px 0px;
  position: relative;
  overflow: hidden;
  background-image: url(https://vela.testview.io/wp-content/uploads/2026/04/right-bg-vector.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.footer-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: 70px;
    border-bottom: 1px solid hsl(219deg 30% 27% / 39%);
    z-index: 1;
    position: relative;
}
.footer-logo{
  margin-bottom: 60px;
}
.footer-logo img {
  width: 225px;
}
.footer-left-col{
  max-width: 770px;
  width: 100%;
}
.footer-right-col{
  max-width: 680px;
  width: 100%;
}
footer .quick-links h4{
  font-size: 30px;
  font-family: var(--font-display), serif;
  color: #31405B;
  font-weight: 600;
  margin-bottom: 16px;
}

footer .quick-links ul {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  gap: 35px;
}

.quick-links li {
  margin: 5px 0;
}

.quick-links a {
  text-decoration: none;
  color: #31405B;
  font-size: 20px;
  transition: color 0.3s;
  font-family: var(--font-body);
  text-transform: capitalize;
}

.quick-links a:hover {
  color: #000; /* Add hover effect for better interaction */
}

.download-links h4 {
  font-size: 30px;
  margin-bottom: 28px;
  font-family: var(--font-display), serif;
  color: #31405B;
  font-weight: 600;
}
.download-links{
  margin-bottom: 45px;
}
.app-store img {
  margin: 0 10px;
  width: 180px;
}

.social-icons a {
  margin: 0 10px;
}

.footer-bottom {
  padding: 30px 0px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #31405B;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  max-width: 1760px;
  margin: 0 auto;
  justify-content: space-between;
  z-index: 1;
}
.footer-bottom p{
  font-size: 20px;
}
.footer-bottom a {
  font-family: var(--font-body);
  text-decoration: none;
  color: #31405B;
}

.download-links h4 br{
  display: none;
}
footer .footer-bottom .quick-links ul{
  margin: 0;
}
.footer-right-deco{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(445px, 30vw);
  z-index: 0;
}
.footer-left-deco{
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 0;
  max-width: 13.906vw;
}
.a--copyright-icon{
  font-size: 25px;
}
    @media (max-width: 1500px) {
      footer .quick-links ul{
        gap: 24px;
      }
      .quick-links a{
        font-size: 18px;
      }
      .download-links h4, footer .quick-links h4{
        font-size: 28px;
      }
    }
      @media (max-width: 1450px) {
        .footer-right-col {
            max-width: 450px;
            width: 100%;
        }
        .download-links h4 br{
           display: block;
        }
      }
    @media (max-width: 1280px) {
      .vela-hero {
        min-height: calc(100vh - 58px);
        border-radius: 0 0 1.2rem 1.2rem;
      }

      .vela-hero-heading {
        font-size: clamp(4rem, 12vw, 7rem);
      }

      .vela-card {
        padding: 4.0rem 2rem;
      }

      .vela-card-title {
        font-size: clamp(3rem, 3.5vw, 2.8rem) !important;
      }
        .movement__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .movement__image {
    min-height: 500px;
  }
      footer .quick-links ul {
        gap: 20px;
    }
    }
@media (max-width: 1110px) {
    footer .quick-links ul {
        gap: 14px;
    }
        .quick-links a , .footer-bottom p{
        font-size: 14px;
    }
    .a--copyright-icon {
    font-size: 18px;
}
}
    @media (max-width: 1024px) {
    .vela-hero {
        min-height: 600px;
        border-radius: 0 0 40px 40px;
    }

      .vela-hero-heading {
        font-size: clamp(3rem, 12vw, 7rem);
      }

      /* subheading */
      .vela-hero-sub {
        font-family: var(--font-body);
        font-size: clamp(3rem, 2.5vw, 1.4rem) !important;
      }

      .vela-container {
        padding: 0px 40px;
      }
      .vela-stats-body{
        font-size: 26px !important;
      }
    .belief {
        margin-top: 120px;
        min-height: auto;
        padding-bottom: 72px;
    }

    .belief__video {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: 50px;
    }

    .belief__copy p {
        font-size: 26px;
        
    }
    .vela-belief {
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .a--play-icon-btn{
        width: 90px;
        height: 90px;
    }
    .vela-logo{
        max-width: 100px;
    }
    .movement__copy h2{
        line-height: 1.2;
    }
    .movement {
        padding: 40px 0 40px 40px;
    }
    .movement__copy p{
        font-size: 20px;
    }
    .movement__copy h2{
        font-size: 40px;
    }
    .vela-counter-label{
            font-size: 20px;
    }
    .vela-hero-heading sup{
        font-size: 42px;
        vertical-align: super;
    }
    .quick-links a, .footer-bottom{
      font-size: 16px;
    }
    footer .quick-links ul{
      justify-content: center;  
    }
    .footer-container{
     flex-direction: column;
    }
    .footer-left-col{
      max-width: 100%;
      text-align: center;
    }
    .footer-right-col{
        text-align: center;
        margin-top: 40px;
    }
    .main-footer{
      background-size: 0;
    }
    .a--copyright-icon {
    font-size: 20px;
    }
    .footer-bottom p {
      font-size: 16px;
    }
    }

    @media (max-width: 860px) {
      .vela-cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .vela-card-desc {
        font-size: 1.35rem;
        max-width: 100%;
      }

      .vela-card-for {
        font-size: 24px;
      }
    
    .movement__copy p {
        font-size: 18px;
    }

    .movement__copy h2 {
        font-size: 36px;
    }
    .movement__copy {
        padding: 40px 28px;
    }
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 768px) {
        .a--mobile-only{
            display: none;
        }
    }
    @media (max-width: 767px) {
      .vela-nav-links {
        display: none;
      }

      .vela-btn-download.vela-desktop-btn {
        display: none;
      }

      .vela-hamburger {
        display: flex;
      }

      .vela-mobile-menu {
        display: flex;
      }

      .vela-cards-section {
        padding-top: 0px;
        padding-bottom: 50px;
      }
      
      .vela-hero {
          min-height: 600px;
          border-radius: 0 0 1.2rem 1.2rem;
      }
        .belief__copy,
  .belief__video{
    width: min(calc(100vw - 24px), 100%);
  }

  .belief__copy p {
    font-size: 18px;
  }

  .belief__play {
    width: 88px;
    height: 88px;
    font-size: 24px;
  }
      .vela-belief {
        padding-left: 20px;
        padding-right: 20px;
    }
    .belief__video{
        margin-top: 30px;
    }
    .vela-belief {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .vela-logo {
        max-width: 75px;
    }
    .vela-stats-body{
        font-size: 18px !important;
      }
.vela-counter-label{
    font-size: 20px;
}
.vela-btn-stats{
        font-size: 1rem;
}
.a--play-icon-btn{
    width: 60px;
    height: 60px;
}
.movement__panel{
    width: min(calc(100vw - 24px), 100%);
    border-radius: 20px;
}
  .movement {
    padding: 40px 20px 40px 20px;
  }

  .movement__copy h2 {
    font-size: 42px;
  }

    .movement__copy p {
        font-size: 18px;
        text-align: center;
    }

  .site-footer {
    padding-top: 56px;
  }
  .a--desktop-only{
    display: none;
  }
  .movement__copy{
    max-width: 100%;
  }
  .movement__image{
        position: relative;
        min-height: auto;
        max-width: 100%;
  }
  .movement__copy{
    padding: 20px 16px;
  }
      .movement__copy h2 {
        font-size: 32px;
        text-align: center;
    }
    .vela-stats-section{
        padding: 50px 20px 50px 20px;
    }
          .vela-card-for {
        font-size: 24px;
      }

       .footer-container {
    padding: 0 15px;
  }

  .quick-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .quick-links li {
    margin: 10px 15px;
  }

  .download-links {
    margin-top: 20px;
  }

  .social-icons {
    margin-top: 15px;
  }
      .vela-hero-heading sup{
        font-size: 28px;
        vertical-align: super;
    }
    footer .quick-links li{
      margin: 0;
    }
    .footer-right-col{
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .main-footer{
    padding: 40px 20px 0px;
    }
    .footer-bottom{
      padding: 16px 0px;
      flex-direction: column-reverse;
      gap: 20px;
    }
    .footer-logo img{
      width: 150px;
    }
    .footer-logo {
      margin-bottom: 30px;
      }
      .download-links h4, footer .quick-links h4{
                font-size: 20px;
      }
      .quick-links a, .footer-bottom{
        font-size: 14px;
      }
      footer .quick-links ul{
        margin: 0;
      }
          footer .footer-bottom p {
        font-size: 14px;
    }
}

    @media (max-width: 640px) {
      .vela-counters {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .vela-counter-item:not(:last-child)::after {
        display: none;
      }

      .vela-deco-arc {
        display: none;
      }

      .vela-counter-value {
        font-size: clamp(3rem, 5.5vw, 3.6rem) !important;
      }

      .vela-container {
        padding: 0px 20px;
      }


    }

    @media (max-width: 480px) {
      .vela-nav {
        /* padding: 0 1.2rem; */
        height: 58px;
      }

      .vela-logo-text {
        font-size: 1.3rem;
      }



      .vela-hero-heading {
        font-size: clamp(3rem, 16vw, 6rem);
      }

      .vela-hero-sub {
        font-family: var(--font-body);
        font-size: clamp(2.5rem, 2.5vw, 1.4rem) !important;
      }

      .vela-card {
        padding: 3.0rem 1.5rem;
      }

      .vela-card-desc {
        font-size: 1.2rem;
      }

      .vela-card-divider {
        height: 10px;
      }
      .vela-counters {
        margin-bottom: 3.5rem;
      }

    .app-store img {
        width: 130px;
        margin: 0 5px;
    }

    }