@font-face {
  font-family: 'Editech';
  src: url('../fonts/EditechRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Editech';
  src: url('../fonts/EditechBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Editech', sans-serif !important;
}

:root {
  --navy-900: #0E1B2E;
  --navy-800: #16233A;
  --navy-600: #2B3B57;
  --orange-500: #FF5A1F;
  --orange-600: #E64A0F;
  --orange-50: #FFF1EA;
  --cream: #FBFAF7;
  --gray-200: #E8E6E1;
  --gray-500: #6B7280;
  --white: #FFFFFF;
  --font-body: 'Editech', sans-serif;
  --font-display: 'Editech', sans-serif;

}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
}

body.bw-menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ============ NAVBAR ============ */
.bw-navbar {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: .85rem 0;
  z-index: 1030;
}

.bw-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  /* background:var(--navy-900); */
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}


.bw-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--navy-900);
  line-height: 1.1;
  margin-bottom: 0;
}

.bw-tagline {
  font-size: 9px;
  letter-spacing: .03em;
  color: var(--navy-900);
  text-align: right;
}

.bw-tagline span {
  color: var(--orange-500);
}

.bw-nav-link {
  font-family: var(--font-body);
  /* font-weight: 600; */
  font-size: .94rem;
  color: var(--navy-800);
  position: relative;
  padding: .4rem .2rem !important;
  margin: 0 .85rem;
  transition: color .25s ease;
}

.bw-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--orange-500);
  transition: width .3s ease;
}

.bw-nav-link:hover {
  color: var(--orange-500);
}

.bw-nav-link:hover::after {
  width: 100%;
}

.bw-nav-link.active {
  color: var(--navy-900);
}

.bw-nav-link.active::after {
  width: 100%;
}

.bw-cta-btn {
  background: var(--orange-500);
  color: var(--white);
  font-size: .92rem;
  padding: .6rem 1.3rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 6px 16px -4px rgba(255, 90, 31, .45);
  border: none;
}

.bw-cta-btn:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(255, 90, 31, .55);
  color: var(--white);
}

.bw-cta-btn i {
  transition: transform .25s ease;
}

.bw-cta-btn:hover i {
  transform: translateX(3px);
}

/* ---- custom mobile menu (self-contained, no Bootstrap JS dependency) ---- */
.bw-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 27, 46, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1045;
}

.bw-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bw-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  height: 100dvh;
  width: min(84vw, 340px);
  max-width: 340px;
  background: var(--navy-900);
  color: var(--white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22, .68, .36, 1);
  box-shadow: -14px 0 34px -12px rgba(0, 0, 0, .4);
}

.bw-mobile-menu.is-open {
  transform: translateX(0);
}

.bw-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

.bw-mobile-menu-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.bw-mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  padding: .3rem;
  line-height: 0;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}

.bw-mobile-menu-close:hover {
  color: var(--orange-500);
  transform: rotate(90deg);
}

.bw-mobile-menu-body {
  display: flex;
  flex-direction: column;
  padding: .6rem 1.3rem 1.6rem;
  overflow-y: auto;
}

.bw-mobile-menu-body .bw-nav-link {
  color: rgba(255, 255, 255, .85);
  display: block;
  padding: .85rem .1rem !important;
  margin: 0;
  font-size: 1.02rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bw-mobile-menu-body .bw-nav-link:hover,
.bw-mobile-menu-body .bw-nav-link.active {
  color: var(--orange-500);
}

.bw-mobile-menu-body .bw-nav-link::after {
  display: none;
}

.bw-mobile-menu-body .bw-cta-btn {
  justify-content: center;
  margin-top: 1.5rem;
}

/* =========================================
   FIXED NAVBAR - ALWAYS TOP
========================================= */

.bw-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;

  z-index: 9999 !important;

  background: transparent;

  transition:
    background-color .35s ease,
    box-shadow .35s ease,
    padding .35s ease;

  border-bottom: 1px solid var(--gray-200);
}


/* After scroll */

.bw-navbar.is-scrolled {
  background: var(--navy-900) !important;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .20);

  border-bottom-color: rgba(255, 255, 255, .1);
}


/* =========================================
  
========================================= */

.bw-navbar.is-scrolled .bw-wordmark,
.bw-navbar.is-scrolled .bw-tagline {
  color: #ffffff !important;
}


/* Nav links */

.bw-navbar.is-scrolled .bw-nav-link {
  color: rgba(255, 255, 255, .85) !important;
}

.bw-navbar.is-scrolled .bw-nav-link:hover,
.bw-navbar.is-scrolled .bw-nav-link.active {
  color: var(--orange-500) !important;
}


/* Mobile hamburger */

.bw-navbar.is-scrolled .navbar-toggler .bw-icon-svg {
  color: #ffffff !important;
}


/* =========================================
   BODY TOP SPACE
   Fixed header content ko cover na kare
========================================= */

body {
  padding-top: 78px;
}


/* Mobile */

@media (max-width: 991.98px) {

  body {
    padding-top: 72px;
  }

}

/* ============ HERO / SLIDER ============ */
.bw-hero {
  position: relative;
  overflow: hidden;
}

.bw-hero-carousel .carousel-item {
  position: relative;
  align-items: center;
  min-height: 720px;
  padding: 2.4rem 0;
}

.bw-hero-carousel .carousel-item.active,
.bw-hero-carousel .carousel-item-next,
.bw-hero-carousel .carousel-item-prev {
  display: flex;
  /* border: 1px solid red; */
}

.bw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

}

.bw-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bw-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* blend the photo into the cream panel on the left, like the reference */
.bw-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      var(--cream) 0%,
      var(--cream) 30%,
      rgba(251, 250, 247, .85) 42%,
      rgba(251, 250, 247, .35) 54%,
      rgba(251, 250, 247, 0) 66%);
}

@media (max-width:991.98px) {
  .bw-hero-bg::after {
    background: linear-gradient(180deg,
        var(--cream) 0%,
        var(--cream) 42%,
        rgba(251, 250, 247, .6) 60%,
        rgba(251, 250, 247, .2) 80%);
  }

  .bw-hero-carousel .carousel-item {
    min-height: 100dvh;
    padding: 2rem 0 2.4rem;
  }
}


@media (max-width:767.98px) {
  .bw-hero-bg::after {
    background: linear-gradient(180deg,
        var(--cream) 0%,
        var(--cream) 42%,
        rgba(251, 250, 247, .6) 50%,
        rgba(251, 250, 247, .2) 90%);
  }

  .bw-hero-carousel .carousel-item {
    min-height: auto;
    padding: 2rem 0 2.4rem;
  }
}

.bw-hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
}

.bw-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy-900);
  max-width: 620px;
}

.bw-headline .accent {
  color: var(--orange-500);
}

.bw-subhead {
  font-size: clamp(.92rem, 1.6vw, 1.08rem);
  color: var(--gray-500);
  max-width: 520px;
  /* margin-top: 1rem; */
  line-height: 1.55;
}


/* ------------------------------ */
/* =====================================
   FULL SCREEN HERO - ALL DEVICES
===================================== */

.bw-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
}

.bw-hero-carousel,
.bw-hero-carousel .carousel-inner {
  width: 100%;
  /* min-height: 100dvh; */
  /* border: 1px solid rgb(52, 0, 207); */
}


/* EACH SLIDE */

.bw-hero-carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;

  padding: 0 !important;
  margin: 0;

  align-items: center;
}


/* BOOTSTRAP ACTIVE SLIDE */

.bw-hero-carousel .carousel-item.active,
.bw-hero-carousel .carousel-item-next,
.bw-hero-carousel .carousel-item-prev {
  display: flex;
}


/* BACKGROUND IMAGE */

.bw-hero-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 90vh;

  background-repeat: no-repeat;

  /* FULL WIDTH + FULL HEIGHT */
  background-size: 100% 100%;

  background-position: center center;

  z-index: 0;
}


/* CONTENT IMAGE KE UPAR */

.bw-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* inline svg icons: size + color controlled by wrapper */
.bw-icon-svg {
  display: inline-block;
  line-height: 1;
}

.navbar-toggler .bw-icon-svg {
  font-size: 24px;
}

.bw-mobile-menu-close .bw-icon-svg {
  font-size: 20px;
}

.bw-cta-btn .bw-icon-svg {
  font-size: 13px;
}

.bw-hero-ctas .bw-icon-svg {
  font-size: 15px;
}

.bw-icon-circle .bw-icon-svg {
  font-size: 22px;
}

@media (max-width:575.98px) {
  .bw-icon-circle .bw-icon-svg {
    font-size: 18px;
  }
}

@media (max-width:399.98px) {
  .bw-icon-circle .bw-icon-svg {
    font-size: 16px;
  }
}

.bw-rule {
  width: 64px;
  height: 4px;
  background: var(--orange-500);
  border-radius: 2px;
  margin: 1.3rem 0 1.7rem;
}

/* ---- process trail ---- */
.bw-trail {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
  max-width: 480px !important;
  flex-wrap: nowrap;
  padding-bottom: .3rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bw-trail::-webkit-scrollbar {
  display: none;
}

.bw-trail-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1 1 auto;
  min-width: 56px;
}

.bw-trail-connector {
  flex: 0 0 22px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.bw-trail-connector svg {
  width: 100%;
  height: 6px;
  overflow: visible;
}

.bw-trail-connector circle {
  fill: var(--orange-500);
  opacity: .55;
}

.bw-trail-dots {
  stroke-dasharray: 1 9;
  stroke-linecap: round;
  stroke: var(--orange-500);
  stroke-width: 3;
  fill: none;
  opacity: .6;
  animation: bw-dash 1.8s linear infinite;
}

@keyframes bw-dash {
  to {
    stroke-dashoffset: -40;
  }
}

.bw-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--navy-800);
  box-shadow: 0 4px 10px -4px rgba(14, 27, 46, .12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.bw-trail-step:hover .bw-icon-circle {
  transform: translateY(-4px);
  border-color: var(--orange-500);
  box-shadow: 0 10px 20px -6px rgba(255, 90, 31, .35);
}

.bw-trail-step.is-active .bw-icon-circle {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 6px var(--orange-50);
  animation: bw-pulse 2.4s ease-in-out infinite;
}

@keyframes bw-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px var(--orange-50);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 241, 234, .55);
  }
}

.bw-step-label {
  font-size: .78rem;
  color: var(--navy-800);
  margin-top: .6rem;
  text-align: center;
  letter-spacing: .01em;
}

.bw-hero-ctas .btn {
  padding: .85rem 1.6rem;
  font-weight: 600;
  font-size: .96rem;
  border-radius: 10px;
}

.bw-btn-primary {
  background: var(--orange-500);
  border: none;
  color: var(--white);
  box-shadow: 0 10px 22px -6px rgba(255, 90, 31, .5);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.fa-circle-play:before,
.fa-play-circle:before {
  color: var(--navy-900);
}

.bw-btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -6px rgba(255, 90, 31, .6);
  color: var(--white);
}

.bw-btn-secondary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy-900);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bw-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--navy-800);
  box-shadow: 0 10px 20px -8px rgba(14, 27, 46, .25);
  color: var(--navy-900);
}

.bw-btn-secondary i {
  color: var(--orange-500);
  font-size: 1.1rem;
}

/* ============ entrance animation ============ */
.bw-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: bw-fade-up .7s cubic-bezier(.22, .68, .36, 1) forwards;
}

@keyframes bw-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bw-delay-1 {
  animation-delay: .05s;
}

.bw-delay-2 {
  animation-delay: .18s;
}

.bw-delay-3 {
  animation-delay: .32s;
}

.bw-delay-4 {
  animation-delay: .5s;
}

@media (prefers-reduced-motion: reduce) {
  .bw-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .bw-trail-dots {
    animation: none;
  }

  .bw-trail-step.is-active .bw-icon-circle {
    animation: none;
  }
}

@media (max-width:575.98px) {
  .bw-trail {
    gap: 0;
  }

  .bw-trail-connector {
    flex: 0 0 12px;
  }

  .bw-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .bw-step-label {
    font-size: .68rem;
  }

  .bw-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* .bw-hero-carousel .carousel-item {
    min-height: 620px;
  } */
}

@media (max-width:399.98px) {
  .bw-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .bw-trail-connector {
    flex: 0 0 8px;
  }
}

@media (max-width:991.98px) {
  .bw-hero-content {
    text-align: left;
  }

}

@media (min-width:1400px) {
  .bw-hero-carousel .carousel-item {
    min-height: 760px;
  }
}

@media (max-width:380px) {
  .bw-logo-mark {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }

  .bw-wordmark {
    font-size: 1.05rem;
  }

  .bw-tagline {
    font-size: .62rem;
  }

  .navbar-brand {
    gap: .4rem !important;
  }
}

/* hero new css add  */
/* =====================================================
   HERO PROCESS TRAIL - FULL RESPONSIVE
===================================================== */

.bw-trail {
  width: 100%;
  max-width: 440px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 0;
  margin-top: 2rem;
  /* margin-bottom: 1.8rem; */

  padding: 0;

  overflow: visible;
  flex-wrap: nowrap;
}


/* Each icon item */

.bw-trail-step {
  flex: 0 1 auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}


/* Connector */

.bw-trail-connector {
  flex: 1 1 24px;
  min-width: 12px;
  max-width: 42px;

  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-trail-connector svg {
  width: 100%;
  height: 8px;
  display: block;
  overflow: visible;
}


/* Dotted line */

.bw-trail-dots {
  stroke: var(--orange-500);
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 1 9;

  opacity: .65;

  animation: bw-dash 1.8s linear infinite;
}


/* =====================================================
   ICON CIRCLE - DESKTOP
===================================================== */

.bw-icon-circle {
  width: 60px;
  height: 60px;

  flex: 0 0 60px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--white);
  border: 1px solid var(--gray-200);

  color: var(--navy-800);

  box-shadow: 0 4px 10px -4px rgba(14, 27, 46, .12);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


/* Font Awesome icon */

.bw-icon-circle .bw-icon-svg {
  font-size: 22px;
  line-height: 1;
}


/* Label */

.bw-step-label {
  display: block;

  margin-top: .6rem;

  font-size: clamp(.65rem, 1vw, .78rem);
  line-height: 1.25;

  color: var(--navy-800);

  text-align: center;
  white-space: nowrap;
}


/* Hover */

.bw-trail-step:hover .bw-icon-circle {
  transform: translateY(-4px);

  border-color: var(--orange-500);

  box-shadow:
    0 10px 20px -6px rgba(255, 90, 31, .35);
}


/* Active icon */

.bw-trail-step.is-active .bw-icon-circle {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);

  box-shadow: 0 0 0 6px var(--orange-50);

  animation: bw-pulse 2.4s ease-in-out infinite;
}


/* =====================================================
   BOTH HERO BUTTONS - DESKTOP
===================================================== */

/* =========================================
   CTA BUTTON FINAL RESPONSIVE FIX
========================================= */

/* Desktop */
.bw-hero-ctas {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}


/* 576px se niche */
@media (max-width: 575.98px) {

  .bw-hero-ctas {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;

    gap: 14px !important;

    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
  }


  /* Dono side 16px ka gap */
  .bw-hero-ctas .btn,
  .bw-hero-content .bw-hero-ctas .btn {
    width: calc(100% - 32px) !important;
    max-width: none !important;

    margin: 0 auto !important;

    min-height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
  }

}


/* 400px se niche */
@media (max-width: 399.98px) {

  .bw-hero-ctas .btn,
  .bw-hero-content .bw-hero-ctas .btn {
    width: calc(100% - 24px) !important;

    min-height: 50px !important;

    font-size: 14px !important;
  }

}

.bw-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem !important;
  /* border: 1px solid red; */
}

.bw-hero-ctas .btn {
  min-height: 52px;

  padding: .85rem 1.6rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: .96rem;
  font-weight: 600;

  border-radius: 10px;

  white-space: nowrap;
}


/* Button icons */

.bw-hero-ctas .bw-icon-svg {
  flex: 0 0 auto;

  font-size: 15px;
}


/* =====================================================
   1200px AND BELOW - LAPTOP
===================================================== */

@media (max-width: 1199.98px) {

  .bw-trail {
    max-width: 420px !important;
  }

  .bw-icon-circle {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 20px;
  }

  .bw-trail-connector {
    height: 54px;
    min-width: 10px;
    max-width: 32px;
  }

  .bw-step-label {
    font-size: .70rem;
  }

  .bw-hero-ctas .btn {
    padding: .78rem 1.3rem;
    font-size: .90rem;
  }

}


/* =====================================================
   TABLET - 992px AND BELOW
   Icons shrink proportionally
===================================================== */

@media (max-width: 991.98px) {

  .bw-trail {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
  }

  .bw-icon-circle {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 19px;
  }

  .bw-trail-connector {
    height: 52px;

    flex: 1 1 20px;
    min-width: 10px;
    max-width: 38px;
  }


  .bw-hero-ctas {
    gap: .8rem !important;
    margin-bottom: 40px;
  }

}


/* =====================================================
   MOBILE - 768px AND BELOW
   Trail stays in one line
===================================================== */

@media (max-width: 767.98px) {

  .bw-trail {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;

    width: 100%;

    display: flex;
    justify-content: space-between;

    overflow: visible;
  }

  .bw-trail-step {
    flex: 0 1 auto;
    min-width: 0;
  }

  .bw-icon-circle {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);

    flex-basis: clamp(40px, 8vw, 50px);
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: clamp(15px, 3.5vw, 19px);
  }

  .bw-trail-connector {
    height: clamp(40px, 8vw, 50px);

    flex: 1 1 15px;

    min-width: 7px;
    max-width: 30px;
  }

  .bw-trail-connector svg {
    height: 6px;
  }

  .bw-trail-dots {
    stroke-width: 2.5;
    stroke-dasharray: 1 7;
  }

  .bw-step-label {
    margin-top: .45rem;

    font-size: clamp(.52rem, 1.7vw, .68rem);

    line-height: 1.15;
    white-space: nowrap;
  }

  .bw-headline {
    font-size: 28px;
  }

  /* Both buttons */

  .bw-hero-ctas {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: .75rem !important;
  }

  .bw-hero-ctas .btn {
    width: 100%;

    min-width: 0;
    min-height: 50px;

    padding: .7rem .55rem;

    font-size: clamp(.72rem, 2.4vw, .88rem);

    text-align: center;
    white-space: normal;

    line-height: 1.25;
  }

  .bw-hero-ctas .bw-icon-svg {
    font-size: 13px;
  }

}


/* =====================================================
   SMALL MOBILE - 576px AND BELOW
===================================================== */

@media (max-width: 575.98px) {

  .bw-trail {
    margin-top: 1.3rem;
    margin-bottom: 1.4rem;
  }

  .bw-icon-circle {
    width: 44px;
    height: 44px;

    flex-basis: 44px;
  }


  .bw-trail-connector {
    height: 44px;

    flex: 1 1 10px;

    min-width: 5px;
    max-width: 18px;
  }

  .bw-trail-connector svg {
    height: 5px;
  }

  .bw-trail-dots {
    stroke-width: 2;
    stroke-dasharray: 1 6;
  }

  .bw-step-label {
    font-size: .55rem;
    margin-top: .4rem;
  }

}


/* =====================================================
   VERY SMALL MOBILE - 400px AND BELOW
===================================================== */

@media (max-width: 399.98px) {

  .bw-trail {
    width: 100%;
  }

  .bw-icon-circle {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 14px;
  }

  .bw-trail-connector {
    height: 38px;

    flex: 1 1 7px;

    min-width: 3px;
    max-width: 12px;
  }

  .bw-trail-connector svg {
    height: 4px;
  }

  .bw-trail-dots {
    stroke-width: 2;
    stroke-dasharray: 1 5;
  }

  .bw-step-label {
    font-size: .48rem;

    margin-top: .35rem;
  }


  /* Very small screen buttons */

  .bw-hero-ctas {
    grid-template-columns: 1fr;
    gap: .7rem !important;
  }

  .bw-hero-ctas .btn {
    width: 100%;
    min-height: 48px;

    font-size: .82rem;

    padding: .7rem 1rem;
  }

}


/* =====================================================
   EXTRA SMALL - 360px AND BELOW
===================================================== */

@media (max-width: 359.98px) {

  .bw-icon-circle {
    width: 34px;
    height: 34px;

    flex-basis: 34px;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 12px;
  }

  .bw-trail-connector {
    height: 34px;

    min-width: 2px;
    max-width: 8px;
  }

  .bw-step-label {
    font-size: .43rem;
  }

}

/* .bw-trail {
    width: 100%;
    max-width: 480px;
} */

/* =========================================================
========================================================= */

/* ===============================
   DESKTOP / LAPTOP
================================ */

.bw-trail {
  width: 100% !important;
  /* max-width: 480px !important; */

  display: flex !important;
  align-items: flex-start !important;

  flex-wrap: nowrap !important;

  gap: 0 !important;

  margin-top: 2rem !important;
  margin-bottom: 1.8rem !important;

  padding: 0 !important;
}


.bw-trail-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  flex: 0 1 auto !important;
  min-width: 0 !important;
}


.bw-icon-circle {
  width: 60px !important;
  height: 60px !important;

  min-width: 60px !important;
  flex-shrink: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}


.bw-icon-circle .bw-icon-svg {
  font-size: 22px !important;
}


.bw-trail-connector {
  flex: 1 1 auto !important;

  min-width: 15px !important;
  max-width: 40px !important;

  height: 60px !important;

  display: flex !important;
  align-items: center !important;
}


.bw-trail-connector svg {
  width: 100% !important;
  height: 6px !important;
}


.bw-step-label {
  white-space: nowrap !important;
  text-align: center !important;
}


/* ===============================
   BOTH BUTTONS
================================ */

.bw-hero-ctas {
  display: flex !important;
  flex-direction: row !important;

  align-items: center !important;
  justify-content: flex-start !important;

  gap: 15px !important;
}


.bw-hero-ctas .btn {
  width: auto !important;

  min-height: 52px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  white-space: nowrap !important;
}


/* =========================================================
   1200px
========================================================= */

@media (max-width: 1199.98px) {

  /* .bw-trail {
        max-width: 560px !important;
    } */

  .bw-icon-circle {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 20px !important;
  }

  .bw-trail-connector {
    height: 54px !important;
    min-width: 10px !important;
    max-width: 28px !important;
  }

  .bw-step-label {
    font-size: 11px !important;
  }

}


/* =========================================================
   TABLET - 1024 / 991px
========================================================= */

@media (max-width: 991.98px) {

  .bw-trail {
    max-width: 100% !important;

    display: flex !important;
    flex-wrap: nowrap !important;

    justify-content: space-between !important;
    max-width: 440px !important;
  }

  .bw-icon-circle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .bw-icon-circle .bw-icon-svg {
    font-size: 19px !important;
  }

  .bw-trail-connector {
    height: 52px !important;

    min-width: 8px !important;
    max-width: 35px !important;

    flex: 1 1 auto !important;
  }


}


/* =========================================================
   MOBILE - 768px 
========================================================= */

@media (max-width: 767.98px) {

  .bw-trail {
    display: none !important;

    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    row-gap: 25px !important;
    column-gap: 12px !important;

    /* max-width: 420px !important; */

    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }


  .bw-trail-step {
    width: 100% !important;

    grid-column: auto !important;
  }


  /* dotted connector mobile me hide */
  .bw-trail-connector {
    display: none !important;
  }




  .bw-step-label {
    font-size: 11px !important;

    white-space: nowrap !important;
  }


  /* ===============================
       BUTTONS MOBILE PAR UPAR NICHE
    =============================== */
  /* new button css for mobile */

  /* new button css for mobile */
  .bw-hero-ctas {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: stretch !important;

    gap: 12px !important;
  }


  .bw-hero-ctas .btn {
    width: 100% !important;

    min-height: 54px !important;

    display: flex !important;

    font-size: 15px !important;

  }

}


/* =========================================================
   576px
========================================================= */

@media (max-width: 575.98px) {

  .bw-trail {
    max-width: 100% !important;

    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    column-gap: 8px !important;
    row-gap: 22px !important;
  }


  .bw-icon-circle {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
  }


  .bw-icon-circle .bw-icon-svg {
    font-size: 17px !important;
  }


  .bw-step-label {
    font-size: 10px !important;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .bw-trail {
    column-gap: 4px !important;
    row-gap: 20px !important;
  }


  .bw-icon-circle {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;
  }


  .bw-icon-circle .bw-icon-svg {
    font-size: 15px !important;
  }


  .bw-step-label {
    font-size: 9px !important;
  }


  .bw-hero-ctas .btn {
    min-height: 50px !important;
    font-size: 14px !important;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359.98px) {

  .bw-icon-circle {
    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
  }


  .bw-icon-circle .bw-icon-svg {
    font-size: 13px !important;
  }


  .bw-step-label {
    font-size: 8px !important;
  }

}

/* ============ MISSION / WHO WE SERVE ============ */
.bw-mission {
  position: relative;
  z-index: 2;
  background: var(--cream);
  /* padding: 4rem 0; */
}

.bw-mission-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px -30px rgba(14, 27, 46, .18);
}

.bw-mission-left {
  padding-right: 2.5rem;
}

.bw-mission-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: .9rem;
}

.bw-mission-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.28;
  color: var(--navy-900);
  max-width: 380px;
}

.bw-mission-heading .accent {
  color: var(--orange-500);
}

.bw-mission-item {
  text-align: center;
  padding: 0 1.1rem;
  position: relative;
}

/* vertical divider between columns on large screens */
@media (min-width:768px) {
  .bw-mission-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--gray-200);
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .row-cols-md-4>.bw-mission-item:nth-child(3)::before {
    display: none;
  }
}

.bw-mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: transform .3s ease, background .3s ease;
}

.bw-mission-icon i {
  font-size: 24px;
}

.bw-mission-item:hover .bw-mission-icon {
  background: var(--orange-500);
  transform: translateY(-4px) scale(1.05);
}

.bw-mission-title {
  font-family: var(--font-display);
  /* font-weight: 700;   */
  font-size: 1.02rem;
  color: var(--navy-900);
  margin-bottom: .6rem;
}

.bw-mission-text {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin-bottom: 0;
}

@media (max-width:991.98px) {
  .bw-mission-card {
    padding: 2.2rem 1.6rem;
  }

  .bw-mission-left {
    padding-right: 0;
    margin-bottom: 2.2rem;
    text-align: center;
  }

  .bw-mission-heading {
    max-width: 100%;
    margin: 0 auto;
  }

  .bw-mission-item:not(:first-child)::before {
    display: none;
  }
}

@media (max-width:575.98px) {
  .bw-mission-card {
    padding: 1.8rem 1.1rem;
    border-radius: 16px;
  }

  .bw-mission-icon {
    width: 54px;
    height: 54px;
    margin-bottom: .9rem;
  }

  .bw-mission-icon i {
    font-size: 20px;
  }

  .bw-mission-title {
    font-size: .92rem;
  }

  .bw-mission-text {
    font-size: .8rem;
  }
}


/* ============ JOURNEY ============ */

.bw-journey {
  padding: 3rem 0 1rem;
}

.bw-journey-card {
  background: var(--navy-900);
  border-radius: 22px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.bw-journey-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle,
      rgba(255, 90, 31, .10) 0%,
      rgba(255, 90, 31, 0) 70%);
  pointer-events: none;
}


/* ============ LEFT CONTENT ============ */

.bw-journey-left {
  position: relative;
  z-index: 2;
  padding-right: 1.5rem;
}

.bw-journey-eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: .7rem;
}

.bw-journey-heading {
  font-family: 'Editech', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 1rem;
}

.bw-journey-rule {
  width: 44px;
  height: 3px;
  background: var(--orange-500);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.bw-journey-text {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .62);
  max-width: 260px;
  margin-bottom: 0;
}


/* ============ DESKTOP STEPS ============ */

.bw-journey-steps {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.bw-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 .35rem;
}

.bw-journey-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.35rem;
  flex-shrink: 0;

  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .35);

  transition: .3s ease;
}

.bw-journey-step:hover .bw-journey-icon {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
}

.bw-journey-number {
  font-family: 'Editech', sans-serif;
  /* font-weight: 600; */
  font-size: .86rem;
  color: var(--orange-500);
  margin-top: .85rem;
  margin-bottom: .35rem;
  white-space: nowrap;
}

.bw-journey-desc {
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 0;
  max-width: 160px;
}


/* ============ CONNECTOR ============ */

.bw-journey-connector {
  flex: 0 0 46px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.bw-journey-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bw-journey-connector .bw-dash {
  stroke: var(--orange-500);
  stroke-width: 2.5;
  stroke-dasharray: 1 8;
  stroke-linecap: round;
  fill: none;
  opacity: .85;
  animation: bw-dash-walk 1.4s linear infinite;
}

.bw-journey-connector i {
  position: absolute;
  right: -3px;
  color: var(--orange-500);
  font-size: .72rem;
  animation: bw-arrow-nudge 1.4s ease-in-out infinite;
}

@keyframes bw-dash-walk {
  to {
    stroke-dashoffset: -54;
  }
}

@keyframes bw-arrow-nudge {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}


/* =================================================
   TABLET
   Left content top + Steps 3 + 2
================================================= */

@media (max-width: 991.98px) {

  .bw-journey {
    padding: 3rem 0 1rem;
  }

  .bw-journey-card {
    padding: 2.5rem 2rem;
  }

  .bw-journey-left {
    padding-right: 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .bw-journey-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .bw-journey-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }


  /* Grid Layout */
  .bw-journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1rem;
  }

  .bw-journey-step {
    width: 100%;
    padding: 0 .5rem;
  }


  /* Hide curved connectors on tablet */
  .bw-journey-connector {
    display: none;
  }

  /*
       HTML children:
       1 step
       2 connector
       3 step
       4 connector
       5 step
       6 connector
       7 step
       8 connector
       9 step
    */

  .bw-journey-step:nth-child(1) {
    grid-column: 1;
  }

  .bw-journey-step:nth-child(3) {
    grid-column: 2;
  }

  .bw-journey-step:nth-child(5) {
    grid-column: 3;
  }

  .bw-journey-step:nth-child(7) {
    grid-column: 1 / span 2;
    justify-self: center;
  }

  .bw-journey-step:nth-child(9) {
    grid-column: 2 / span 2;
    justify-self: center;
  }

}


/* =================================================
   MOBILE
   Proper vertical timeline
================================================= */

@media (max-width: 575.98px) {

  .bw-journey {
    padding: 2.5rem 0 1rem;
  }

  .bw-journey-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .bw-journey-left {
    margin-bottom: 2.5rem;
  }

  .bw-journey-heading {
    font-size: 1.65rem;
  }

  .bw-journey-text {
    font-size: .86rem;
  }


  /* Vertical Layout */
  .bw-journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }


  .bw-journey-step {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    position: relative;
  }


  .bw-journey-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 1.1rem;
    margin-right: 16px;
    position: relative;
    z-index: 2;
  }


  /* Text layout */
  .bw-journey-step::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 54px;
    bottom: -25px;
    width: 2px;
    border-left: 2px dotted var(--orange-500);
    opacity: .75;
  }


  /* Last step line remove */
  .bw-journey-step:last-child::after {
    display: none;
  }


  .bw-journey-number {
    margin: 2px 0 5px;
    font-size: .9rem;
  }


  .bw-journey-desc {
    font-size: .8rem;
    max-width: 100%;
    margin: 0;
    padding-right: 5px;
  }


  /*
       Mobile par connectors hide
       vertical dotted line use hogi
    */
  .bw-journey-connector {
    display: none;
  }


  /* Every step ke baad spacing */
  .bw-journey-step:not(:last-child) {
    margin-bottom: 42px;
  }


  /*
       Text ko right side me wrap
    */
  .bw-journey-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
  }

  .bw-journey-step .bw-journey-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-right: 0;
  }

  .bw-journey-step .bw-journey-number {
    grid-column: 2;
    grid-row: 1;
  }

  .bw-journey-step .bw-journey-desc {
    grid-column: 2;
    grid-row: 2;
  }

}


/* =================================================
   SMALL MOBILE
================================================= */

@media (max-width: 375px) {

  .bw-journey-card {
    padding: 1.75rem 1rem;
  }

  .bw-journey-heading {
    font-size: 1.45rem;
  }

  .bw-journey-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1rem;
  }

  .bw-journey-step {
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
  }

  .bw-journey-step::after {
    left: 23px;
    top: 48px;
  }

  .bw-journey-desc {
    font-size: .75rem;
  }

}


/* ============ ACCESSIBILITY ============ */

@media (prefers-reduced-motion: reduce) {

  .bw-journey-connector .bw-dash,
  .bw-journey-connector i {
    animation: none;
  }

  .bw-journey-icon {
    transition: none;
  }

}

/* ============ FOUNDER-FIRST ============  */


.bw-founder {
  padding: 2.3rem 0;
}

.bw-founder-photo {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.bw-founder-photo-wrap {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px -25px rgba(14, 27, 46, .35);
}

.bw-founder-eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: .8rem;
}

.bw-founder-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 1.1rem;
}

.bw-founder-heading .accent {
  color: var(--orange-500);
  display: block;
}

.bw-founder-text {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 340px;
  margin-bottom: 0;
}

.bw-founder-divider {
  border-left: 1px solid var(--gray-200);
  height: 100%;
  min-height: 1px;
}

.bw-founder-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bw-founder-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bw-founder-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.bw-founder-item:hover .bw-founder-icon {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-3px);
}

.bw-founder-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-900);
  margin-bottom: .3rem;
}

.bw-founder-item-text {
  font-size: .84rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width:991.98px) {
  .bw-founder-photo-wrap {
    min-height: 260px;
    margin-bottom: 2rem;
  }

  .bw-founder-photo {
    min-height: 260px;
  }
}

@media (max-width:767.98px) {
  .bw-founder-left {
    text-align: center;
    margin-bottom: 2rem;
  }

  .bw-founder-text {
    margin-left: auto;
    margin-right: auto;
  }

  .bw-founder-divider {
    border-left: none;
    border-top: 1px solid var(--gray-200);
    width: 60px;
    height: 1px;
    margin: 0 auto 2rem;
  }

  .bw-founder-item {
    text-align: left;
  }
}

@media (max-width:575.98px) {
  .bw-founder {
    padding: 2.6rem 0;
  }

  .bw-founder-heading {
    font-size: 1.5rem;
  }

  .bw-founder-icon {
    width: 40px;
    height: 40px;
    font-size: .88rem;
  }

  .bw-founder-item-title {
    font-size: .92rem;
  }

  .bw-founder-item-text {
    font-size: .8rem;
  }

  .bw-founder-photo-wrap {
    min-height: 220px;
  }

  .bw-founder-photo {
    min-height: 220px;
  }
}


/* ============ INDUSTRIES WE EMPOWER ============  */
.bw-heading {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  line-height: 1.3;
}

.bw-navy {
  color: #0E1B2E;
}

.bw-orange {
  color: #FF5A1F;
}

.bw-bg-panel {
  background: #E9EDFA;
}

.bw-icon-circle {
  width: 56px;
  height: 56px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.bw-lane:hover .bw-icon-circle {
  background: #FF5A1F;
  color: #fff;
  transform: translateY(-4px);
}

/* Industry Icon - Normal State */

.bw-lane .bw-icon-circle {
  background: var(--white) !important;
  color: var(--navy-900);
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.bw-lane .bw-icon-circle i {
  color: var(--navy-900);
  transition: color .3s ease;
}


/* Hover */

.bw-lane:hover .bw-icon-circle {
  background: var(--orange-500) !important;
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
}

.bw-lane:hover .bw-icon-circle i {
  color: var(--white) !important;
}


/* Optional: text bhi thoda orange ho */

.bw-lane p {
  transition: color .3s ease;
}

.bw-lane:hover p {
  color: var(--orange-500) !important;
}

/* vertical divider — only shown once the grid is a clean 4-per-row (md and up),
     so the lines never misalign when items wrap on smaller screens */
@media (min-width:768px) {
  .bw-industry-grid>.col:not(:nth-child(4n+1)) {
    border-left: 1px solid rgba(14, 27, 46, .12);
  }
}

.bw-btn-outline {
  border: 1.5px solid #0E1B2E;
  color: #0E1B2E;
  transition: background .25s ease, color .25s ease;
}

.bw-btn-outline:hover {
  background: #0E1B2E;
  color: #fff;
}



/* ===============================
   SOLUTION SECTION
================================ */

.solution-section {
  padding: 50px 0;
  background: var(--cream);
}

.solution-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(14, 27, 46, 0.05);
}


/* LEFT CONTENT */

.solution-content {
  padding: 55px 20px 30px 45px;
}

.solution-tag {
  display: inline-block;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.solution-content h2 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 18px;
}

.solution-content h2 span {
  color: var(--orange-500);
}

.solution-content p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-600);
  margin: 0;
}


/* RIGHT IMAGE */

.solution-image {
  height: 100%;
  min-height: 380px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.solution-image img {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
}


/* FEATURES */

.solution-features {
  padding: 25px 45px 40px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}


/* ICON */

.feature-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gray-200);
  border-radius: 50%;

  background: var(--white);
  color: var(--navy-900);

  font-size: 21px;

  box-shadow: 0 5px 20px rgba(14, 27, 46, 0.08);

  transition: all 0.3s ease;
}

.solution-feature:hover .feature-icon {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-4px);
}


/* FEATURE CONTENT */

.feature-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .solution-section {
    padding: 40px 0;
  }

  .solution-content {
    padding: 50px 40px 20px;
    text-align: center;
  }

  .solution-content p {
    margin: 0 auto;
  }

  .solution-image {
    min-height: auto;
    padding: 20px 40px 40px;
  }

  .solution-features {
    padding: 30px 40px 45px;
  }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 767.98px) {


  .solution-wrapper {
    border-radius: 14px;
  }

  .solution-content {
    padding: 35px 20px 15px;
    text-align: left;
  }

  .solution-content h2 {
    font-size: 32px;
  }

  .solution-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .solution-image {
    padding: 10px 15px 25px;
  }

  .solution-features {
    padding: 25px 20px 35px;
  }

  .solution-feature {
    gap: 14px;
  }

}


/* SMALL MOBILE */

@media (max-width: 400px) {

  .solution-content h2 {
    font-size: 28px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }

  .feature-content h5 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 12px;
  }

}




/* =================================
   WHAT WE DO SECTION
================================= */

.what-we-do-section {
  /* padding: 90px 0; */
  background: var(--cream);
}


/* HEADING */

.what-we-do-heading {
  max-width: 950px;
  margin: 0 auto 45px;
}

.section-label {
  display: block;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.what-we-do-heading h2 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.what-we-do-heading h2 span {
  color: var(--orange-500);
}

.what-we-do-heading p {
  margin: 0;
  color: var(--gray-500);
  font-size: 16px;
}


/* CARD */

.expertise-card {
  height: 100%;
  min-height: 295px;

  padding: 32px;

  background: var(--white);

  border: 1px solid var(--gray-200);
  border-radius: 18px;

  box-shadow: 0 8px 25px rgba(14, 27, 46, 0.05);

  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expertise-card:hover {
  transform: translateY(-7px);
  border-color: var(--orange-500);
  box-shadow: 0 18px 40px rgba(14, 27, 46, 0.1);
}


/* ICON */

.expertise-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 12px;

  background: #edf7f5;
  color: #0f766e;

  font-size: 27px;

  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  background: var(--orange-50);
  color: var(--orange-500);
}


/* CARD CONTENT */

.expertise-card h3 {
  color: var(--navy-900);

  font-size: 23px;
  font-weight: 700;

  margin-bottom: 15px;
}

.expertise-card p {
  color: var(--gray-500);

  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 22px;
}


/* LINK */

.expertise-card a {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--orange-500);

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
}

.expertise-card a i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.expertise-card a:hover i {
  transform: translateX(6px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

  .what-we-do-section {
    padding: 10px 0;
  }

  .what-we-do-heading h2 {
    font-size: 28px;
  }

  .solution-content h2 {
    font-size: 28px;
  }

  .expertise-card {
    min-height: 280px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

  /* .what-we-do-section {
    padding: 40px 0;
  } */

  .what-we-do-heading {
    margin-bottom: 30px;
  }

  .what-we-do-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .what-we-do-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .expertise-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .expertise-card h3 {
    font-size: 21px;
  }

  .expertise-card p {
    font-size: 14px;
  }

  .expertise-icon {
    width: 52px;
    height: 52px;
    font-size: 23px;
    margin-bottom: 20px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

  .what-we-do-heading h2 {
    font-size: 25px;
  }

  .expertise-card {
    padding: 22px 18px;
  }

}


/* =========================================
   INSIGHTS & RESOURCES SECTION
========================================= */

.insights-section {
  /* padding: 90px 0; */
  background: var(--cream);
}


/* HEADER */

.insights-header {
  margin-bottom: 35px;
  margin-top: 50px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy-600);
  margin-bottom: 14px;
}

.insights-header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}

.insights-header h2 span {
  color: var(--orange-500);
}


/* VIEW ALL BUTTON */

.view-insights-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--orange-500);
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.view-insights-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.view-insights-btn:hover {
  color: var(--orange-600);
}

.view-insights-btn:hover i {
  transform: translateX(6px);
}


/* =========================================
   CARD
========================================= */

.insight-card {
  height: 100%;

  background: var(--white);

  border: 1px solid var(--gray-200);
  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(14, 27, 46, 0.06);

  transition: all 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 27, 46, 0.12);
}


/* IMAGE */

.insight-image {
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.06);
}


/* CONTENT */

.insight-content {
  padding: 26px 28px 25px;
}

.insight-category {
  display: block;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: var(--navy-600);

  margin-bottom: 14px;
}

.insight-content h3 {
  color: var(--navy-900);

  font-size: 23px;
  /* font-weight: 700; */
  line-height: 1.4;

  margin-bottom: 22px;
}


/* META */

.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--gray-500);

  font-size: 13px;
  font-weight: 400;
}

.meta-dot {
  color: var(--orange-500);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  /* .insights-section {
    padding: 70px 0;
  } */

  .insights-header h2 {
    font-size: 34px;
  }

  .insight-image {
    height: 210px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .insights-section {
    padding: 55px 0;
  }

  .insights-header {
    margin-bottom: 28px;
  }

  .section-label {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .insights-header h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .view-insights-btn {
    font-size: 14px;
  }

  .insight-image {
    height: 190px;
  }

  .insight-content {
    padding: 22px 20px;
  }

  .insight-content h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .insights-header h2 {
    font-size: 25px;
  }

  .insight-image {
    height: 175px;
  }

  .insight-meta {
    font-size: 12px;
    gap: 7px;
  }

}


/* =========================================
   FOOTER
========================================= */

.bw-footer {
  background: var(--cream);
  padding: 0 0 35px;
}


/* =========================================
   CTA BOX
========================================= */

.bw-footer-cta {
  position: relative;
  z-index: 2;

  background: var(--navy-900);

  border-radius: 18px 18px 0 0;

  padding: 38px 65px 30px;

  overflow: hidden;
}

.bw-cta-text {
  position: relative;
  z-index: 2;
}

.bw-cta-text p {
  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  font-weight: 400;

  margin-bottom: 8px;
}

.bw-cta-text h2 {
  color: var(--white);

  font-size: 34px;
  font-weight: 700;

  line-height: 1.35;

  margin: 0;
}

.bw-cta-text h2 span {
  color: var(--orange-500);
}


/* =========================================
   SVG FLIGHT
========================================= */

.bw-flight-animation {
  width: 100%;
  height: 170px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-flight-svg {
  width: 100%;
  height: auto;

  overflow: visible;
}


/* =========================================
   CTA BUTTON
========================================= */

.bw-cta-button-wrap {
  display: flex;
  justify-content: flex-end;
}

.bw-cta-button {
  min-width: 260px;

  padding: 18px 26px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  background: var(--orange-500);

  color: var(--white);

  text-decoration: none;

  border-radius: 7px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(255, 90, 31, 0.22);
}

.bw-cta-button:hover {
  color: var(--white);

  background: var(--orange-600);

  transform: translateY(-3px);
}

.bw-cta-button i {
  transition: 0.3s ease;
}

.bw-cta-button:hover i {
  transform: translateX(5px);
}

/* =========================================
   BRAINWELD FOOTER
========================================= */

.bw-footer {
  background: var(--cream);
  padding: 20px 0 0;
}


/* ================= CTA ================= */

.bw-footer-cta {
  min-height: 220px;
  background: var(--navy-900);
  border-radius: 20px 20px 0 0;

  position: relative;
  overflow: hidden;

  padding: 38px 6%;

  display: flex;
  align-items: center;
}


/* left text */

.bw-footer-cta-content {
  position: relative;
  z-index: 4;
}

.bw-footer-cta-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  margin-bottom: 8px;
}

.bw-footer-cta-content h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
  font-weight: 700;
  margin: 0;
}

.bw-footer-cta-content h2 span {
  color: var(--orange-500);
}


/* ================= FLIGHT PATH ================= */

.bw-flight-path {
  position: absolute;

  left: 34%;
  bottom: 0;

  width: 48%;
  height: 160px;

  pointer-events: none;
}

.bw-flight-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bw-flight-line {
  fill: none;

  stroke: var(--orange-500);
  stroke-width: 4;

  stroke-linecap: round;

  stroke-dasharray: 3 12;

  animation: bwFlightDash 2s linear infinite;
}

@keyframes bwFlightDash {

  to {
    stroke-dashoffset: -70;
  }

}


/* moving orange dot */

.bw-flight-dot {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--orange-500);

  box-shadow:
    0 0 8px rgba(255, 90, 31, .8),
    0 0 16px rgba(255, 90, 31, .4);

  animation: bwFlyingDot 4s ease-in-out infinite;
}

@keyframes bwFlyingDot {

  0% {
    left: 0%;
    top: 62%;
  }

  20% {
    left: 20%;
    top: 78%;
  }

  40% {
    left: 42%;
    top: 38%;
  }

  60% {
    left: 62%;
    top: 72%;
  }

  80% {
    left: 82%;
    top: 55%;
  }

  100% {
    left: 100%;
    top: 35%;
  }

}


/* ================= PAPER PLANE ================= */

.bw-paper-plane {
  position: absolute;

  left: 30%;
  top: 22px;

  width: 150px;

  z-index: 5;

  animation: bwPlaneFloat 3.5s ease-in-out infinite;
}

.bw-paper-plane svg {
  width: 100%;
  display: block;

  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .35));
}

@keyframes bwPlaneFloat {

  0%,
  100% {
    transform:
      translateY(0) rotate(-3deg);
  }

  50% {
    transform:
      translateY(-10px) rotate(2deg);
  }

}


/* ================= BUTTON ================= */

.bw-footer-btn {
  position: absolute;

  right: 6%;
  top: 50%;

  transform: translateY(-50%);

  z-index: 6;

  min-width: 265px;

  padding: 18px 28px;

  border-radius: 8px;

  color: #fff;

  font-size: 17px;
  font-weight: 700;

  background: var(--orange-500);

  box-shadow:
    0 10px 25px rgba(255, 90, 31, .25);

  transition: .3s ease;
}

.bw-footer-btn span {
  margin-left: 16px;
  font-size: 22px;
}

.bw-footer-btn:hover {

  background: var(--orange-600);

  color: #fff;

  transform:
    translateY(-50%) translateY(-4px);
}


/* ================= MAIN FOOTER ================= */

.bw-footer-main {

  background: #07162a;

  color: #fff;

  padding: 45px 6% 25px;

  /* border-radius: 0 0 20px 20px; */

  position: relative;
}


/* ================= BRAND ================= */
/* ================= BRAND ================= */

.bw-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}


/* LOGO */

.bw-footer-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-footer-logo img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}


/* TEXT */

.bw-footer-brand>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* BrainWeld */

.bw-footer-brand h3 {
  font-size: 1.28rem;
  line-height: 1.1;
  margin: 0 0 3px;
  color: #fff;
  font-weight: 700;
}


/* Think. Build. Scale. */

.bw-footer-brand p {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, .75);
  text-align: left;
}

.bw-footer-brand p span {
  color: var(--orange-500);
}


.bw-footer-brand {

  display: flex;
  align-items: center;

  gap: 14px;

  text-decoration: none;

  color: #fff;

  margin-bottom: 20px;
}

.bw-footer-logo {

  position: relative;

  width: 44px;
  height: 44px;

  font-size: 58px;

  line-height: 70px;

  font-weight: 400;
  text-align: center;
}

.bw-footer-logo span {

  position: absolute;

  color: #fff;

  left: 0;
  top: 0;
}

.bw-footer-logo strong {

  position: absolute;

  color: var(--orange-500);

  left: 28px;
  top: 17px;

  font-size: 50px;
}


.bw-footer-brand p {

  margin: 0;

  font-size: 9px;

  color: rgba(255, 255, 255, .75);
  text-align: right;
}



.bw-footer-about {

  max-width: 310px;

  font-size: 15px;

  line-height: 1.8;

  color: rgba(255, 255, 255, .72);

  margin-bottom: 22px;
}


/* ================= SOCIAL ================= */

.bw-social-links {

  display: flex;

  gap: 12px;

  margin-bottom: 25px;
}

.bw-social-links a {

  width: 48px;
  height: 48px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  border: 2px solid rgba(255, 255, 255, .25);

  text-decoration: none;

  font-size: 19px;

  transition: .3s ease;
}

.bw-social-links a:hover {

  background: var(--orange-500);

  border-color: var(--orange-500);

  transform: translateY(-4px);
}


.bw-copyright {

  color: rgba(255, 255, 255, .6);

  font-size: 14px;

  margin: 0;
}


/* ================= LINKS ================= */

.bw-footer-links {

  display: flex;

  flex-direction: column;

  gap: 11px;
}

.bw-footer-links h5 {

  font-size: 14px;

  color: rgba(255, 255, 255, .8);

  margin-bottom: 10px;

  font-weight: 700;
}

.bw-footer-links a {

  color: rgba(255, 255, 255, .78);

  text-decoration: none;

  font-size: 15px;

  transition: .25s ease;
}

.bw-footer-links a:hover {

  color: var(--orange-500);

  transform: translateX(4px);
}


/* ================= BOTTOM ================= */

.bw-footer-bottom {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 25px;

  margin-top: 20px;

  font-size: 14px;
}

.bw-footer-bottom a {

  color: rgba(255, 255, 255, .65);

  text-decoration: none;
}

.bw-footer-bottom a:hover {
  color: var(--orange-500);
}

.bw-footer-bottom span {

  width: 1px;
  height: 18px;

  background: rgba(255, 255, 255, .3);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199.98px) {

  .bw-footer-cta {

    min-height: 210px;

    padding-left: 5%;
    padding-right: 5%;
  }

  .bw-flight-path {

    left: 37%;

    width: 42%;
  }

  .bw-paper-plane {

    left: 53%;

    width: 120px;
  }

  .bw-footer-btn {

    right: 4%;

    min-width: 220px;

    font-size: 15px;

    padding: 16px 20px;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-footer-cta {

    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;

    padding: 38px 30px;
  }

  .bw-footer-cta-content {

    max-width: 600px;
  }

  .bw-flight-path {

    left: 5%;

    width: 90%;

    bottom: 55px;

    height: 130px;
  }

  .bw-paper-plane {

    left: 50%;

    top: 160px;

    width: 120px;

    transform: translateX(-50%);
  }

  .bw-footer-btn {

    top: auto;

    bottom: 25px;

    right: 30px;

    transform: none;
  }

  .bw-footer-btn:hover {

    transform: translateY(-4px);
  }

  .bw-footer-main {

    padding: 45px 30px 25px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .bw-footer {

    padding: 10px 0 0;
  }

  .bw-footer-cta {

    min-height: 480px;

    border-radius: 16px 16px 0 0;

    padding: 32px 22px;

    text-align: center;

    align-items: center;
  }

  .bw-footer-cta-content p {

    font-size: 14px;
  }

  .bw-footer-cta-content h2 {

    font-size: 30px;
  }

  .bw-paper-plane {

    top: 175px;

    width: 110px;
  }

  .bw-flight-path {

    bottom: 115px;

    left: 0;

    width: 100%;

    height: 130px;
  }

  .bw-footer-btn {

    bottom: 28px;

    right: auto;

    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 44px);

    min-width: auto;
  }

  .bw-footer-btn:hover {

    transform:
      translateX(-50%) translateY(-4px);
  }

  .bw-footer-main {

    padding: 40px 22px 25px;

    /* border-radius: 0 0 16px 16px; */
  }

  .bw-footer-bottom {

    justify-content: center;

    margin-top: 35px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

  .bw-footer-cta {

    min-height: 450px;
  }

  .bw-footer-cta-content h2 {

    font-size: 26px;

    line-height: 1.3;
  }

  .bw-footer-cta-content p {

    font-size: 13px;
  }

  .bw-paper-plane {

    top: 160px;

    width: 90px;
  }

  .bw-flight-path {

    height: 110px;

    bottom: 105px;
  }

  .bw-footer-btn {

    padding: 15px;

    font-size: 15px;
  }

  .bw-footer-brand h3 {

    font-size: 24px;
  }

  .bw-footer-about {

    font-size: 14px;
  }

  .bw-social-links a {

    width: 44px;
    height: 44px;
  }

  .bw-footer-links h5 {

    font-size: 13px;
  }

  .bw-footer-links a {

    font-size: 14px;
  }

}


/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width: 380px) {

  .bw-footer-cta {

    min-height: 430px;

    padding-left: 16px;
    padding-right: 16px;
  }

  .bw-footer-cta-content h2 {

    font-size: 23px;
  }

  .bw-paper-plane {

    width: 75px;

    top: 145px;
  }

  .bw-footer-main {

    padding-left: 16px;
    padding-right: 16px;
  }

  .bw-footer-bottom {

    gap: 15px;

    font-size: 12px;
  }

}




/* new replace footer css */
/* =====================================
   CTA BANNER
===================================== */

.bw-cta-banner {
  padding: 20px 0 0;
  background: #f7f7f7;
}

.bw-cta-card {
  position: relative;
  overflow: hidden;

  min-height: 215px;

  padding: 38px 65px;

  background:
    radial-gradient(circle at 65% 70%,
      rgba(30, 70, 110, 0.12),
      transparent 35%),
    #061426;

  border-radius: 15px 15px 0 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
}


/* =====================================
   TEXT
===================================== */

.bw-cta-content {
  position: relative;
  z-index: 5;
}

.bw-cta-small {
  margin: 0 0 8px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  font-weight: 500;
}

.bw-cta-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 3vw, 40px);

  font-weight: 700;

  line-height: 1.28;
}

.bw-cta-content h2 span {
  color: #ff5a1f;
}


/* =====================================
   FLIGHT DOTTED LINE
===================================== */

.bw-flight-svg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 2;

  pointer-events: none;
}

.bw-flight-line {
  fill: none;

  stroke: #ff5a1f;

  stroke-width: 2.8;

  stroke-linecap: round;

  stroke-dasharray: 2 9;

  opacity: 0.85;

  animation: bw-flight-move 2.5s linear infinite;
}

@keyframes bw-flight-move {

  to {
    stroke-dashoffset: -80;
  }

}

/* =====================================
   MOVING DOTS ON MAIN PATH
===================================== */

.bw-flying-dot {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff5a1f;

  box-shadow:
    0 0 8px #ff5a1f,
    0 0 16px rgba(255, 90, 31, 0.8);

  z-index: 4;

  animation: bw-main-dot 4s linear infinite;
}

.bw-dot-1 {
  left: 42%;
  top: 78%;
}

.bw-dot-2 {
  left: 72%;
  top: 75%;

  animation-delay: 2s;
}

@keyframes bw-main-dot {

  0% {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateX(170px);
    opacity: 0;
  }

}


/* =====================================
   PAPER PLANE
===================================== */

.bw-plane-wrap {
  position: relative;

  z-index: 5;

  display: flex;

  justify-content: center;
  align-items: center;
}

.bw-paper-plane {
  width: 150px;

  height: auto;

  position: relative;

  z-index: 2;

  filter:
    drop-shadow(0 12px 14px rgba(0, 0, 0, 0.28));

  animation: bw-plane-float 3s ease-in-out infinite;
}

@keyframes bw-plane-float {

  0%,
  100% {
    transform:
      translateY(0) rotate(-5deg);
  }

  50% {
    transform:
      translateY(-8px) rotate(-3deg);
  }

}


/* =====================================
   MOVING DOT ON PLANE
===================================== */

.bw-plane-moving-dot {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff5a1f;

  box-shadow:
    0 0 8px #ff5a1f,
    0 0 15px rgba(255, 90, 31, 0.8);

  z-index: 6;

  animation: bw-plane-dot-line 2.8s linear infinite;
}

@keyframes bw-plane-dot-line {

  0% {
    left: 25%;
    top: 68%;

    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  50% {
    left: 50%;
    top: 42%;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: 78%;
    top: 12%;

    opacity: 0;
  }

}


/* =====================================
   BUTTON
===================================== */

.bw-cta-btn-wrap {
  position: relative;

  z-index: 6;

  display: flex;

  justify-content: flex-end;
}

.bw-cta-main-btn {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 22px;

  min-width: 270px;

  padding: 19px 30px;

  overflow: hidden;

  background: #ff5a1f;

  border-radius: 7px;

  color: #ffffff;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  box-shadow:
    0 8px 22px rgba(255, 90, 31, 0.3);

  transition: 0.3s ease;
}

.bw-cta-main-btn:hover {
  color: #ffffff;

  transform: translateY(-3px);
}

.bw-btn-text,
.bw-btn-arrow {
  position: relative;

  z-index: 2;
}

.bw-btn-arrow {
  font-size: 25px;

  line-height: 1;
}


/* =====================================
   DOT + LINE EFFECT INSIDE BUTTON
===================================== */

.bw-btn-moving-dot {
  position: absolute;

  left: -20px;

  top: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffffff;

  box-shadow:
    -15px 0 12px rgba(255, 255, 255, 0.7),
    -30px 0 18px rgba(255, 255, 255, 0.35);

  transform: translateY(-50%);

  animation: bw-button-dot-run 2.8s linear infinite;
}

@keyframes bw-button-dot-run {

  0% {
    left: -10%;
    opacity: 0;
  }


  90% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }

}


/* =====================================
   BELOW DESKTOP
   Stop all animation
===================================== */

@media (max-width: 1199.98px) {

  .bw-flight-line,
  .bw-flying-dot,
  .bw-paper-plane,
  .bw-plane-moving-dot,
  .bw-btn-moving-dot {
    animation: none;
  }

}


/* =====================================
   TABLET
   Hide dotted line + dots
===================================== */

@media (max-width: 991.98px) {

  .bw-cta-card {
    padding: 42px 35px;
  }

  .bw-cta-content {
    text-align: center;
  }

  .bw-cta-btn-wrap {
    justify-content: center;

    margin-top: 28px;
  }

  .bw-flight-svg,
  .bw-flying-dot,
  .bw-plane-moving-dot,
  .bw-btn-moving-dot {
    display: none;
  }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767.98px) {

  .bw-cta-banner {
    padding: 15px 0;
  }

  .bw-cta-card {
    padding: 35px 20px;

    border-radius: 12px;
  }

  .bw-cta-small {
    font-size: 14px;
  }

  .bw-cta-content h2 {
    font-size: 30px;
  }

  .bw-cta-main-btn {
    width: 100%;

    max-width: 340px;

    min-width: auto;
  }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 420px) {

  .bw-cta-card {
    padding: 30px 15px;
  }

  .bw-cta-content h2 {
    font-size: 26px;
  }

  .bw-cta-main-btn {
    font-size: 14px;

    padding: 17px 15px;
  }

}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

  .bw-flight-line,
  .bw-flight-dot,
  .bw-paper-plane {

    animation: none !important;
  }

}


@media (min-width: 576px) and (max-width: 991.98px) {

  .bw-journey-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem 1rem;
  }

  .bw-journey-connector {
    display: none !important;
  }

  /* IDEA */
  .bw-journey-step:nth-child(1) {
    grid-column: 1 / span 2 !important;
    grid-row: 1;
  }

  /* STRATEGY */
  .bw-journey-step:nth-child(3) {
    grid-column: 3 / span 2 !important;
    grid-row: 1;
  }

  /* BUILD */
  .bw-journey-step:nth-child(5) {
    grid-column: 5 / span 2 !important;
    grid-row: 1;
  }

  /* GROW */
  .bw-journey-step:nth-child(7) {
    grid-column: 1 / span 3 !important;
    grid-row: 2;
  }

  /* IMPACT */
  .bw-journey-step:nth-child(9) {
    grid-column: 4 / span 3 !important;
    grid-row: 2;
  }

  .bw-journey-step {
    width: 100%;
    min-width: 0;
    padding: 0 .5rem;
  }

}

/* =========================================
   ABOUT HERO SECTION
========================================= */

.bw-about-hero {
  position: relative;
  overflow: hidden;
  /* padding: 70px 0 30px; */
  background: #f7f6f3;
}

.bw-about-main {
  position: relative;
  min-height: 100%;
}


/* =========================================
   LEFT CONTENT
========================================= */

.bw-about-content {
  position: relative;
  z-index: 2;
  padding: 20px 0 40px;
}

.bw-about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;

  color: var(--orange-500);
}

.bw-about-title {
  margin: 0;

  max-width: 590px;

  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;

  color: var(--navy-900);
}

.bw-about-title span {
  color: var(--orange-500);
}

.bw-about-desc {
  max-width: 520px;

  margin: 18px 0 0;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;

  color: #586273;
}


/* =========================================
   FEATURES
========================================= */

.bw-about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  max-width: 520px;

  /* margin-top: 40px; */
}

.bw-about-feature {
  text-align: center;

  color: var(--navy-900);
}

.bw-about-feature-icon {
  width: 48px;
  height: 48px;

  margin: 0 auto 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;

  color: var(--navy-800);

  transition: .3s ease;
}

.bw-about-feature span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.bw-about-feature:hover .bw-about-feature-icon {
  color: var(--orange-500);
  transform: translateY(-4px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.bw-about-visual {
  position: relative;

  min-height: 470px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-about-hero-img {
  display: block;

  width: 100%;
  max-width: 650px;

  height: auto;

  object-fit: contain;
}


/* =========================================
   FLOATING THINK / BUILD / SCALE
========================================= */

.bw-about-floating {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 7px;

  z-index: 3;
}

.bw-about-floating span {
  font-size: 14px;
  font-weight: 700;

  color: var(--navy-900);
}

.bw-float-icon {
  width: 52px;
  height: 52px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--navy-900);

  color: #fff;

  font-size: 22px;

  box-shadow: 0 10px 25px rgba(14, 27, 46, .22);
}


/* THINK */

.bw-about-think {
  top: 8%;
  left: 18%;
}


/* BUILD */

.bw-about-build {
  top: 0;
  left: 52%;
}


/* SCALE */

.bw-about-scale {
  top: 12%;
  right: 14%;
}


/* =========================================
   MISSION VISION CARD
========================================= */

.bw-mission-vision {
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: 1fr 1px 1fr;

  align-items: center;

  /* max-width: 1100px; */

  margin: 0 auto;

  padding: 22px 42px;

  background: rgba(255, 255, 255, .9);

  border: 1px solid rgba(14, 27, 46, .08);

  border-radius: 16px;

  box-shadow:
    0 12px 35px rgba(14, 27, 46, .08);

  backdrop-filter: blur(10px);
}

.bw-mv-item {
  display: flex;
  align-items: center;

  gap: 22px;
}

.bw-mv-icon {
  flex: 0 0 70px;

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--orange-500);

  font-size: 42px;
}

.bw-mv-content h3 {
  margin: 0 0 6px;

  font-size: 19px;
  font-weight: 700;

  color: var(--navy-900);
}

.bw-mv-content p {
  max-width: 380px;

  margin: 0;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;

  color: #596273;
}

.bw-mv-divider {
  width: 1px;
  height: 72px;

  background: #d7dce3;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-about-hero {
    padding: 55px 0 30px;
  }

  .bw-about-content {
    text-align: center;
  }

  .bw-about-title,
  .bw-about-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .bw-about-features {
    margin-left: auto;
    margin-right: auto;
  }

  .bw-about-visual {
    min-height: 420px;
    margin-top: 10px;
  }

  .bw-about-hero-img {
    max-width: 620px;
  }

  .bw-about-think {
    left: 22%;
  }

  .bw-about-build {
    left: 51%;
  }

  .bw-about-scale {
    right: 20%;
  }

  .bw-mission-vision {
    max-width: 720px;
    padding: 22px 28px;
  }

  .bw-mv-item {
    gap: 14px;
  }

  .bw-mv-icon {
    flex-basis: 55px;

    width: 55px;
    height: 55px;

    font-size: 34px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .bw-about-hero {
    padding: 50px 0 25px;
  }

  .bw-about-content {
    padding: 0;
  }

  .bw-about-eyebrow {
    font-size: 12px;
  }

  .bw-about-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .bw-about-desc {
    font-size: 14px;
  }


  /* FEATURES 2 X 2 */

  .bw-about-features {
    grid-template-columns: repeat(2, 1fr);

    gap: 25px 10px;

    max-width: 340px;

    margin-top: 32px;
  }

  .bw-about-feature-icon {
    width: 44px;
    height: 44px;

    font-size: 22px;
  }


  /* IMAGE */

  .bw-about-visual {
    min-height: auto;

    margin-top: 35px;
    padding-top: 20px;
  }

  .bw-about-hero-img {
    width: 100%;
    max-width: 520px;
  }


  /* FLOATING ITEMS */

  .bw-about-floating span {
    font-size: 12px;
  }

  .bw-float-icon {
    width: 42px;
    height: 42px;

    border-radius: 11px;

    font-size: 17px;
  }

  .bw-about-think {
    top: 4%;
    left: 14%;
  }

  .bw-about-build {
    top: -3%;
    left: 50%;
  }

  .bw-about-scale {
    top: 7%;
    right: 10%;
  }


  /* MISSION VISION */

  .bw-mission-vision {
    grid-template-columns: 1fr;

    gap: 25px;

    padding: 25px 20px;

    margin-top: 30px;
  }

  .bw-mv-divider {
    width: 100%;
    height: 1px;
  }

  .bw-mv-item {
    text-align: left;

    gap: 15px;
  }

  .bw-mv-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    font-size: 34px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 399.98px) {

  .bw-about-hero {
    padding-top: 40px;
  }

  .bw-about-title {
    font-size: 29px;
  }

  .bw-about-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .bw-about-features {
    gap: 20px 5px;
  }

  .bw-about-feature span {
    font-size: 12px;
  }

  .bw-about-floating span {
    font-size: 10px;
  }

  .bw-float-icon {
    width: 36px;
    height: 36px;

    font-size: 15px;
  }

  .bw-mv-content h3 {
    font-size: 17px;
  }

  .bw-mv-content p {
    font-size: 12px;
  }

}


/* ===============================
   OUR APPROACH
================================ */

.bw-approach-section {
  padding: 40px 0;
  background: #f7f6f3;
  overflow: hidden;
}

.bw-approach-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 35px;
}

.bw-approach-title span {
  color: var(--orange-500);
}


/* ROW */

.bw-approach-row {
  position: relative;
}


/* ITEM */

.bw-approach-item {
  position: relative;
  z-index: 2;
}


/* ICON */

.bw-approach-icon {
  width: 82px;
  height: 82px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--navy-900);
  color: #fff;

  font-size: 34px;

  box-shadow: 0 8px 20px rgba(14, 27, 46, .12);

  transition: all .3s ease;
}

.bw-approach-item:hover .bw-approach-icon {
  background: var(--orange-500);
  transform: translateY(-5px) scale(1.05);
}


/* TEXT */

.bw-approach-item h3 {
  margin: 12px 0 0;

  font-size: 14px;
  line-height: 1.45;

  color: var(--navy-900);
}


/* ===============================
   DESKTOP DOTTED LINE
================================ */

@media (min-width: 992px) {

  .bw-approach-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 41px;

    left: calc(50% + 48px);
    width: calc(100% - 96px);

    border-top: 2px dotted rgba(14, 27, 46, .25);

    z-index: -1;
  }

}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .bw-approach-row {
    row-gap: 35px;
  }

  .bw-approach-icon {
    width: 74px;
    height: 74px;

    font-size: 30px;
  }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 575.98px) {

  .bw-approach-section {
    padding: 35px 0;
  }

  .bw-approach-row {
    row-gap: 30px;
  }

  .bw-approach-icon {
    width: 64px;
    height: 64px;

    font-size: 26px;
  }

  .bw-approach-item h3 {
    font-size: 12px;
    margin-top: 9px;
  }

}


/* =====================================
   HOW WE HELP SECTION
===================================== */

.bw-help-section {
  padding: 55px 0 65px;
  background: #f7f6f3;
}


/* TITLE */

.bw-help-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 35px;
}


/* CARD */

.bw-help-card {
  position: relative;
  display: flex;

  min-height: 315px;
  padding: 18px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(14, 27, 46, 0.07);
  border-radius: 16px;

  box-shadow: 0 8px 30px rgba(14, 27, 46, 0.06);

  overflow: hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.bw-help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 27, 46, 0.12);
}


/* IMAGE */

.bw-help-image {
  width: 42%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-right: 12px;
}

.bw-help-image img {
  display: block;

  width: 100%;
  max-width: 150px;
  height: auto;

  object-fit: contain;
}


/* CONTENT */

.bw-help-content {
  flex: 1;
  min-width: 0;

  padding-left: 6px;
  padding-right: 18px;
}


/* NUMBER */

.bw-help-number {
  display: block;

  font-size: .82rem;
  font-weight: 700;

  color: var(--navy-900);

  margin-bottom: 2px;
}


/* HEADING */

.bw-help-content h3 {
  font-family: var(--font-display);

  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;

  line-height: 1.35;

  color: var(--orange-500);

  margin: 0 0 8px;
}


/* DESCRIPTION */

.bw-help-content>p {
  font-size: .82rem;
  line-height: 1.65;

  color: var(--navy-800);

  margin-bottom: 14px;
}


/* APPROACH */

.bw-help-content h4 {
  font-size: .82rem;
  font-weight: 700;

  color: var(--navy-900);

  margin: 0 0 6px;
}


/* LIST */

.bw-help-content ul {
  margin: 0;
  padding-left: 16px;
}

.bw-help-content li {
  font-size: .76rem;
  line-height: 1.7;

  color: var(--navy-800);
}


/* ARROW */

.bw-help-arrow {
  position: absolute;

  right: 14px;
  bottom: 14px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--navy-900);
  color: #fff;

  text-decoration: none;

  font-size: .78rem;

  transition:
    background .3s ease,
    transform .3s ease;
}

.bw-help-arrow:hover {
  background: var(--orange-500);
  color: #fff;

  transform: scale(1.1);
}


/* =====================================
   LARGE DESKTOP
===================================== */

@media (min-width: 1400px) {

  .bw-help-card {
    min-height: 315px;
    padding: 20px;
  }

  .bw-help-image img {
    max-width: 165px;
  }

}


/* =====================================
   TABLET
   Bootstrap col-md-6 = 2 CARDS
===================================== */

@media (max-width: 991.98px) {

  .bw-help-card {
    min-height: 300px;
  }

  .bw-help-image {
    width: 40%;
  }

  .bw-help-image img {
    max-width: 130px;
  }

}


/* =====================================
   MOBILE
   Bootstrap col-12 = 1 CARD
===================================== */

@media (max-width: 575.98px) {

  .bw-help-section {
    padding: 40px 0 50px;
  }

  .bw-help-title {
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .bw-help-card {
    min-height: auto;

    padding: 16px;

    flex-direction: row;
    align-items: flex-start;

    border-radius: 14px;
  }

  .bw-help-image {
    width: 36%;
    padding-right: 8px;
  }

  .bw-help-image img {
    width: 100%;
    max-width: 110px;
  }

  .bw-help-content {
    padding-left: 5px;
    padding-right: 20px;
  }

  .bw-help-content h3 {
    font-size: 1rem;
  }

  .bw-help-content>p {
    font-size: .76rem;
    line-height: 1.55;
  }

  .bw-help-content li {
    font-size: .7rem;
    line-height: 1.6;
  }

}


/* =====================================
   VERY SMALL MOBILE
===================================== */

@media (max-width: 399.98px) {

  .bw-help-card {
    flex-direction: column;
  }

  .bw-help-image {
    width: 100%;
    justify-content: center;

    padding: 0;
    margin-bottom: 8px;
  }

  .bw-help-image img {
    max-width: 125px;
  }

  .bw-help-content {
    width: 100%;
    padding: 0 20px 0 0;
  }

}


/* ================================
   WHY BUSINESSES CHOOSE BRAINWELD
================================ */

.bw-choose-section {
  padding: 28px 0 18px;
  background: #f8f8f7;
}

/* Heading */

.bw-choose-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}


/* Main Grid */

.bw-choose-grid {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
}


/* Individual Card */

.bw-choose-card {
  position: relative;

  min-height: 156px;

  padding: 24px 16px 18px;

  background: #07182f;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, .35);

  transition:
    background .3s ease,
    transform .3s ease;
}


/* Last card desktop */

.bw-last-card {
  border-right: none;
}


/* Icon */

.bw-choose-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;

  color: var(--orange-500);

  font-size: 2.65rem;

  line-height: 1;
}

.bw-choose-icon i {
  display: block;
}


/* Text */

.bw-choose-card h3 {
  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(.88rem, 1.1vw, 1rem);

  line-height: 1.5;

  font-weight: 600;

  color: #fff;
}


/* Hover */

.bw-choose-card:hover {
  background: #0b2343;
}

.bw-choose-card:hover .bw-choose-icon {
  transform: translateY(-4px);
}

.bw-choose-icon {
  transition: transform .3s ease;
}


/* =================================
   TABLET
================================= */

@media (max-width: 991.98px) {

  .bw-choose-section {
    padding: 35px 0;
  }

  .bw-choose-card {
    min-height: 170px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }

  /* 6th card */
  .bw-last-card {
    border-right: none;
  }

}


/* =================================
   MOBILE / SMALL TABLET
================================= */

@media (max-width: 575.98px) {

  .bw-choose-section {
    padding: 28px 0;
  }

  .bw-choose-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .bw-choose-card {
    min-height: 145px;
    padding: 18px 10px;
  }

  .bw-choose-icon {
    width: 50px;
    height: 50px;

    font-size: 2.15rem;

    margin-bottom: 8px;
  }

  .bw-choose-card h3 {
    font-size: .85rem;
    line-height: 1.45;
  }

}


/* =================================
   VERY SMALL MOBILE
================================= */

@media (max-width: 399.98px) {

  .bw-choose-card {
    min-height: 135px;
    padding: 15px 7px;
  }

  .bw-choose-icon {
    font-size: 1.9rem;
    margin-bottom: 7px;
  }

  .bw-choose-card h3 {
    font-size: .78rem;
  }

}

/* =========================================
   JOURNEY CTA SECTION
========================================= */

.bw-journey-cta {
  padding: 20px 0;
  background: #f7f7f5;
}

.bw-journey-cta-box {
  position: relative;
  overflow: hidden;

  padding: 30px 62px;

  border-radius: 22px;

  background:
    radial-gradient(circle at 75% 50%,
      rgba(27, 61, 105, .45) 0%,
      rgba(8, 27, 53, 0) 38%),
    #07182f;

  box-shadow:
    0 15px 40px rgba(6, 21, 42, .15);
}


/* =========================================
   LEFT CONTENT
========================================= */

.bw-journey-content {
  position: relative;
  z-index: 3;
}

.bw-journey-content h2 {
  margin: 0;

  max-width: 570px;

  color: rgba(255, 255, 255, .84);

  font-family: var(--font-display);

  font-size: 18px;

  font-weight: 600;

  line-height: 1.42;
}

.bw-journey-content h3 {
  margin: 20px 0 24px;

  color: var(--orange-500);

  font-family: var(--font-display);

  font-size: 16px;

  font-weight: 700;

  line-height: 1.3;
}


/* Button */

.bw-journey-btn {
  min-width: 248px;

  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  color: #fff;
  background: var(--orange-500);

  text-decoration: none;

  font-weight: 700;
  font-size: .95rem;

  border-radius: 4px;

  box-shadow:
    0 8px 18px rgba(255, 90, 31, .28);

  transition:
    transform .25s ease,
    background .25s ease;
}

.bw-journey-btn:hover {
  color: #fff;
  background: var(--orange-600);

  transform: translateY(-3px);
}

.bw-journey-btn i {
  font-size: 1rem;

  transition: transform .25s ease;
}

.bw-journey-btn:hover i {
  transform: translateX(5px);
}


/* =========================================
   RIGHT JOURNEY FLOW
========================================= */

.bw-journey-flow {
  position: relative;

  min-height: 220px;

  display: flex;
  align-items: center;
}


/* SVG dotted line */

.bw-journey-line {
  position: absolute;

  left: 4%;
  right: 2%;

  top: 42%;

  width: 94%;
  height: 170px;

  pointer-events: none;

  z-index: 0;
}


/* Individual items */

.bw-flow-item {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: center;
}


/* Screenshot jaisa different heights */

.bw-flow-idea {
  transform: translateY(24px);
}

.bw-flow-strategy {
  transform: translateY(-8px);
}

.bw-flow-build {
  transform: translateY(-28px);
}

.bw-flow-scale {
  transform: translateY(-55px);
}


/* Label */

.bw-flow-label {
  display: block;

  margin-bottom: 8px;

  color: rgba(255, 255, 255, .78);

  font-size: .88rem;

  font-weight: 700;

  text-align: center;
}


/* Icon Card */

.bw-flow-card {
  width: clamp(74px, 7vw, 104px);
  aspect-ratio: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  border-radius: 20px;

  background:
    linear-gradient(145deg,
      #12345d,
      #07182f);

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    0 14px 24px rgba(0, 0, 0, .3),
    inset 0 1px rgba(255, 255, 255, .1);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


/* Icon */

.bw-flow-card i {
  color: #fff;

  font-size: clamp(1.7rem, 2.6vw, 3rem);
}


/* White base below each icon */

.bw-flow-card::after {
  content: "";

  position: absolute;

  width: 125%;
  height: 28px;

  left: 50%;
  bottom: -22px;

  transform:
    translateX(-50%) perspective(80px) rotateX(45deg);

  background:
    linear-gradient(180deg,
      #f8f8f5,
      #bfc8d3);

  border-radius: 50%;

  box-shadow:
    0 7px 12px rgba(0, 0, 0, .28);

  z-index: -1;
}


/* Hover */

.bw-flow-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 20px 35px rgba(0, 0, 0, .4),
    inset 0 1px rgba(255, 255, 255, .14);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-journey-cta-box {
    padding: 35px;
  }

  .bw-journey-content {
    text-align: center;
  }

  .bw-journey-content h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .bw-journey-flow {
    margin-top: 25px;
    min-height: 220px;
  }

  .bw-flow-idea {
    transform: translateY(22px);
  }

  .bw-flow-strategy {
    transform: translateY(0);
  }

  .bw-flow-build {
    transform: translateY(-20px);
  }

  .bw-flow-scale {
    transform: translateY(-42px);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .bw-journey-cta {
    padding: 12px 0;
  }

  .bw-journey-cta-box {
    padding: 28px 18px;

    border-radius: 16px;
  }

  .bw-journey-content h2 {
    font-size: 1.12rem;
  }

  .bw-journey-content h3 {
    margin: 16px 0 20px;

    font-size: 1.35rem;
  }


  /* Button full width but container se chipkega nahi */

  .bw-journey-btn {
    width: 100%;

    min-width: 0;

    padding: 15px 20px;
  }


  /* Mobile Journey */

  .bw-journey-flow {
    min-height: auto;

    margin-top: 35px;
  }

  .bw-journey-line {
    display: none;
  }


  /* Mobile me 2 x 2 clean layout */

  .bw-flow-item,
  .bw-flow-idea,
  .bw-flow-strategy,
  .bw-flow-build,
  .bw-flow-scale {
    transform: none;
  }

  .bw-flow-item {
    margin-bottom: 30px;
  }

  .bw-flow-card {
    width: 76px;

    border-radius: 17px;
  }

  .bw-flow-label {
    font-size: .78rem;

    margin-bottom: 7px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

  .bw-journey-cta-box {
    padding: 24px 14px;
  }

  .bw-flow-card {
    width: 64px;
    border-radius: 15px;
  }

  .bw-flow-card i {
    font-size: 1.55rem;
  }

  .bw-flow-label {
    font-size: .7rem;
  }

}

/* =========================================
   CONTACT HERO
========================================= */

.bw-contact-hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.bw-contact-hero-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eef2f7;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.bw-contact-hero-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}


/* =========================================
   LEFT LIGHT OVERLAY
========================================= */

.bw-contact-hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(255, 255, 255, .93) 20%,
      rgba(255, 255, 255, .72) 36%,
      rgba(255, 255, 255, .30) 50%,
      rgba(255, 255, 255, .05) 67%,
      rgba(255, 255, 255, 0) 100%);
}


/* =========================================
   CONTAINER
========================================= */

.bw-contact-container {
  position: relative;
  z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.bw-contact-content {
  max-width: 620px;
}

.bw-contact-label {
  display: inline-block;

  margin-bottom: 16px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;

  color: var(--orange-500);
}


.bw-contact-title {
  margin: 0;

  font-family: var(--font-display);
  /* font-size: clamp(2.4rem, 4vw, 4.1rem); */
  font-weight: 700;

  line-height: 1.18;
  letter-spacing: -.02em;

  color: var(--navy-900);
}

.bw-contact-title span {
  color: var(--orange-500);
}


.bw-contact-desc {
  max-width: 510px;

  margin: 24px 0 38px;

  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.65;

  color: #4e5968;
}


/* =========================================
   FEATURES
========================================= */

.bw-contact-features {
  max-width: 620px;
}

.bw-contact-feature {
  position: relative;

  min-height: 130px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: flex-start;

  text-align: center;

  padding: 0 12px;
}


/* DESKTOP VERTICAL LINE */

.bw-contact-feature::after {
  content: "";

  position: absolute;

  top: 5px;
  right: 0;

  width: 1px;
  height: 78px;

  background: rgba(25, 42, 62, .16);
}

.bw-contact-feature-last::after {
  display: none;
}


/* ICON */

.bw-contact-icon {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;

  background: rgba(255, 255, 255, .55);

  color: var(--navy-900);

  font-size: 26px;

  box-shadow:
    0 8px 24px rgba(30, 45, 65, .08);

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}

.bw-contact-feature:hover .bw-contact-icon {
  transform: translateY(-5px);
  background: var(--orange-500);
  color: #fff;
}


.bw-contact-feature p {
  margin: 0;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.55;

  color: var(--navy-900);
}

@media (max-width: 767.98px) {

  .bw-contact-hero {
    height: 100svh;
    min-height: 680px;
  }

  .bw-contact-hero-img {
    object-position: 62% center;
  }

  .bw-contact-hero-overlay {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .98) 0%,
        rgba(255, 255, 255, .94) 42%,
        rgba(255, 255, 255, .65) 65%,
        rgba(255, 255, 255, .20) 100%);
  }

  .bw-contact-content {
    padding-top: 70px;
  }

  .bw-contact-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.16;
  }

  .bw-contact-desc {
    margin: 18px 0 30px;
    max-width: 450px;
  }

  .bw-contact-feature {
    min-height: 115px;
    margin-bottom: 18px;
  }

  .bw-contact-icon {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .bw-contact-feature p {
    font-size: 13px;
  }

  /* Mobile par 2-2 items */
  .bw-contact-feature::after {
    display: none;
  }

}

@media (max-width: 575.98px) {

  .bw-contact-hero {
    min-height: 650px;
  }

  .bw-contact-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bw-contact-content {
    padding-top: 55px;
  }

  .bw-contact-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .bw-contact-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .bw-contact-desc {
    font-size: .9rem;
    margin-bottom: 24px;
  }

  .bw-contact-feature {
    min-height: 105px;
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .bw-contact-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 8px;

    font-size: 20px;
  }

  .bw-contact-feature p {
    font-size: 12px;
    line-height: 1.45;
  }

}

/* =========================================
   CONTACT FORM SECTION
========================================= */

.bw-contact-form-section {
  position: relative;
  padding: 80px 0;
  background: #f7f8fa;
}


/* MAIN BOX */

.bw-contact-form-box {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 40, 65, 0.08);
  border-radius: 24px;

  padding: 40px 48px;

  box-shadow:
    0 20px 60px rgba(15, 32, 55, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* =========================================
   LEFT SIDE
========================================= */

.bw-contact-eyebrow {
  display: inline-block;

  color: var(--orange-500);
  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  margin-bottom: 14px;
}


.bw-contact-title {
  font-family: var(--font-display);

  color: var(--navy-900);

  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.25;

  font-weight: 700;

  margin-bottom: 18px;
}



.bw-contact-desc {
  color: var(--gray-500);

  font-size: 0.98rem;
  line-height: 1.65;

  max-width: 300px;

  margin-bottom: 38px;
}


/* POINTS */

.bw-contact-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
}


.bw-contact-point {
  display: flex;
  align-items: center;
  gap: 18px;
}


.bw-contact-point-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy-900);

  font-size: 1.45rem;
}


.bw-contact-point p {
  margin: 0;

  color: var(--gray-500);

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.65;
}


/* =========================================
   FORM
========================================= */

.bw-contact-form {
  width: 100%;
}


.bw-form-control {
  width: 100%;

  border: 1px solid var(--gray-200);
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.75);

  color: var(--navy-900);

  font-size: 0.92rem;
  font-weight: 500;

  box-shadow: none;

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}


input.bw-form-control {
  height: 70px;
  padding: 0 28px;
}


.bw-form-control::placeholder {
  color: #7b8491;
  opacity: 1;
}


.bw-form-control:focus {
  border-color: var(--orange-500);

  box-shadow:
    0 0 0 4px rgba(255, 90, 31, 0.08);

  background: #fff;
}


/* =========================================
   SELECT
========================================= */

.bw-select-wrap,
.bw-textarea-wrap {
  position: relative;
}


.bw-select-wrap label,
.bw-textarea-wrap label {
  position: absolute;

  top: 14px;
  left: 28px;

  z-index: 2;

  color: #6f7885;

  font-size: 0.76rem;
  font-weight: 600;

  pointer-events: none;
}


.bw-select {
  height: 76px;

  padding:
    32px 48px 10px 28px;

  color: var(--navy-900);

  appearance: auto;
}


/* =========================================
   TEXTAREA
========================================= */

.bw-textarea {
  height: 160px;

  resize: vertical;

  padding:
    50px 28px 20px;
}


/* =========================================
   BOTTOM AREA
========================================= */

.bw-form-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 4px;
}


/* FILE UPLOAD */

.bw-file-upload {
  display: flex;

  align-items: flex-start;
  gap: 12px;

  cursor: pointer;

  color: var(--navy-900);
}


.bw-file-upload input {
  display: none;
}


.bw-file-upload i {
  color: var(--navy-900);

  font-size: 1rem;

  margin-top: 4px;
}


.bw-file-upload strong {
  display: block;

  font-size: 0.88rem;
  font-weight: 600;

  margin-bottom: 4px;
}


.bw-file-upload small {
  display: block;

  color: var(--gray-500);

  font-size: 0.72rem;
}


/* SEND BUTTON */

.bw-send-btn {
  min-width: 200px;
  height: 52px;

  border: none;
  border-radius: 6px;

  background: var(--orange-500);

  color: var(--white);

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 0 28px;

  font-size: 0.95rem;
  font-weight: 700;

  box-shadow:
    0 8px 22px rgba(255, 90, 31, 0.25);

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}


.bw-send-btn:hover {
  background: var(--orange-600);

  color: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(255, 90, 31, 0.35);
}


.bw-send-btn i {
  transition: transform .25s ease;
}


.bw-send-btn:hover i {
  transform: translateX(5px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-contact-form-section {
    padding: 60px 0;
  }


  .bw-contact-form-box {
    padding: 36px;
  }


  .bw-contact-desc {
    max-width: 100%;
  }


  .bw-contact-points {
    flex-direction: row;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 10px;
  }


  .bw-contact-point {
    flex: 1 1 30%;
    min-width: 200px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .bw-contact-form-section {
    padding: 45px 0;
  }


  .bw-contact-form-box {
    padding: 28px 22px;

    border-radius: 18px;
  }


  .bw-contact-title {
    font-size: 2rem;
  }


  .bw-contact-desc {
    margin-bottom: 28px;
  }


  .bw-contact-points {
    gap: 18px;

    margin-bottom: 12px;
  }


  .bw-contact-point {
    min-width: 100%;
  }


  input.bw-form-control {
    height: 60px;

    padding: 0 18px;
  }


  .bw-select-wrap label,
  .bw-textarea-wrap label {
    left: 18px;
  }


  .bw-select {
    height: 70px;

    padding:
      30px 40px 8px 18px;
  }


  .bw-textarea {
    height: 145px;

    padding:
      45px 18px 18px;
  }


  .bw-form-bottom {
    flex-direction: column;

    align-items: stretch;

    gap: 22px;
  }


  .bw-send-btn {
    width: 100%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

  .bw-contact-form-section {
    padding: 30px 0;
  }


  .bw-contact-form-box {
    padding: 24px 16px;

    border-radius: 16px;
  }


  .bw-contact-eyebrow {
    font-size: 0.72rem;
  }


  .bw-contact-title {
    font-size: 1.65rem;

    line-height: 1.3;
  }


  .bw-contact-desc {
    font-size: 0.9rem;
  }


  .bw-contact-point {
    gap: 13px;
  }


  .bw-contact-point-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;

    font-size: 1.2rem;
  }


  .bw-contact-point p {
    font-size: 0.82rem;
  }


  .bw-file-upload strong {
    font-size: 0.82rem;
  }


  .bw-file-upload small {
    font-size: 0.68rem;
  }


  .bw-send-btn {
    min-width: 100%;
    height: 54px;
  }

}


/* =========================================
   OTHER WAYS TO CONNECT
========================================= */

.bw-connect-section {
  padding: 70px 0 80px;
  background: #f8f9fb;
}


/* HEADING */

.bw-connect-title {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  margin-bottom: 38px;
}

.bw-connect-title span {
  color: var(--orange-500);
}


/* CARD */

.bw-connect-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 27, 46, 0.06);
  border-radius: 16px;

  padding: 30px 28px;

  min-height: 225px;

  box-shadow:
    0 10px 30px rgba(14, 27, 46, 0.05);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


.bw-connect-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 90, 31, 0.25);

  box-shadow:
    0 18px 40px rgba(14, 27, 46, 0.1);
}


/* ICON */

.bw-connect-icon {
  color: var(--navy-900);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 22px;

  transition:
    color .3s ease,
    transform .3s ease;
}

.bw-connect-card:hover .bw-connect-icon {
  color: var(--orange-500);
  transform: scale(1.08);
}


/* TITLE */

.bw-connect-card h3 {
  font-family: var(--font-display);
  color: var(--navy-900);

  font-size: 1rem;
  font-weight: 700;

  margin-bottom: 12px;
}


/* TEXT */

.bw-connect-card p {
  color: var(--gray-500);

  font-size: 0.9rem;
  font-weight: 500;

  line-height: 1.75;

  margin-bottom: 0;
}


/* BOOK LINK */

.bw-book-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 18px;

  color: var(--orange-500);
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    gap .25s ease,
    color .25s ease;
}

.bw-book-link:hover {
  color: var(--orange-600);
  gap: 18px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-connect-section {
    padding: 60px 0;
  }

  .bw-connect-card {
    min-height: 210px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .bw-connect-section {
    padding: 45px 0;
  }

  .bw-connect-title {
    margin-bottom: 28px;
  }

  .bw-connect-card {
    padding: 26px 22px;
    min-height: auto;
  }

  .bw-connect-icon {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .bw-connect-card h3 {
    font-size: 1rem;
  }

  .bw-connect-card p {
    font-size: 0.88rem;
  }

}

/* ===============================
   OFFICE HOURS / GLOBAL SECTION
================================ */

.bw-office-section {
  padding: 20px 0;
  background: #f7f8fa;
}


/* MAIN BOX */

.bw-office-card {
  background: #081a31;
  border-radius: 22px;
  padding: 34px 45px;
  overflow: hidden;
}


/* ===============================
   OFFICE HOURS
================================ */

.bw-office-hours {
  display: flex;
  align-items: center;
  gap: 25px;
}


/* CLOCK ICON */

.bw-clock-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;

  border: 4px solid var(--orange-500);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--orange-500);
  font-size: 34px;
}


.bw-office-text h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}


.bw-office-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}


/* ===============================
   SERVING CLIENTS
================================ */

.bw-serving-clients {
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}


.bw-serving-clients span {
  display: block;

  color: rgba(255, 255, 255, 0.8);

  font-size: 16px;
  font-weight: 600;

  margin-bottom: 8px;
}


.bw-serving-clients h3 {
  position: relative;
  z-index: 999;
  color: var(--orange-500);

  font-size: 24px;
  font-weight: 700;

  margin: 0;

  white-space: nowrap;
}


.bw-serving-clients h3 b {
  margin: 0 8px;
  font-weight: 700;
}


/* ===============================
   WORLD MAP
================================ */

.bw-world-map {
  position: relative;

  width: 100%;
  max-width: 350px;

  margin-left: auto;
}


.bw-world-map img {
  width: 100%;
  height: auto;

  display: block;

  opacity: 0.75;
}


/* MAP PINS */

.bw-map-pin {
  position: absolute;

  color: var(--orange-500);

  font-size: 22px;

  filter:
    drop-shadow(0 0 5px rgba(255, 90, 31, 0.6));
}


/* Pin positions */

.pin-1 {
  top: 42%;
  left: 22%;
}

.pin-2 {
  top: 22%;
  left: 47%;
}

.pin-3 {
  top: 50%;
  left: 52%;
}

.pin-4 {
  top: 25%;
  right: 20%;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .bw-office-card {
    padding: 30px;
  }


  .bw-serving-clients {
    padding-left: 0;
    border-left: none;
  }


  .bw-world-map {
    margin: 0 auto;
  }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 767.98px) {

  .bw-office-section {
    padding: 15px 0;
  }


  .bw-office-card {
    padding: 28px 22px;
    border-radius: 18px;
  }


  .bw-office-hours {
    gap: 18px;
  }


  .bw-clock-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    font-size: 27px;
    border-width: 3px;
  }


  .bw-office-text h4 {
    font-size: 18px;
  }


  .bw-office-text p {
    font-size: 14px;
  }


  .bw-serving-clients {
    text-align: center;
    padding-top: 10px;
  }


  .bw-serving-clients span {
    font-size: 15px;
  }


  .bw-serving-clients h3 {
    font-size: 21px;
    white-space: normal;
  }


  .bw-serving-clients h3 b {
    margin: 0 5px;
  }


  .bw-world-map {
    max-width: 290px;
    margin-top: 10px;
  }

}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

  .bw-office-card {
    padding: 25px 16px;
  }


  .bw-office-hours {
    align-items: flex-start;
    gap: 14px;
  }


  .bw-clock-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;

    font-size: 24px;
  }


  .bw-office-text h4 {
    font-size: 17px;
  }


  .bw-office-text p {
    font-size: 13px;
  }


  .bw-serving-clients h3 {
    font-size: 18px;
  }


  .bw-world-map {
    max-width: 240px;
  }

}

/* ==============================
   CTA SECTION
================================= */

.bw-cta-section {
  padding: 40px 0;
  background: #f7f8fa;
}


/* Main Banner */

.bw-cta-banner {
  min-height: 235px;
  border-radius: 22px;

  padding: 42px 60px 30px 31%;

  box-shadow:
    0 15px 35px rgba(6, 24, 46, 0.12);

  position: relative;
}


/* ==============================
   CONTENT
================================= */

.bw-cta-content {
  position: relative;
  z-index: 3;
}

.bw-cta-label {
  display: block;

  color: rgba(255, 255, 255, .65);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 12px;
}


.bw-cta-content h2 {
  color: #fff;

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 10px;
}


.bw-cta-content h2 span {
  color: var(--orange-500);
}


.bw-cta-content p {
  color: rgba(255, 255, 255, .75);

  font-size: 16px;

  margin-bottom: 20px;
}


/* ==============================
   BUTTON
================================= */

.bw-cta-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 16px;

  background: var(--orange-500);

  color: #fff;
  text-decoration: none;

  font-size: 15px;

  padding: 13px 25px;

  border-radius: 6px;

  min-width: 185px;

  transition: all .3s ease;

  box-shadow:
    0 8px 20px rgba(255, 90, 31, .28);
}


.bw-cta-btn:hover {
  background: var(--orange-600);

  color: #fff;

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px rgba(255, 90, 31, .4);
}


.bw-cta-btn i {
  transition: transform .3s ease;
}


.bw-cta-btn:hover i {
  transform: translateX(5px);
}


/* ==============================
   PAPER PLANE AREA
================================= */

.bw-cta-plane-wrap {
  position: absolute;

  left: 35px;
  top: 50%;

  transform: translateY(-50%);

  width: 340px;
  height: 200px;

  z-index: 2;
}


/* Plane */

.bw-cta-plane {
  position: absolute;

  top: 0;
  right: 5px;

  font-size: 110px;

  color: #fff;

  transform: rotate(-18deg);

  filter:
    drop-shadow(0 10px 12px rgba(0, 0, 0, .25));

  z-index: 2;
}


/* Dotted flight line */

.bw-cta-plane-line {
  position: absolute;

  left: 0;
  bottom: 10px;

  width: 230px;
  height: 115px;

  border-top: 3px dashed var(--orange-500);

  border-left: 3px dashed var(--orange-500);

  border-radius: 55% 0 0 0;

  transform: rotate(-12deg);

  opacity: .9;
}


/* ==============================
   RIGHT DOT NETWORK
================================= */

.bw-cta-dots {
  position: absolute;

  right: 0;
  top: 0;

  width: 35%;
  height: 100%;

  opacity: .35;

  background-image:
    radial-gradient(circle,
      #3d9de8 1.5px,
      transparent 2px);

  background-size: 42px 42px;

  mask-image:
    linear-gradient(to left,
      #000 10%,
      transparent 100%);

  -webkit-mask-image:
    linear-gradient(to left,
      #000 10%,
      transparent 100%);

  pointer-events: none;
}

@media (max-width: 991.98px) {

  .bw-cta-banner {
    padding: 45px 35px 35px 270px;
    min-height: 220px;
  }

  .bw-cta-plane-wrap {
    left: 15px;
    width: 260px;
  }

  .bw-cta-plane {
    font-size: 85px;
    right: 15px;
  }

  .bw-cta-plane-line {
    width: 170px;
    height: 90px;
  }

  .bw-cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {

  .bw-cta-section {
    padding: 25px 0;
  }

  .bw-cta-banner {
    min-height: auto;

    padding: 160px 25px 35px;

    text-align: center;

    border-radius: 18px;
  }


  /* Plane top center */

  .bw-cta-plane-wrap {
    width: 260px;
    height: 130px;

    left: 50%;
    top: 15px;

    transform: translateX(-50%);
  }


  .bw-cta-plane {
    font-size: 75px;

    top: 0;
    right: 35px;
  }


  .bw-cta-plane-line {
    width: 150px;
    height: 65px;

    left: 15px;
    bottom: 0;
  }


  .bw-cta-content h2 {
    font-size: 27px;
  }


  .bw-cta-content p {
    font-size: 14px;
  }


  .bw-cta-btn {
    width: auto;
    min-width: 180px;
  }


  .bw-cta-dots {
    width: 55%;
    opacity: .18;
  }
}



/* =================================
   BLOG HERO SECTION
================================= */

.bw-blog-hero {
  width: 100%;
  min-height: 465px;
  background: #f8f9fb;
  overflow: hidden;
}


/* LEFT SIDE */

.bw-blog-content {
  height: 100%;
  min-height: 465px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    50px clamp(40px, 7vw, 115px) 40px;

  position: relative;
  z-index: 2;

  background:
    linear-gradient(90deg,
      #f8f9fb 0%,
      #f8f9fb 78%,
      rgba(248, 249, 251, 0.85) 100%);
}


/* LABEL */

.bw-blog-label {
  display: inline-block;

  color: var(--orange-500);
  font-size: 16px;
  font-weight: 700;

  margin-bottom: 14px;

  letter-spacing: .3px;
}


/* HEADING */

.bw-blog-content h1 {
  font-family: var(--font-display);

  color: var(--navy-900);

  /* font-size: clamp(42px, 4vw, 60px); */

  font-weight: 700;

  line-height: 1.15;

  margin: 0 0 18px;
}


.bw-blog-content h1 span {
  color: var(--orange-500);
}


/* DESCRIPTION */

.bw-blog-content p {
  max-width: 570px;

  color: var(--navy-800);

  font-size: 17px;

  line-height: 1.65;

  margin-bottom: 38px;
}


/* =================================
   SEARCH BOX
================================= */

.bw-blog-search {
  width: 100%;
  max-width: 510px;

  height: 62px;

  display: flex;
  align-items: center;

  background: #fff;

  border-radius: 12px;

  overflow: hidden;

  box-shadow:
    0 8px 25px rgba(16, 37, 63, .08);

  border: 1px solid rgba(16, 37, 63, .08);
}


.bw-blog-search input {
  width: 100%;
  height: 100%;

  border: none;
  outline: none;

  background: transparent;

  padding: 0 20px;

  color: var(--navy-900);

  font-size: 15px;
}


.bw-blog-search input::placeholder {
  color: #8b94a1;
}


.bw-blog-search button {
  width: 60px;
  height: 100%;

  border: none;

  background: transparent;

  color: var(--navy-800);

  font-size: 19px;

  cursor: pointer;

  transition: .3s ease;
}


.bw-blog-search button:hover {
  color: var(--orange-500);
}


/* =================================
   RIGHT IMAGE
================================= */

.bw-blog-image {
  width: 100%;
  height: 465px;

  position: relative;

  overflow: hidden;

  background: var(--navy-900);
}


.bw-blog-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


/* LEFT SIDE FADE EFFECT */

.bw-blog-image::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 25%;
  height: 100%;

  background:
    linear-gradient(90deg,
      #f8f9fb 0%,
      rgba(248, 249, 251, .7) 40%,
      transparent 100%);

  z-index: 1;

  pointer-events: none;
}



@media (max-width: 991.98px) {

  .bw-blog-hero {
    min-height: auto;
  }


  .bw-blog-content {
    min-height: auto;

    padding:
      70px 12%;
  }


  .bw-blog-image {
    height: 400px;
  }


  .bw-blog-image::before {
    width: 100%;

    height: 90px;

    background:
      linear-gradient(180deg,
        #f8f9fb 0%,
        transparent 100%);
  }
}


@media (max-width: 575.98px) {

  .bw-blog-content {
    padding:
      55px 22px 45px;
  }


  .bw-blog-label {
    font-size: 14px;
    margin-bottom: 12px;
  }


  .bw-blog-content h1 {
    font-size: 38px;
    line-height: 1.18;
  }


  .bw-blog-content p {
    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 28px;
  }


  .bw-blog-search {
    height: 56px;

    border-radius: 10px;
  }


  .bw-blog-search input {
    padding: 0 16px;
    font-size: 13px;
  }


  .bw-blog-search button {
    width: 52px;
  }


  .bw-blog-image {
    height: 300px;
  }
}


/* ================= BLOG FILTER ================= */

.bw-blog-filter-section {
  padding: 25px 0 30px;
  background: #f7f8fa;
}

/* Main Filter Box */
.bw-filter-wrapper {
  width: 100%;
  min-height: 100px;

  display: flex;
  align-items: stretch;
  justify-content: space-between;

  background: #ffffff;

  border: 1px solid #edf0f4;
  border-radius: 14px;

  box-shadow:
    0 10px 30px rgba(20, 35, 55, 0.06);

  overflow: hidden;
}

/* Individual Filter */
.bw-filter-item {
  position: relative;

  flex: 1;

  min-width: 0;

  border: none;
  background: transparent;

  padding: 15px 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: #26364a;

  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;

  cursor: pointer;

  transition:
    color .25s ease,
    background .25s ease;
}

/* Icon */
.bw-filter-icon {
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  color: #1d2c40;

  transition:
    color .25s ease,
    transform .25s ease;
}

/* Hover */
.bw-filter-item:hover {
  color: var(--orange-500);
}

.bw-filter-item:hover .bw-filter-icon {
  color: var(--orange-500);
  transform: translateY(-2px);
}

/* Active */
.bw-filter-item.active {
  color: var(--orange-500);
}

.bw-filter-item.active .bw-filter-icon {
  color: var(--orange-500);
}

/* Orange Bottom Line */
.bw-filter-item::after {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;

  bottom: 0;

  height: 2px;

  background: var(--orange-500);

  transform: scaleX(0);

  transition: transform .25s ease;
}

/* Active Underline */
.bw-filter-item.active::after {
  transform: scaleX(1);
}


/* ================= TABLET ================= */

@media (max-width: 991.98px) {

  .bw-filter-wrapper {
    justify-content: flex-start;

    overflow-x: auto;

    scrollbar-width: none;

    border-radius: 12px;
  }

  .bw-filter-wrapper::-webkit-scrollbar {
    display: none;
  }

  .bw-filter-item {
    flex: 0 0 125px;

    min-height: 95px;

    padding: 14px 8px;
  }

}


/* ================= MOBILE ================= */

@media (max-width: 575.98px) {

  .bw-blog-filter-section {
    padding: 15px 0 25px;
  }

  .bw-filter-wrapper {
    min-height: 88px;

    border-radius: 10px;

    overflow-x: auto;
    scroll-snap-type: x proximity;

    -webkit-overflow-scrolling: touch;
  }

  .bw-filter-item {
    flex: 0 0 105px;

    min-height: 88px;

    padding: 10px 6px;

    gap: 6px;

    font-size: 10px;

    scroll-snap-align: start;
  }

  .bw-filter-icon {
    font-size: 19px;
  }

  .bw-filter-item::after {
    left: 10px;
    right: 10px;
  }

}

/* =====================================
   INSIGHTS SECTION
===================================== */

.bw-insights-section {
  background: #f7f8fa;
}


/* =====================================
   FILTER
===================================== */

.bw-filter-wrapper {
  display: flex;
  align-items: stretch;

  background: #fff;

  border-radius: 14px;

  box-shadow: 0 10px 35px rgba(20, 35, 55, .07);

  overflow-x: auto;

  scrollbar-width: none;
}


.bw-filter-item {
  position: relative;

  flex: 1 0 110px;

  min-height: 95px;

  border: 0;
  background: transparent;

  color: #233247;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 9px;

  font-size: 11px;
  font-weight: 600;

  white-space: nowrap;

  cursor: pointer;

  transition: .25s ease;
}

.bw-filter-item i {
  font-size: 22px;
}

.bw-filter-item:hover,
.bw-filter-item.active {
  color: var(--orange-500);
}

.bw-filter-item::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 15px;
  right: 15px;

  height: 2px;

  background: var(--orange-500);

  transform: scaleX(0);

  transition: .25s ease;
}

.bw-filter-item.active::after {
  transform: scaleX(1);
}


/* =====================================
   HEADINGS
===================================== */

.bw-section-title {
  color: var(--navy-900);
  font-size: 1.2rem;
  font-weight: 700;
}

.bw-view-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  text-decoration: none;

  color: var(--orange-500);

  font-size: .75rem;

  font-weight: 600;
}

.bw-view-link:hover {
  color: var(--orange-600);
}


/* =====================================
   ARTICLE CARD
===================================== */

.bw-article-card {
  background: #fff;

  border: 1px solid #e9edf2;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 4px 15px rgba(20, 35, 55, .04);

  transition: .3s ease;
}

.bw-article-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(20, 35, 55, .10);
}

.bw-article-img {
  height: 175px;

  overflow: hidden;
}

.bw-article-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform .4s ease;
}

.bw-article-card:hover .bw-article-img img {
  transform: scale(1.05);
}

.bw-small-img {
  height: 125px;
}

.bw-article-content {
  padding: 15px;
}

.bw-category {
  display: block;

  color: var(--orange-500);

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 8px;

  letter-spacing: .05em;
}

.bw-article-content h3 {
  color: var(--navy-900);

  font-size: 1rem;

  font-weight: 700;

  line-height: 1.4;

  margin-bottom: 10px;
}

.bw-article-content p {
  color: #667085;

  font-size: .72rem;

  line-height: 1.6;

  margin-bottom: 15px;
}

.bw-article-content small {
  color: #667085;

  font-size: .65rem;
}


/* =====================================
   FEATURED BIG CARD
===================================== */

.bw-featured-big {
  display: flex;
  flex-direction: column;
}

.bw-featured-big .bw-article-img {
  height: 175px;
}

.bw-featured-big .bw-article-content {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.bw-card-footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: auto;
}

.bw-card-footer span {
  font-size: .65rem;

  color: #667085;
}

.bw-card-footer a,
.bw-read-link {
  color: var(--orange-500);

  text-decoration: none;

  font-size: .7rem;

  font-weight: 600;
}


/* =====================================
   HORIZONTAL FEATURED CARD
===================================== */

.bw-horizontal-card {
  background: #fff;

  border: 1px solid #e9edf2;

  border-radius: 10px;

  overflow: hidden;

  display: flex;

  min-height: 160px;

  flex: 1;
}

.bw-horizontal-content {
  width: 62%;

  padding: 16px;

  display: flex;
  flex-direction: column;
}

.bw-horizontal-content h3 {
  color: var(--navy-900);

  font-size: .95rem;

  font-weight: 700;

  line-height: 1.35;

  margin-bottom: 8px;
}

.bw-horizontal-content p {
  font-size: .67rem;

  color: #667085;

  line-height: 1.5;

  margin-bottom: 8px;
}

.bw-horizontal-content small {
  font-size: .6rem;

  color: #667085;
}

.bw-horizontal-content .bw-read-link {
  margin-top: auto;
}

.bw-horizontal-img {
  width: 38%;
}

.bw-horizontal-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =====================================
   SUBSCRIBE
===================================== */

.bw-subscribe-card {
  background: var(--navy-900);

  color: #fff;

  border-radius: 10px;

  padding: 20px;
}

.bw-subscribe-title {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 12px;
}

.bw-subscribe-title i {
  color: var(--orange-500);

  font-size: 18px;
}

.bw-subscribe-title h3 {
  margin: 0;

  font-size: 1rem;

  font-weight: 700;
}

.bw-subscribe-card p {
  color: rgba(255, 255, 255, .7);

  font-size: .72rem;

  line-height: 1.7;
}

.bw-subscribe-card .form-control {
  height: 42px;

  border: 0;

  font-size: .72rem;

  margin-bottom: 10px;
}

.bw-subscribe-btn {
  background: var(--orange-500);

  border: 0;

  color: #fff;

  padding: 10px 16px;

  border-radius: 5px;

  font-size: .7rem;

  font-weight: 600;
}

.bw-no-spam {
  display: block;

  margin-top: 13px;

  font-size: .55rem;

  color: rgba(255, 255, 255, .55);
}


/* =====================================
   TRENDING
===================================== */

.bw-trending-item {
  display: flex;

  gap: 10px;

  text-decoration: none;

  padding-bottom: 12px;

  margin-bottom: 12px;
}

.bw-trending-item img {
  width: 55px;
  height: 55px;

  border-radius: 7px;

  object-fit: cover;

  flex-shrink: 0;
}

.bw-trending-item h4 {
  color: var(--navy-900);

  font-size: .72rem;

  font-weight: 700;

  line-height: 1.45;

  margin-bottom: 4px;
}

.bw-trending-item small {
  color: #667085;

  font-size: .55rem;
}


/* =====================================
   LOAD BUTTON
===================================== */

.bw-load-btn {
  background: #fff;

  border: 1px solid #d9dee5;

  color: var(--navy-900);

  padding: 10px 22px;

  border-radius: 6px;

  font-size: .72rem;

  font-weight: 600;

  transition: .25s ease;
}

.bw-load-btn:hover {
  background: var(--navy-900);

  color: #fff;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991.98px) {

  .bw-sidebar {
    margin-top: 10px;
  }

  .bw-trending {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
  }

  .bw-trending .bw-section-title,
  .bw-trending>.bw-view-link {
    grid-column: 1 / -1;
  }

}


@media (max-width: 767.98px) {

  .bw-filter-item {
    flex: 0 0 105px;
  }

  .bw-horizontal-card {
    min-height: 180px;
  }

  .bw-trending {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 575.98px) {

  .bw-insights-section {
    padding-top: 15px !important;
  }

  .bw-filter-wrapper {
    border-radius: 10px;
  }

  .bw-filter-item {
    flex: 0 0 95px;

    min-height: 85px;

    font-size: 9px;
  }

  .bw-filter-item i {
    font-size: 18px;
  }

  .bw-section-title {
    font-size: 1.05rem;
  }

  .bw-view-link {
    font-size: .65rem;
  }

  .bw-horizontal-content {
    width: 60%;
  }

  .bw-horizontal-img {
    width: 40%;
  }

  .bw-article-img {
    height: 190px;
  }

  .bw-small-img {
    height: 180px;
  }

}


/* ================================
   CONVERSATION CTA SECTION
================================ */

.bw-conversation-section {
  width: 100%;
  padding: 10px 3.8%;
  background: #f7f7f7;
}


/* Main Box */

.bw-conversation-box {
  position: relative;
  overflow: hidden;
  min-height: 340px;

  background:
    radial-gradient(circle at 80% 20%,
      rgba(20, 72, 125, 0.25),
      transparent 35%),
    linear-gradient(90deg,
      #07182b 0%,
      #081a30 55%,
      #061426 100%);

  border-radius: 22px;
}


/* ================================
   LEFT CONTENT
================================ */

.bw-conversation-content {
  position: relative;
  z-index: 3;

  padding: 50px 20px 50px 65px;
}


.bw-conversation-tag {
  display: block;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}


.bw-conversation-content h2 {
  margin: 0 0 18px;

  color: #ffffff;

  /* font-size: clamp(32px, 3vw, 48px); */
  line-height: 1.25;
  font-weight: 700;
}


.bw-conversation-content h2 span {
  color: var(--orange-500, #ff5a1f);
}


.bw-conversation-content p {
  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 17px;
  line-height: 1.6;
}


/* Button */

.bw-conversation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  min-width: 185px;

  padding: 15px 25px;

  border-radius: 6px;

  background: #ff5a1f;
  color: #ffffff;

  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  box-shadow:
    0 8px 25px rgba(255, 90, 31, 0.25);

  transition: all 0.3s ease;
}


.bw-conversation-btn:hover {
  background: #ff6a32;

  color: #fff;

  transform: translateY(-3px);
}


.bw-conversation-btn i {
  transition: transform 0.3s ease;
}


.bw-conversation-btn:hover i {
  transform: translateX(6px);
}


/* ================================
   RIGHT VISUAL
================================ */

.bw-conversation-visual {
  position: relative;

  width: 100%;
  height: 340px;

  overflow: hidden;
}


/* SVG Line */

.bw-journey-line {
  position: absolute;

  width: 100%;
  height: 100%;

  left: 0;
  top: 0;

  z-index: 1;

  opacity: 0.85;

  pointer-events: none;
}


/* ================================
   STEPS
================================ */

.bw-step {
  position: absolute;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.bw-step-title {
  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 16px;
  font-weight: 600;
}


/* Circle */

.bw-step-icon {
  width: 115px;
  height: 115px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #fff;

  background:
    radial-gradient(circle at 30% 25%,
      #173b69,
      #0b2340 65%,
      #07192e);

  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 15px 35px rgba(0, 0, 0, 0.3);

  transition: all 0.35s ease;
}


.bw-step-icon i {
  font-size: 46px;

  color: #fff;

  transition: all 0.35s ease;
}


.bw-step:hover .bw-step-icon {
  transform: translateY(-6px) scale(1.05);

  background: #ff5a1f;
}


/* Step Positions */

.bw-step-think {
  left: 10%;
  top: 95px;
}


.bw-step-build {
  left: 42%;
  top: 40px;
}


.bw-step-scale {
  right: 4%;
  top: 90px;
}


/* ================================
   DECORATIVE GLOW DOTS
================================ */

.bw-glow-dot {
  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #ff5a1f;

  box-shadow:
    0 0 8px #ff5a1f,
    0 0 16px rgba(255, 90, 31, 0.8);

  z-index: 1;
}


.dot-1 {
  top: 65px;
  left: 3%;
}

.dot-2 {
  top: 50px;
  right: 18%;
}

.dot-3 {
  bottom: 65px;
  right: 3%;
}

.dot-4 {
  bottom: 35px;
  left: 45%;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991.98px) {

  .bw-conversation-section {
    padding: 10px 20px;
  }


  .bw-conversation-box {
    min-height: auto;
  }


  .bw-conversation-content {
    padding: 45px 35px 25px;
  }


  .bw-conversation-visual {
    height: 300px;
  }


  .bw-step-icon {
    width: 90px;
    height: 90px;
  }


  .bw-step-icon i {
    font-size: 35px;
  }


  .bw-step-think {
    left: 8%;
    top: 110px;
  }


  .bw-step-build {
    left: 40%;
    top: 55px;
  }


  .bw-step-scale {
    right: 7%;
    top: 45px;
  }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 767.98px) {

  .bw-conversation-section {
    padding: 10px 12px;
  }


  .bw-conversation-box {
    border-radius: 18px;
  }


  .bw-conversation-content {
    padding: 40px 25px 20px;

    text-align: center;
  }


  .bw-conversation-tag {
    font-size: 11px;
  }


  .bw-conversation-content h2 {
    /* font-size: 32px; */
  }


  .bw-conversation-content h2 br {
    display: none;
  }


  .bw-conversation-content p {
    font-size: 15px;

    margin-bottom: 25px;
  }


  .bw-conversation-btn {
    min-width: 170px;

    padding: 14px 22px;
  }


  /* Visual */

  .bw-conversation-visual {
    height: 300px;
  }


  .bw-step-icon {
    width: 78px;
    height: 78px;
  }


  .bw-step-icon i {
    font-size: 30px;
  }


  .bw-step-title {
    font-size: 13px;
  }


  .bw-step-think {
    left: 7%;
    top: 120px;
  }


  .bw-step-build {
    left: 38%;
    top: 35px;
  }


  .bw-step-scale {
    right: 5%;
    top: 105px;
  }


  .bw-journey-line {
    opacity: 0.65;
  }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

  .bw-conversation-content h2 {
    font-size: 28px;
  }


  .bw-conversation-visual {
    height: 250px;
  }


  .bw-step-icon {
    width: 65px;
    height: 65px;
  }


  .bw-step-icon i {
    font-size: 25px;
  }


  .bw-step-title {
    font-size: 11px;
  }


  .bw-step-think {
    left: 4%;
    top: 105px;
  }


  .bw-step-build {
    left: 38%;
    top: 25px;
  }


  .bw-step-scale {
    right: 3%;
    top: 100px;
  }

}

/* =========================================
   CTA BANNER - FINAL FIX
   Paste this at the END of your CSS file
========================================= */

.bw-cta-banner {
  position: relative !important;
  width: 100%;
  padding: 40px 40px 0;
  overflow: hidden;
}

.bw-cta-banner .container {
  position: relative;
}

/* MAIN CARD */
.bw-cta-banner .bw-cta-card {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;

  width: 100%;
  min-height: 260px;

  padding: 45px 55px;

  background: var(--navy-900, #0e1b2e);
  /* border-radius: 18px;  */

  display: flex;
  align-items: center;
}

/* CONTENT ROW */
.bw-cta-banner .row {
  width: 100%;
  margin: 0;
  z-index: 5;
}

/* remove any unwanted conflict */
.bw-cta-banner .row>* {
  position: relative;
  z-index: 5;
}

/* =========================================
   TEXT
========================================= */

.bw-cta-banner .bw-cta-content {
  position: relative;
  z-index: 6;
}

.bw-cta-banner .bw-cta-small {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.5;
}

.bw-cta-banner .bw-cta-content h2 {
  margin: 0;
  color: #ffffff;

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 700;
}

.bw-cta-banner .bw-cta-content h2 span {
  color: var(--orange-500, #ff5a1f);
}


/* =========================================
   FLIGHT SVG
========================================= */

.bw-cta-banner .bw-flight-svg {
  position: absolute !important;

  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  display: block;

  pointer-events: none;
  overflow: visible;

  z-index: 1;
}

.bw-cta-banner .bw-flight-line {
  fill: none !important;

  stroke: var(--orange-500, #ff5a1f) !important;
  stroke-width: 3 !important;

  stroke-linecap: round;

  stroke-dasharray: 2 10;

  opacity: 0.9;

  animation: bw-cta-flight-move 2.5s linear infinite;
}

@keyframes bw-cta-flight-move {}


/* =========================================
   PAPER PLANE
========================================= */

.bw-cta-banner .bw-plane-wrap {
  position: relative !important;

  width: 100%;
  min-height: 170px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 6;
}

.bw-cta-banner .bw-paper-plane {
  display: block;

  width: 160px !important;
  height: auto !important;

  max-width: 100%;

  position: relative !important;

  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.28));

  animation: bw-cta-plane-float 3s ease-in-out infinite;
}

@keyframes bw-cta-plane-float {}


/* =========================================
   BUTTON WRAPPER
========================================= */

.bw-cta-banner .bw-cta-btn-wrap {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  z-index: 10;
}


/* =========================================
   MAIN BUTTON
========================================= */

.bw-cta-banner .bw-cta-main-btn {
  position: relative;

  width: 100%;
  max-width: 310px;
  min-width: 0;

  padding: 18px 22px;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background: var(--orange-500, #ff5a1f);

  color: #ffffff !important;
  text-decoration: none;

  border-radius: 10px;

  font-size: 16px;
  font-weight: 700;

  overflow: hidden;

  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;

  box-shadow:
    0 10px 25px rgba(255, 90, 31, 0.25);
}

.bw-cta-banner .bw-cta-main-btn:hover {
  color: #ffffff !important;

  background: var(--orange-600, #e94c16);

  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(255, 90, 31, 0.35);
}

.bw-cta-banner .bw-btn-text,
.bw-cta-banner .bw-btn-arrow {
  position: relative;
  z-index: 3;
}

.bw-cta-banner .bw-btn-arrow {
  font-size: 24px;
  line-height: 1;

  transition: transform .3s ease;
}

.bw-cta-banner .bw-cta-main-btn:hover .bw-btn-arrow {
  transform: translateX(5px);
}


/* =========================================
   MOVING DOTS
========================================= */

.bw-cta-banner .bw-flying-dot,
.bw-cta-banner .bw-plane-moving-dot,
.bw-cta-banner .bw-btn-moving-dot {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--orange-500, #ff5a1f);

  z-index: 8;

  pointer-events: none;
}

/* Main line dots */
.bw-cta-banner .bw-dot-1 {
  left: 48%;
  top: 75%;
}

.bw-cta-banner .bw-dot-2 {
  left: 74%;
  top: 70%;
}


/* Plane dot */
.bw-cta-banner .bw-plane-moving-dot {
  top: 52%;
  left: 20%;

  animation: bw-cta-plane-dot 2.5s linear infinite;
}

@keyframes bw-cta-plane-dot {


  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(100px);
    opacity: 0;
  }

}


/* Button dot */
.bw-cta-banner .bw-btn-moving-dot {
  left: -10px;
  top: 50%;

  background: rgba(255, 255, 255, 0.75);

  animation: bw-cta-button-dot 2.5s linear infinite;
}

@keyframes bw-cta-button-dot {

  0% {
    left: -10px;
    opacity: 0;
  }


  80% {
    opacity: 1;
  }


}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .bw-cta-banner {
    padding: 30px 0;
  }

  .bw-cta-banner .bw-cta-card {
    min-height: auto;
    padding: 45px 35px;
  }

  .bw-cta-banner .bw-cta-content {
    text-align: center;
  }

  .bw-cta-banner .bw-cta-btn-wrap {
    justify-content: center;
    margin-top: 28px;
  }

  .bw-cta-banner .bw-cta-main-btn {
    max-width: 340px;
  }

  /* Tablet/mobile pe line aur plane hide */
  .bw-cta-banner .bw-flight-svg,
  .bw-cta-banner .bw-flying-dot,
  .bw-cta-banner .bw-plane-moving-dot {
    display: none !important;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

  .bw-cta-banner {
    padding: 20px 0;
  }

  .bw-cta-banner .bw-cta-card {
    padding: 35px 20px;
    border-radius: 14px;
  }

  .bw-cta-banner .bw-cta-small {
    font-size: 14px;
  }

  .bw-cta-banner .bw-cta-content h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .bw-cta-banner .bw-cta-main-btn {
    width: 100%;
    max-width: 340px;

    padding: 17px 20px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .bw-cta-banner .bw-cta-card {
    padding: 30px 15px;
  }

  .bw-cta-banner .bw-cta-content h2 {
    font-size: 25px;
  }

  .bw-cta-banner .bw-cta-main-btn {
    font-size: 14px;
    padding: 16px 15px;
  }

}

/* =========================================================
   GLOBAL TYPOGRAPHY — COMPACT & RESPONSIVE
   ========================================================= */

/* ALL HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 100%;
  margin-top: 0;
  line-height: 1.25;
}

/* H1 */
h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem) !important;
  line-height: 1.15 !important;
}

/* H2 */
h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
  line-height: 1.2 !important;
}

/* H3 */
h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem) !important;
  line-height: 1.3 !important;
}

/* H4 */
h4 {
  font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
  line-height: 1.3 !important;
}

/* H5 */
h5 {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important;
  line-height: 1.35 !important;
}

/* H6 */
h6 {
  font-size: clamp(0.85rem, 1vw, 0.95rem) !important;
  line-height: 1.4 !important;
}


/* =========================================================
   GLOBAL PARAGRAPH / BODY TEXT
   ========================================================= */

p {
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  line-height: 1.65;
}


/* Normal text elements */
body {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =========================================================
   LIST TEXT
   ========================================================= */

li {
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  line-height: 1.6;
}


/* =========================================================
   SMALL TEXT
   ========================================================= */

small,
.small {
  font-size: 0.78rem !important;
  line-height: 1.5;
}


/* =========================================================
   BUTTON TEXT
   ========================================================= */

button,
.btn,
a {
  line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  h5 {
    font-size: 1rem !important;
  }

  h6 {
    font-size: 0.9rem !important;
  }

  p,
  li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

  h1 {
    font-size: 1.9rem !important;
    line-height: 1.15 !important;
  }

  h2 {
    font-size: 1.55rem !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  h5 {
    font-size: 0.95rem !important;
  }

  h6 {
    font-size: 0.85rem !important;
  }

  p,
  li {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  small,
  .small {
    font-size: 0.74rem !important;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  h1 {
    font-size: 1.7rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 1.08rem !important;
  }

  h4 {
    font-size: 0.98rem !important;
  }

  h5 {
    font-size: 0.9rem !important;
  }

  h6 {
    font-size: 0.82rem !important;
  }

  p,
  li {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  small,
  .small {
    font-size: 0.72rem !important;
  }

}