* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= HEADER ================= */

/* ================= FULL WIDTH STICKY HEADER ================= */

.site-header {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 999999 !important;
    border: none !important;
    border-radius: 0 !important;
    /* CLEAR VISIBLE SHADOW */
    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.18),
        0 2px 5px rgba(0, 0, 0, 0.10) !important;
}

.header-inner {
    width: 100%;
    max-width: 1250px;
    height: 78px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */

.site-logo {
    text-decoration: none;
    color: #d80017;
    font-size: 30px;
    font-weight: 800;
    white-space: nowrap;
}

.site-logo span {
    color: #222;
    font-size: 13px;
    letter-spacing: 2px;
    margin-left: 6px;
}
/* ================= DESKTOP MENU ================= */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}
.desktop-menu a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
}
.desktop-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #d80017;
    transition: width 0.3s ease;
}

.desktop-menu a:hover {
    color: #d80017;
}
.desktop-menu a:hover::after {
    width: 100%;
}
/* ================= HAMBURGER ================= */

.hamburger {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 27px;
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ================= HAMBURGER → CROSS ================= */

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: calc(100vh - 68px);
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.12);
    /* Hidden outside screen */
    transform: translateX(-110%);
    /* Smooth LEFT → RIGHT */
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 9998;
}

/* ================= MOBILE MENU OPEN ================= */

.mobile-menu.show {
    transform: translateX(0);
}

/* ================= MOBILE LINKS ================= */

.mobile-menu a {
    display: block;
    width: 100%;
    padding: 17px 5px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: all 0.25s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover,
.mobile-menu a:active {
    color: #d80017;
    padding-left: 10px;
}

/* ================= DARK OVERLAY ================= */

.mobile-overlay {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9997;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ================= PAGE TRANSITION ================= */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #d80017;
    z-index: 99999;
    transform: translateX(-100%);
    pointer-events: none;
}

/* Page slide */

.page-transition.active {
    animation: pageSlide 0.7s ease forwards;
}

@keyframes pageSlide {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .header-inner {
        height: 68px;
        padding: 0 16px;
    }
    .site-logo {
        font-size: 27px;
    }
    .site-logo span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

}

/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {
    .header-inner {
        padding: 0 14px;
    }

    .site-logo {
        font-size: 25px;
    }

    .site-logo span {
        font-size: 10px;
    }

    .mobile-menu {
        width: 88%;
    }

}

/* ===========hero section =========== */
/* ================= HERO SLIDER ================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #111;
}

/* ================= SLIDE ================= */

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition:
        opacity 0.7s ease,
        transform 1.2s ease,
        visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ================= OVERLAY ================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

/* ================= CONTENT ================= */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1250px;
    padding: 0 25px;
    transform: translate(-50%, -50%);
    color: #fff;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.hero-content h1 {
    max-width: 700px;
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 400;
}

.hero-content h1 strong {
    font-weight: 800;
    color: #d80017;
}

.hero-content p {
    max-width: 600px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 24px;
    background: #d80017;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #d80017;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #d80017;
    border-color: #fff;
}

.hero-btn.outline {
    background: transparent;
    border-color: #fff;
}

.hero-btn.outline:hover {
    background: #fff;
    color: #222;
}

/* ================= ARROWS ================= */

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-arrow:hover {
    background: #d80017;
    border-color: #d80017;
}

.hero-arrow.prev {
    left: 25px;
}

.hero-arrow.next {
    right: 25px;
}

/* ================= DOTS ================= */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #d80017;
}

/* ================= TABLET ================= */

@media (max-width: 900px) {

    .hero-slider {
        height: 580px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .hero-slider {
        height: 620px;
    }

    .hero-slide img {
        object-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.35),
                rgba(0,0,0,0.78)
            );
    }

    .hero-content {
        top: 52%;
        padding: 0 22px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
    }

    .hero-btn {
        width: 100%;
        padding: 13px 20px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }

    .hero-dots {
        bottom: 22px;
    }

}

/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {

    .hero-slider {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 33px;
    }

    .hero-content p {
        font-size: 14px;
    }

}

/* ===================== */


.bni-alt-section {
  width: 100%;
  padding: 35px 20px;
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}

.bni-alt-container {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}


/* =========================
   LEFT CONTENT
========================= */

.bni-alt-intro {
  padding-right: 25px;
}

.bni-alt-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #d80017;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.bni-alt-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #d80017;
}

.bni-alt-intro h2 {
  margin: 0;
  color: #171717;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.2px;
}

.bni-alt-intro h2 span {
  display: block;
  color: #d80017;
}

.bni-alt-line {
  width: 55px;
  height: 4px;
  margin: 25px 0 23px;
  background: #d80017;
  border-radius: 5px;
}

.bni-alt-intro > p {
  max-width: 600px;
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.bni-alt-how {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid #d80017;
}

.bni-alt-how h3 {
  margin: 0 0 10px;
  color: #d80017;
  font-size: 21px;
  font-weight: 750;
}

.bni-alt-how p {
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}


.bni-alt-stats {
  position: relative;
}

.bni-alt-stat {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
  opacity: 0;
  transform: translateX(35px);
  transition:
    opacity .6s ease,
    transform .6s ease,
    background .3s ease;
}

.bni-alt-stat:first-child {
  border-top: 1px solid #dedede;
}

.bni-alt-stat.bni-stat-show {
  opacity: 1;
  transform: translateX(0);
}

.bni-alt-stat:hover {
  padding-left: 15px;
}

.bni-alt-stat-no {
  color: #d80017;
  font-size: 12px;
  font-weight: 800;
  padding-top: 8px;
}

.bni-alt-stat-content {
  position: relative;
}

.bni-alt-counter {
  color: #d80017;
  font-size: 37px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -1.5px;
  font-variant-numeric: tabular-nums;
}

.bni-alt-stat h4 {
  margin: 7px 0 0;
  color: #202020;
  font-size: 19px;
  font-weight: 750;
}

.bni-alt-stat p {
  margin: 5px 0 0;
  color: #111;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}


.bni-alt-stat:last-child .bni-alt-counter {
  font-size: 44px;
}


@media (max-width: 900px) {

  .bni-alt-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .bni-alt-intro {
    padding-right: 0;
  }

  .bni-alt-intro h2 {
    font-size: 43px;
  }

}

@media (max-width: 600px) {

  .bni-alt-section {
    padding: 60px 16px;
  }

  .bni-alt-container {
    gap: 45px;
  }

  .bni-alt-intro h2 {
    font-size: 33px;
    line-height: 1.12;
  }

  .bni-alt-intro > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .bni-alt-how {
    margin-top: 25px;
  }

  .bni-alt-how h3 {
    font-size: 19px;
  }

  .bni-alt-how p {
    font-size: 13px;
  }

  .bni-alt-stat {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .bni-alt-counter {
    font-size: 36px;
  }

  .bni-alt-stat:last-child .bni-alt-counter {
    font-size: 34px;
  }

  .bni-alt-stat h4 {
    font-size: 17px;
  }

}


.bni-alt-counter {
  white-space: nowrap;
}
/* =============================== */

.bni-benefits-section {
  width: 100%;
  padding: 50px 20px;
  background: #f5f7fa;
  font-family: "Segoe UI", Arial, sans-serif;
  box-sizing: border-box;
}


.bni-benefits-container {
  max-width: 90%;
  margin: auto;
}


.bni-benefits-heading {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 70px;
}

.bni-eyebrow {
  position: relative;
  display: inline-block;
  color: #d80017;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.bni-eyebrow::before,
.bni-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #d80017;
}

.bni-eyebrow::before {
  right: calc(100% + 12px);
}
.bni-eyebrow::after {
  left: calc(100% + 12px);
}
.bni-benefits-heading h2 {
  margin: 0;
  color: #000;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -1.5px;
}

.bni-benefits-heading h2 strong {
      color: #d80017;
  font-weight: 800;
}

.bni-benefits-heading p {
  margin: 10px auto 0;
  max-width: 950px;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}


.bni-benefit-card {
  display: grid;
  grid-template-columns: 50% 50%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.07);
  transition: all .4s ease;
}

.bni-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


.bni-benefit-card.bni-reverse {
  direction: rtl;
}

.bni-benefit-card.bni-reverse .bni-benefit-content {
  direction: ltr;
}

.bni-benefit-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.bni-benefit-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s ease;
}

.bni-benefit-card:hover .bni-benefit-image img {
  transform: scale(1.08);
}

.bni-benefit-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(226,27,45,.25),
    transparent 55%
  );

  pointer-events: none;
}


.bni-number {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d80017;
  color: #ffffff;
  border-radius: 50%;
  font-size: 21px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(226,27,45,.35);
  transition: .4s ease;
}

.bni-benefit-card:hover .bni-number {
  transform: rotate(10deg) scale(1.08);
}


.bni-benefit-content {
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bni-tag {
  color: #d80017;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.bni-benefit-content h3 {
  margin: 0;
  color: #111;
  font-size: 43px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1px;
}
.bni-benefit-content h3 strong {
  color: #d80017;
  font-weight: 700;
}

.bni-red-line {
  width: 55px;
  height: 3px;
  background: #d80017;
  margin: 25px 0;
}


.bni-benefit-content p {
  margin: 0 0 15px;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
}

.bni-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 12px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
}

.bni-link span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 18px;
  transition: .3s ease;
}

.bni-link:hover {
  color: #d80017;
}

.bni-link:hover span {
  background: #d80017;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .bni-benefits-section {
    padding: 70px 18px;
  }

  .bni-benefit-card {
    grid-template-columns: 1fr;
  }
  .bni-benefit-card.bni-reverse {
    direction: ltr;
  }
  .bni-benefit-image {
    min-height: 380px;
  }

  .bni-benefit-content {
    padding: 45px;
  }

}

@media (max-width: 600px) {
  .bni-benefits-section {
    padding: 55px 14px;
  }

  .bni-benefits-heading {
    margin-bottom: 40px;
  }

  .bni-benefits-heading h2 {
    font-size: 34px;
  }

  .bni-benefits-heading p {
    font-size: 14px;
  }

  .bni-benefit-card {
    border-radius: 18px;

    margin-bottom: 30px;
  }

  .bni-benefit-image {
    min-height: 270px;
  }

  .bni-benefit-content {
    padding: 32px 24px;
  }

  .bni-benefit-content h3 {
    font-size: 30px;
  }

  .bni-benefit-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .bni-number {
    width: 55px;
    height: 55px;

    right: 18px;
    bottom: 18px;

    font-size: 17px;
  }

  .bni-link {
    font-size: 13px;
  }

}

/* ====================================== */


.bni-experience {
  width: 100%;
  padding: 35px 20px;
  background: #f6f8fa;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}


.bni-experience-inner {
  width: 100%;
  max-width: 90%;
  margin: auto;
}

.bni-experience-title {
  text-align: center;
  margin-bottom: 38px;
}
.bni-experience-title > span {
  display: block;
  margin-bottom: 10px;
  color: #d80017;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.bni-experience-title h2 {
  margin: 0;
  color: #000;
  font-size: 43px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1.2px;
}

.bni-experience-title h2 b {
  color: #d80017;
  font-weight: 600;
}
.bni-title-line {
  width: 55px;
  height: 3px;
  margin: 18px auto 0;
  background: #d80017;
}


.bni-experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  align-items: stretch;
}

.bni-experience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(15,23,42,.06);

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

.bni-experience-card:hover {
  transform: translateY(-8px);

  border-color: #d80017;

  box-shadow:
    0 25px 55px rgba(15,23,42,.13);
}


.bni-card-img {
  position: relative;
  width: 100%;
  height: 255px;
  overflow: hidden;
  isolation: isolate;
}
.bni-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .9s cubic-bezier(.2,.7,.2,1),
    filter .6s ease;
}
.bni-experience-card:hover
.bni-card-img img {
  transform: scale(1.1);

  filter: saturate(1.1);
}

.bni-img-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.02),
      rgba(0,0,0,.38)
    );
  transition:
    background .5s ease;
}
.bni-experience-card:hover
.bni-img-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(226,27,45,.08),
      rgba(0,0,0,.48)
    );
}


.bni-img-shine {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );
  transform: skewX(-18deg);
  transition: left .9s ease;
  pointer-events: none;
}
.bni-experience-card:hover
.bni-img-shine {
  left: 150%;
}

.bni-card-no {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d80017;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow:
    0 8px 24px rgba(226,27,45,.35);
  transition:
    transform .4s ease,
    background .4s ease,
    color .4s ease;
}
.bni-experience-card:hover .bni-card-no {
  transform:
    rotate(8deg)
    scale(1.08);

  background: #fff;
  color: #d80017;
}


.bni-card-content {
  flex: 1;
  padding: 28px 28px 30px;
}

.bni-card-content h3 {
  margin: 0;
  color: #111;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.6px;
}

.bni-card-content h3 strong {
  color: #d80017;
  font-weight: 600;
}

.bni-small-line {
  width: 42px;
  height: 3px;
  margin: 17px 0 18px;
  background: #d80017;
  transition: width .4s ease;
}
.bni-experience-card:hover
.bni-small-line {
  width: 72px;
}

.bni-card-content p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.75;

}

@media (max-width: 1000px) {

  .bni-experience {
    padding: 70px 20px;
  }

  .bni-experience-title h2 {
    font-size: 37px;
  }

  .bni-experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 680px) {
  .bni-experience {
    padding: 55px 15px;
  }

  .bni-experience-title {
    margin-bottom: 32px;
  }

  .bni-experience-title > span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .bni-experience-title h2 {
    font-size: 31px;
  }

  .bni-experience-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bni-card-img {
    height: 220px;
  }

  .bni-card-content {
    padding: 24px 23px 27px;
  }

  .bni-card-content h3 {
    font-size: 26px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

  .bni-experience {
    padding: 45px 12px;
  }

  .bni-experience-title h2 {
    font-size: 28px;
  }

  .bni-card-img {
    height: 205px;
  }

  .bni-card-no {
    width: 49px;
    height: 49px;

    top: 15px;
    left: 15px;
  }

  .bni-card-content {
    padding: 22px 20px 25px;
  }

  .bni-card-content h3 {
    font-size: 24px;
  }

}


/* ============================================ */

.bni-olympus-final{
  width:90%;
  max-width:1500px;
  margin:55px auto;
  display:grid;
  grid-template-columns:
    1.08fr
    1.35fr
    .95fr
    1.15fr;
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:25px;
  overflow:hidden;
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
  box-shadow:
    0 25px 70px rgba(0,0,0,.09);
  animation:
    finalCardIn .8s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes finalCardIn{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================================================
   COMMON HEADING
========================================================= */
.bni-final-heading{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:34px;

}

.bni-final-heading > span{
  color:#d7192e;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  padding-top:3px;

}

.bni-final-heading > div{
  display:flex;
  flex-direction:column;
  gap:5px;

}

.bni-final-heading small{
  color:#222;
  font-size:9px;
  font-weight:800;
  letter-spacing:1.5px;

}


.bni-final-heading h3{
  margin:0;
  color:#111;
  font-size:20px;
  line-height:1.2;
  font-weight:750;

}


/* =========================================================
   BRAND
========================================================= */
.bni-final-brand{
  position:relative;
  min-height:460px;
  padding:52px 45px;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(
      145deg,
      #fff,
      #fff9fa
    );

  border-right:1px solid #eeeeee;
  overflow:hidden;

}


.bni-final-brand::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  right:-140px;
  bottom:-140px;
  border:40px solid rgba(215,25,46,.035);
  border-radius:50%;

}

.bni-final-logo{
  position:relative;
  z-index:2;
  color:#d7192e;
  font-family:Arial,sans-serif;
  font-size:74px;
  line-height:.8;
  font-weight:900;
  letter-spacing:-7px;
  animation:finalFade .8s .1s both;

}

.bni-final-logo span{
  margin-left:5px;
  font-size:13px;
  vertical-align:top;
  letter-spacing:0;

}

.bni-final-label{
  width:max-content;
  margin-top:37px;
  padding:8px 12px;
  background:#fff0f2;
  border-radius:30px;
  color:#d7192e;
  font-size:10px;
  font-weight:850;
  letter-spacing:1.6px;
  animation:finalFade .8s .2s both;
}


.bni-final-brand h2{
  margin:18px 0 0;
  color:#d7192e;
  font-size:42px;
  line-height:1;
  font-weight:700;
  letter-spacing:-2px;
  animation:finalFade .8s .3s both;

}


.bni-final-line{
  width:68px;
  height:4px;
  margin-top:21px;
  background:#d7192e;
  border-radius:20px;
  animation:lineGrow .8s .4s both;
  transform-origin:left;
}


.bni-final-brand p{
  max-width:100%;
  margin:19px 0 0;
  color:#111 !important;
  font-size:15px;
  line-height:1.7;
  animation:finalFade .8s .5s both;
}

.bni-final-footer{
  display:flex;
  justify-content:space-between;
  margin-top:40px;
  padding-top:17px;
  border-top:1px solid #eeeeee;
}

.bni-final-footer span{
  color:#222;
  font-size:9px;
  font-weight:850;
  letter-spacing:1.2px;

}

.bni-final-footer span:first-child{
  color:#d7192e;

}

@keyframes finalFade{
  from{
    opacity:0;
    transform:translateY(13px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes lineGrow{
  from{
    width:0;
  }

  to{
    width:68px;
  }

}

/* =========================================================
   MEETING
========================================================= */
.bni-final-meeting{
  padding:52px 42px;
  box-sizing:border-box;
  border-right:1px solid #eeeeee;
  animation:finalFade .8s .2s both;

}

.bni-final-time{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:15px;
  padding-bottom:27px;
  border-bottom:1px solid #eeeeee;
}

.bni-final-time small{
  display:block;
  margin-bottom:8px;
  color:#222;
  font-size:10px;
  font-weight:850;
  letter-spacing:1.5px;

}


.bni-final-time strong{

  display:block;

  color:#181a1e;

  font-size:38px;

  line-height:1;

  font-weight:750;

  transition:.35s ease;

}


.bni-final-meeting:hover .bni-final-time strong{

  color:#d7192e;

  transform:translateX(4px);

}


.bni-final-status{

  display:flex;

  align-items:center;

  gap:8px;

  padding:8px 11px;

  border:1px solid #eeeeee;

  border-radius:30px;

  color:#555960;

  font-size:9px;

  font-weight:800;

  text-transform:uppercase;

  letter-spacing:1px;

}


.bni-final-status i{

  width:7px;
  height:7px;

  background:#d7192e;

  border-radius:50%;

  animation:statusPulse 1.8s infinite;

}


@keyframes statusPulse{

  0%,100%{
    box-shadow:0 0 0 0 rgba(215,25,46,.2);
  }

  50%{
    box-shadow:0 0 0 6px rgba(215,25,46,0);
  }

}


/* =========================================================
   LOCATION
========================================================= */

.bni-final-location{

  display:flex;

  gap:16px;

  margin-top:30px;

}


.bni-final-location-icon{

  width:49px;
  height:49px;

  flex-shrink:0;

  display:flex;

  align-items:center;
  justify-content:center;

  background:#fff0f2;

  border:1px solid #ffe0e4;

  border-radius:13px;

  color:#d7192e;

  font-size:24px;

  transition:.35s ease;

}


.bni-final-location:hover .bni-final-location-icon{

  transform:
    translateY(-4px)
    rotate(-4deg);

  box-shadow:
    0 10px 24px rgba(215,25,46,.12);

}


.bni-final-location small{

  display:block;

  margin-bottom:6px;

  color:#999da4;

  font-size:9px;

  font-weight:850;

  letter-spacing:1.4px;

}


.bni-final-location h4{

  margin:0;

  color:#202227;

  font-size:19px;

  font-weight:750;

}


.bni-final-location p{

  margin:8px 0 0;

  color:#111 !important;

  font-size:14px;

  line-height:1.65;

}


.bni-final-location a{

  display:inline-flex;

  align-items:center;

  gap:6px;

  margin-top:13px;

  color:#d7192e;

  font-size:11px;

  font-weight:850;

  text-decoration:none;

  transition:.3s ease;

}


.bni-final-location a:hover{

  gap:11px;

}


.bni-final-location a b{

  font-size:15px;
  font-weight:400;

}


/* =========================================================
   MEMBERS
========================================================= */

.bni-final-members{

  position:relative;

  padding:52px 36px;

  box-sizing:border-box;

  background:
    linear-gradient(
      145deg,
      #fffafa,
      #fafafa
    );

  border-right:1px solid #eeeeee;

  overflow:hidden;

  animation:finalFade .8s .35s both;

}


.bni-final-members::before{

  content:"";

  position:absolute;

  width:190px;
  height:190px;

  right:-105px;
  top:-105px;

  background:#d7192e;

  opacity:.035;

  border-radius:50%;

}


.bni-final-member-count{

  position:relative;
  z-index:2;

  display:flex;

  align-items:flex-end;

  gap:11px;

  padding:8px 0 24px;

}


.bni-final-member-count strong{

  color:#d7192e;

  font-size:82px;

  line-height:.78;

  font-weight:750;

  letter-spacing:-5px;

  text-shadow:
    0 8px 20px rgba(215,25,46,.10);

  transition:
    transform .4s ease,
    text-shadow .4s ease;

}


.bni-final-member-label{

  display:flex;

  flex-direction:column;

  padding-bottom:2px;

}


.bni-final-member-label b{

  color:#292b30;

  font-size:9px;

  line-height:1;

  font-weight:850;

  letter-spacing:1px;

}


.bni-final-member-label span{

  margin-top:4px;

  color:#999da4;

  font-size:8px;

  line-height:1;

  font-weight:800;

  letter-spacing:1px;

}


.bni-final-members:hover
.bni-final-member-count strong{

  transform:
    translateY(-5px)
    scale(1.04);

  text-shadow:
    0 13px 30px rgba(215,25,46,.18);

}


.bni-final-progress{

  width:100%;

  height:4px;

  background:#e6e6e6;

  border-radius:20px;

  overflow:hidden;

}


.bni-final-progress span{

  display:block;

  width:82%;

  height:100%;

  background:#d7192e;

  border-radius:20px;

  transform-origin:left;

  animation:
    progressGrow
    1.2s
    .7s
    cubic-bezier(.22,.61,.36,1)
    both;

}


@keyframes progressGrow{

  from{
    width:0;
  }

  to{
    width:82%;
  }

}


.bni-final-member-text{
  margin:19px 0 0;
  color:#111 !important;
  font-size:15px;
  line-height:1.65;

}


.bni-final-community{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid #e7e7e7;
  color:#333;
  font-size:9px;
  font-weight:750;
  letter-spacing:1px;

}


.bni-final-community i{

  width:6px;
  height:6px;
  background:#d7192e;
  border-radius:50%;
  animation:communityDot 1.8s infinite;

}

@keyframes communityDot{

  0%,100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.4);
    box-shadow:
      0 0 0 5px rgba(215,25,46,.08);
  }
}


/* =========================================================
   LINKS
========================================================= */

.bni-final-links{
  padding:52px 35px 32px;
  box-sizing:border-box;
  animation:finalFade .8s .45s both;

}


.bni-final-link{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:8px 0;
  border-bottom:1px solid #eeeeee;
  color:#222;
  text-decoration:none;
  transition:
    padding-left .3s ease,
    background .3s ease;
}


.bni-final-link div,
.bni-final-visit div{
  display:flex;
  flex-direction:column;
  gap:5px;

}

.bni-final-link small,
.bni-final-visit small{
  color:#222;
  font-size:12px;
  font-weight:850;
  letter-spacing:1.3px;

}

.bni-final-link strong,
.bni-final-visit strong{
  font-size:16px;
  font-weight:700;

}

.bni-final-link > span{
  color:#d7192e;
  font-size:22px;
  transition:.35s ease;

}


.bni-final-link:hover{
  padding-left:8px;
  background:
    linear-gradient(
      90deg,
      #fff7f8,
      transparent
    );

}

.bni-final-link:hover > span{
  transform:translateX(7px);

}

/* =========================================================
   VISIT BUTTON
========================================================= */

.bni-final-visit{
  position:relative;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-top:15px;
  padding:0 17px;
  box-sizing:border-box;
  background:#d7192e;
  border-radius:11px;
  color:#fff;
  text-decoration:none;
  overflow:hidden;
  box-shadow:
    0 10px 25px rgba(215,25,46,.14);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;

}

.bni-final-visit::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );

  transform:skewX(-20deg);
  transition:left .7s ease;

}


.bni-final-visit:hover::before{
  left:140%;

}

.bni-final-visit small{
  color:rgba(252, 252, 252, 0.816);

}


.bni-final-visit strong{

  color:#fff;

}


.bni-final-visit > span{

  position:relative;
  z-index:2;

  color:#fff;

  font-size:22px;

  transition:.35s ease;

}


.bni-final-visit:hover{

  background:#bd1427;

  transform:translateY(-4px);

  box-shadow:
    0 17px 35px rgba(215,25,46,.22);

}


.bni-final-visit:hover > span{

  transform:
    translate(5px,-5px);

}


.bni-final-bottom{
  margin-top:27px;
  color:#111;
  font-size:8px;
  font-weight:850;
  letter-spacing:1px;

}


.bni-final-bottom b{
  margin:0 4px;
  color:#d7192e;

}

/* =========================================================
   TABLET
======================================================== */
@media(max-width:1150px){
  .bni-olympus-final{
    grid-template-columns:1fr 1fr;

  }

  .bni-final-brand{
    border-bottom:1px solid #eeeeee;

  }

  .bni-final-meeting{
    border-right:0;
    border-bottom:1px solid #eeeeee;

  }

  .bni-final-members{
    border-bottom:0;

  }


  .bni-final-links{
    border-left:1px solid #eeeeee;

  }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){
  .bni-olympus-final{
    width:calc(100% - 24px);
    margin:25px 12px;
    display:block;
    border-radius:20px;

  }

  .bni-final-brand,
  .bni-final-meeting,
  .bni-final-members,
  .bni-final-links{
    padding:36px 25px;
    border-left:0;
    border-right:0;
    border-bottom:1px solid #eeeeee;

  }


  .bni-final-brand{
    min-height:430px;

  }


  .bni-final-logo{
    font-size:65px;

  }

  .bni-final-brand h2{
    font-size:45px;

  }


  .bni-final-time{
    flex-direction:column;
    align-items:flex-start;
  }


  .bni-final-time strong{
    font-size:35px;

  }

  .bni-final-member-count strong{
    font-size:78px;

  }


  .bni-final-links{
    border-bottom:0;

  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:400px){

  .bni-final-brand,
  .bni-final-meeting,
  .bni-final-members,
  .bni-final-links{
    padding-left:20px;
    padding-right:20px;

  }


  .bni-final-logo{
    font-size:58px;

  }


  .bni-final-brand h2{
    font-size:39px;

  }

  .bni-final-member-count strong{
    font-size:70px;

  }

  .bni-final-heading h3{
    font-size:18px;

  }
  .bni-final-link strong,
  .bni-final-visit strong{
    font-size:15px;

  }

}


/* =========================================================
   POPUP OVERLAY
========================================================= */
.bni-visitor-overlay{
  position:fixed;
  inset:0;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
  box-sizing:border-box;
  background:rgba(15,16,19,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .35s ease,
    visibility .35s ease;

}


.bni-visitor-overlay.bni-popup-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;

}


/* =========================================================
   POPUP MODAL
========================================================= */
.bni-visitor-modal{
  position:relative;
  width:100%;
  max-width:65%;
  min-height:520px;
  display:grid;
  grid-template-columns:42% 58%;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:
    0 35px 100px rgba(0,0,0,.28);
  transform:
    translateY(35px)
    scale(.96);

  opacity:0;
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease;

}


.bni-popup-active .bni-visitor-modal{
  transform:
    translateY(0)
    scale(1);

  opacity:1;

}


/* =========================================================
   POPUP CLOSE
========================================================= */

.bni-visitor-close{
  position:absolute;
  z-index:20;
  top:16px;
  right:17px;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.08);
  border-radius:50%;
  background:#fff;
  color:#222;
  font-size:25px;
  line-height:1;
  cursor:pointer;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;

}


.bni-visitor-close:hover{
  background:#d7192e;
  color:#fff;
  transform:rotate(90deg);
}


/* =========================================================
   POPUP LEFT
========================================================= */
.bni-visitor-info{
  position:relative;
  padding:48px 40px;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  background:
    linear-gradient(
      145deg,
      #fff8f9 0%,
      #fff 65%
    );

  border-right:1px solid #eeeeee;

}

.bni-visitor-info::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-155px;
  bottom:-155px;
  border:45px solid rgba(215,25,46,.035);
  border-radius:50%;

}

.bni-visitor-info::after{

  content:"";
  position:absolute;
  width:8px;
  height:100px;
  left:0;
  top:50%;
  transform:translateY(-50%);
  background:#d7192e;
  border-radius:0 10px 10px 0;
}

.bni-visitor-logo{
  position:relative;
  z-index:2;
  color:#d7192e;
  font-family:Arial,sans-serif;
  font-size:60px;
  line-height:.8;
  font-weight:900;
  letter-spacing:-6px;
}

.bni-visitor-logo span{
  margin-left:4px;
  font-size:11px;
  vertical-align:top;
  letter-spacing:0;
}

.bni-visitor-tag{
  width:max-content;
  margin-top:30px;
  padding:7px 10px;
  background:#fff0f2;
  border-radius:20px;
  color:#d7192e;
  font-size:10px;
  font-weight:850;
  letter-spacing:1.5px;
}


.bni-visitor-info h2{
  margin:20px 0 0;
  color:#111;
  font-size:36px;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-1px;

}

.bni-visitor-info h2 strong{
  color:#d7192e;
  font-weight:750;
}

.bni-visitor-redline{
  width:55px;
  height:4px;
  margin-top:18px;
  background:#d7192e;
  border-radius:20px;
}

.bni-visitor-info > p{
  max-width:100%;
  margin:17px 0 0;
  color:#111 !important;
  font-size:14px;
  line-height:1.7;

}


.bni-visitor-details{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid #e9e9e9;
}


.bni-visitor-details div{
  display:flex;
  flex-direction:column;
  gap:4px;

}

.bni-visitor-details span{
  color:#333;
  font-size:8px;
  font-weight:850;
  letter-spacing:1.3px;

}

.bni-visitor-details strong{
  color:#25272b;
  font-size:13px;
  font-weight:700;

}


.bni-visitor-form-area{
  position:relative;
  padding:48px 48px 38px;
  box-sizing:border-box;
  background:#fff;
}


.bni-visitor-form-heading{
  padding-right:40px;
}

.bni-visitor-form-heading small{
  color:#d7192e;
  font-size:11px;
  font-weight:850;
  letter-spacing:1.4px;

}


.bni-visitor-form-heading h3{
  margin:9px 0 0;
  color:#111;
  font-size:30px;
  line-height:1.15;
  font-weight:650;
  letter-spacing:-.8px;

}


.bni-visitor-form-heading h3 span{
  color:#d7192e;

}

.bni-visitor-form-heading p{
  margin:9px 0 25px;
  color:#111 !important;
  font-size:14px;
  line-height:1.6;
}


/* =========================================================
   FORM FIELD
========================================================= */
.bni-form-field{
  margin-bottom:17px;
}

.bni-form-field label{
  display:block;
  margin-bottom:7px;
  color:#111;
  font-size:14px;
  font-weight:600;
  letter-spacing:.4px;

}


.bni-form-field input{
  width:100%;
  height:49px;
  padding:0 15px;
  box-sizing:border-box;
  border:1px solid #e3e3e3;
  border-radius:9px;
  outline:none;
  background:#fff;
  color:#202227;
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
  font-size:13px;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;

}


.bni-form-field input::placeholder{
  color:#444;

}

.bni-form-field input:focus{
  border-color:#d7192e;
  box-shadow:
    0 0 0 3px rgba(215,25,46,.08);

}


/* =========================================================
   SUBMIT
========================================================= */
.bni-form-submit{
  position:relative;
  width:100%;
  height:53px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 17px 0 19px;
  border:0;
  border-radius:10px;
  background:#d7192e;
  color:#fff;
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;
  font-size:13px;
  font-weight:750;
  cursor:pointer;
  overflow:hidden;
  box-shadow:
    0 10px 25px rgba(215,25,46,.16);
  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;

}

.bni-form-submit::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );

  transform:skewX(-20deg);
  transition:left .65s ease;
}

.bni-form-submit:hover::before{
  left:140%;
}


.bni-form-submit:hover{
  background:#bd1427;
  transform:translateY(-2px);
  box-shadow:
    0 15px 30px rgba(215,25,46,.22);
}

.bni-form-submit b{
  position:relative;
  z-index:2;
  font-size:20px;
  font-weight:400;
  transition:.3s ease;
}


.bni-form-submit:hover b{
  transform:
    translate(4px,-4px);
}


/* =========================================================
   NOTE
========================================================= */

.bni-form-note{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:13px;
  color:#444;
  font-size:8px;

}

.bni-form-note span{
  color:#d7192e;
  font-size:10px;
}

/* =========================================================
   SUCCESS
========================================================= */

.bni-form-success{
  position:absolute;
  inset:0;
  z-index:10;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:35px;
  box-sizing:border-box;
  background:#fff;
  text-align:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;
}


.bni-form-success.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.bni-success-icon{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff0f2;
  color:#d7192e;
  font-size:29px;
  font-weight:700;
  box-shadow:
    0 0 0 10px rgba(215,25,46,.035);

}

.bni-form-success h3{
  margin:22px 0 8px;
  color:#181a1e;
  font-size:27px;

}

.bni-form-success p{
  max-width:360px;
  margin:0;
  color:#111 !important;
  font-size:13px;
  line-height:1.7;
}

.bni-form-success button{
  margin-top:23px;
  padding:11px 24px;
 border:0;
  border-radius:8px;
  background:#d7192e;
  color:#fff;
  font-size:11px;
  font-weight:750;
  cursor:pointer;
}


/* =========================================================
   POPUP MOBILE
========================================================= */

@media(max-width:750px){
  .bni-visitor-overlay{
    padding:15px;
  align-items:center;

  }

  .bni-visitor-modal{
    max-height:calc(100vh - 30px);
    min-height:0;
    grid-template-columns:1fr;
    overflow-y:auto;
  border-radius:20px;

  }


  .bni-visitor-info{
    min-height:auto;
   padding:34px 25px 28px;
   border-right:0;
    border-bottom:1px solid #eeeeee;
  }

  .bni-visitor-info::after{
    width:60px;
    height:4px;
    left:50%;
    top:0;
    transform:translateX(-50%);
    border-radius:0 0 10px 10px;

  }


  .bni-visitor-logo{
    font-size:52px;
  }

  .bni-visitor-tag{
    margin-top:24px;
  }

  .bni-visitor-info h2{
    font-size:30px;
  }


  .bni-visitor-info > p{
    font-size:12px;
  }
  .bni-visitor-details{
    margin-top:20px;
    padding-top:15px;
    gap:10px;

  }

  .bni-visitor-form-area{
    padding:32px 25px 27px;
  }

  .bni-visitor-form-heading h3{
    font-size:26px;

  }

  .bni-visitor-close{
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    font-size:22px;
  }
}

@media(max-width:400px){

  .bni-visitor-overlay{
    padding:10px;
  }

  .bni-visitor-modal{
    max-height:calc(100vh - 20px);
    border-radius:17px;
  }


  .bni-visitor-info{
    padding:28px 20px 23px;
  }
  .bni-visitor-logo{
    font-size:47px;
  }
  .bni-visitor-info h2{
    font-size:27px;
  }

  .bni-visitor-form-area{
    padding:27px 20px 23px;
  }

  .bni-visitor-form-heading h3{
    font-size:23px;
  }

  .bni-form-field{
    margin-bottom:14px;

  }
  .bni-form-field input{
    height:46px;
  }
  .bni-form-submit{
    height:50px;
  }

}

body.bni-popup-open{
  overflow:hidden;
}



/* ============== map ================== */



.bni-premium-map{

    --bni-red:#d7192e;
    --bni-dark:#111111;
    --bni-grey:#777777;
    --bni-light:#f7f7f5;
    --bni-border:#dddddd;

    width:100%;
    padding:80px 0;

    background:#f7f7f5;

    color:#111;

    font-family:
    "DM Sans",
    Arial,
    sans-serif;

}


.bni-premium-map,
.bni-premium-map *{

    box-sizing:border-box;

}


.bni-map-container{

    width:90%;
    max-width:1450px;

    margin:auto;

}



/* =========================================================
   HEADER
========================================================= */

.bni-map-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

    margin-bottom:30px;

}


.bni-eyebrow{

    display:flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    color:var(--bni-red);

    font-size:9px;

    font-weight:800;

    letter-spacing:2px;

}


.bni-eyebrow span{

    width:25px;
    height:1px;

    background:var(--bni-red);

}


.bni-heading-content h2{

    margin:0;

    font-family:
    "Manrope",
    Arial,
    sans-serif;

    font-size:52px;

    line-height:1;

    letter-spacing:-3px;

    font-weight:700;

}


.bni-heading-content h2 strong{

    color:var(--bni-red);

}


.bni-heading-content p{

    max-width:570px;

    margin:17px 0 0;

    color:#111;

    font-size:16px;

    line-height:1.8;

}



/* =========================================================
   TOTAL
========================================================= */

.bni-total-box{

    display:flex;

    align-items:center;

    gap:16px;

    min-width:190px;

    padding:18px 21px;

    background:#fff;

    border:1px solid #ddd;

}


.bni-total-number{

    color:var(--bni-red);

    font-family:"Manrope";

    font-size:50px;

    line-height:1;

    font-weight:800;

}


.bni-total-info b{

    display:block;

    color:var(--bni-red);

    font-size:14px;

    letter-spacing:1.4px;

}


.bni-total-info span{

    display:block;

    margin-top:5px;

    color:#222;

    font-size:11px;

    letter-spacing:1px;

    font-weight:600;

}



/* =========================================================
   MAP
========================================================= */

.bni-map-wrapper{

    position:relative;

    width:100%;

    height:500px;

    overflow:hidden;

    border:1px solid #ddd;

    background:#ddd;

    box-shadow:
    0 25px 65px rgba(0,0,0,.08);

}


.bni-map{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

}



/* =========================================================
   MAPLIBRE CONTROLS
========================================================= */

.bni-map .maplibregl-ctrl-top-left{

    margin:18px;

}


.bni-map .maplibregl-ctrl-group{

    border:0;

    border-radius:0;

    overflow:hidden;

    box-shadow:
    0 7px 22px rgba(0,0,0,.15);

}


.bni-map .maplibregl-ctrl-group button{

    width:38px;

    height:38px;

    background:#fff;

}


.bni-map .maplibregl-ctrl-group button:hover{

    background:var(--bni-red);

}



/* =========================================================
   CUSTOM BNI MARKER
========================================================= */

.bni-marker-wrapper{

    position:relative;

    width:70px;

    height:80px;

    cursor:pointer;

}


.bni-marker{

    position:absolute;

    width:52px;

    height:52px;

    left:9px;

    top:0;

}


.bni-marker-pulse{

    position:absolute;

    inset:-9px;

    border:
    1px solid
    rgba(215,25,46,.45);

    border-radius:50%;

    animation:
    bniPulse 2s infinite;

}


@keyframes bniPulse{

    0%{

        transform:scale(.7);

        opacity:.8;

    }

    70%{

        transform:scale(1.4);

        opacity:0;

    }

    100%{

        opacity:0;

    }

}


.bni-marker-circle{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border:4px solid #fff;

    border-radius:50%;

    background:var(--bni-red);

    color:#fff;

    font-family:"Manrope";

    font-size:10px;

    font-weight:800;

    box-shadow:
    0 8px 22px rgba(0,0,0,.35);

}


.bni-marker-label{

    position:absolute;

    left:50%;

    bottom:-25px;

    transform:translateX(-50%);

    padding:5px 8px;

    white-space:nowrap;

    background:var(--bni-red);

    color:#fff;

    font-size:6px;

    font-weight:800;

    letter-spacing:.7px;

}



/* =========================================================
   MAP LABEL
========================================================= */

.bni-map-label{

    position:absolute;

    top:18px;

    left:70px;

    z-index:20;

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 14px;

    background:rgba(255,255,255,.96);

    box-shadow:
    0 7px 25px rgba(0,0,0,.12);

}


.bni-live-dot{

    width:7px;

    height:7px;

    border-radius:50%;

    background:var(--bni-red);

    box-shadow:
    0 0 0 5px
    rgba(215,25,46,.10);

}


.bni-map-label strong{

    display:block;

    font-size:8px;

    letter-spacing:1px;

}


.bni-map-label span{

    display:block;

    margin-top:3px;

    color:#999;

    font-size:6px;

    letter-spacing:.8px;

}



/* =========================================================
   POPUP CARD
========================================================= */

.bni-location-card{

    position:absolute;

    z-index:50;

    top:18px;

    right:18px;

    width:450px;

    max-height:465px;

    overflow:auto;

    padding:25px;

    background:
    rgba(255,255,255,.98);

    backdrop-filter:blur(12px);

    box-shadow:
    0 25px 65px rgba(0,0,0,.2);

    border:1px solid #eee;

    transform:translateX(35px);

    opacity:0;

    pointer-events:none;

    transition:.35s ease;

}


.bni-location-card.active{

    opacity:1;

    pointer-events:auto;

    transform:translateX(0);

}



/* =========================================================
   CLOSE
========================================================= */

.bni-card-close{

    position:absolute;

    top:14px;

    right:14px;

    width:31px;

    height:31px;

    border:1px solid #ddd;

    border-radius:50%;

    background:var(--bni-red);

    color:#fff;

    font-size:19px;

    cursor:pointer;

}


.bni-card-close:hover{

    background:#000;

    border-color:var(--bni-red);

}



/* =========================================================
   CARD HEADER
========================================================= */

.bni-card-header{

    display:flex;

    align-items:center;

    gap:13px;

    padding-right:30px;

}


.bni-card-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    width:52px;

    height:52px;

    flex:none;

    background:var(--bni-red);

    color:#fff;

    font-family:"Manrope";

    font-size:11px;

    font-weight:800;

}


.bni-card-header small{

    display:block;

    margin-bottom:4px;

    color:#222;

    font-size:10px;

    font-weight:800;

    letter-spacing:1.2px;

}


.bni-card-header h3{

    margin:0;

    font-family:"Manrope";

    font-size:22px;

    line-height:1.1;

    font-weight:800;

}


.bni-card-address{

    margin:
    14px 0 0 65px;

    color:#111;

    font-size:13px;

    line-height:1.5;

}


.bni-card-divider{

    width:100%;

    height:1px;

    margin:18px 0;

    background:#e5e5e5;

}



/* =========================================================
   CHAPTER TITLE
========================================================= */

.bni-chapter-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:10px;

}


.bni-chapter-title span{

    color:#222;

    font-size:10px;

    font-weight:800;

    letter-spacing:1.1px;

}


.bni-chapter-title b{

    color:var(--bni-red);

    font-family:"Manrope";

    font-size:15px;

}



/* =========================================================
   CHAPTER CARDS
========================================================= */

.bni-chapter-list{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:7px;

}


.bni-chapter-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:7px;

    min-height:56px;

    padding:10px;

    border:1px solid #e1e1e1;

    background:#fafafa;

    color:#111;

    text-decoration:none;

    transition:.25s;

    cursor:pointer;

}


.bni-chapter-card:hover{

    background:var(--bni-red);

    border-color:var(--bni-red);

    color:#fff;

    transform:translateY(-2px);

}


.bni-chapter-name{

    display:flex;

    align-items:center;

    gap:7px;

    min-width:0;

}


.bni-chapter-name i{

    width:5px;

    height:5px;

    flex:none;

    border-radius:50%;

    background:var(--bni-red);

}


.bni-chapter-card:hover
.bni-chapter-name i{

    background:#fff;

}


.bni-chapter-name span{

    font-size:10px;

    font-weight:700;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}


.bni-chapter-time{

    flex:none;

    color:#111;

    font-size:11px;

    white-space:nowrap;

}


.bni-chapter-card:hover
.bni-chapter-time{

    color:#fff;

}



/* =========================================================
   DIRECTIONS
========================================================= */

.bni-direction-button{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-top:16px;

    padding:13px 15px;

    background:var(--bni-red);

    color:#fff;

    text-decoration:none;

    transition:.3s;

}


.bni-direction-button span{

    font-size:8px;

    font-weight:800;

    letter-spacing:1.2px;

}


.bni-direction-button i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:25px;

    height:25px;

    border-radius:50%;

    background:#fff;

    color:var(--bni-red);

    font-size:14px;

    font-style:normal;

}


.bni-direction-button:hover{

    background:#b91428;

}



/* =========================================================
   LOCATION LIST
========================================================= */

.bni-location-list{

    display:grid;

    grid-template-columns:
    120px
    repeat(3,1fr);

    background:#fff;

    border:
    1px solid #ddd;

    border-top:0;

}


.bni-location-heading{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:15px 20px;

    border-right:1px solid #ddd;

}


.bni-location-heading span{

    color:#111;

    font-size:11px;

    font-weight:800;

    letter-spacing:1px;

}


.bni-location-heading strong{

    margin-top:3px;

    color:var(--bni-red);

    font-family:"Manrope";

    font-size:25px;

}



/* =========================================================
   LOCATION BUTTON
========================================================= */

.bni-location-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:17px;

    border:0;

    border-right:1px solid #ddd;

    background:#fff;

    text-align:left;

    cursor:pointer;

    transition:.25s;

}


.bni-location-item:hover,
.bni-location-item.active{

    background:#fafafa;

}


.bni-location-item.active{

    box-shadow:
    inset 0 -3px var(--bni-red);

}


.bni-location-icon{

    color:var(--bni-red);

    font-size:9px;

}


.bni-location-details{

    flex:1;

}


.bni-location-details strong{

    display:block;

    font-size:14px;

    color:#111;

}


.bni-location-details span{

    display:block;

    margin-top:4px;

    color:#111;

    font-size:12px;

}


.bni-location-item > b{

    color:var(--bni-red);

    font-family:"Manrope";

    font-size:19px;

}



/* =========================================================
   FOOTER
========================================================= */

.bni-map-bottom{

    display:flex;

    align-items:center;

    gap:20px;

    margin-top:27px;

}


.bni-bottom-line{

    width:45px;

    height:1px;

    background:var(--bni-red);

}


.bni-map-bottom p{

    margin:0;

    color:#111;

    font-size:12px;

}


.bni-map-bottom p strong{

    color:#111;

}


.bni-map-bottom > span{

    margin-left:auto;

    color:var(--bni-red);

    font-size:11px;

    font-weight:800;

    letter-spacing:1.5px;

}



/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .bni-map-header{

        display:block;

    }


    .bni-total-box{

        width:max-content;

        margin-top:20px;

    }


    .bni-heading-content h2{

        font-size:50px;

    }


    .bni-map-wrapper{

        height:470px;

    }


    .bni-location-card{

        width:360px;

    }


    .bni-location-list{

        grid-template-columns:
        1fr 1fr;

    }


    .bni-location-heading{

        display:none;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .bni-premium-map{

        padding:55px 0;

    }


    .bni-map-container{

        width:94%;

    }


    .bni-heading-content h2{

        font-size:39px;

        letter-spacing:-2px;

    }


    .bni-heading-content p{

        font-size:11px;

    }


    .bni-eyebrow{

        font-size:9px;

    }


    .bni-map-wrapper{

        height:420px;

    }


    .bni-map-label{

        top:12px;

        left:12px;

    }


    .bni-location-card{

        top:auto;

        right:8px;

        left:8px;

        bottom:8px;

        width:auto;

        max-height:295px;

        padding:18px;

        transform:
        translateY(25px);

    }


    .bni-location-card.active{

        transform:
        translateY(0);

    }


    .bni-card-header h3{

        font-size:19px;

    }


    .bni-card-address{

        margin-left:65px;

        font-size:11px;

    }


    .bni-chapter-list{

        grid-template-columns:
        1fr 1fr;

    }


    .bni-chapter-card{

        min-height:48px;

        padding:8px;

    }


    .bni-chapter-name span{

        font-size:11px;

    }


    .bni-chapter-time{

        display:none;

    }


    .bni-location-list{

        grid-template-columns:1fr;

    }


    .bni-location-item{

        border-right:0;

        border-bottom:1px solid #ddd;

    }


    .bni-map-bottom{

        display:block;

    }


    .bni-bottom-line{

        margin-bottom:12px;

    }


    .bni-map-bottom p{

        font-size:11px;

    }


    .bni-map-bottom > span{

        display:block;

        margin:
        12px 0 0;

    }

}

/* =====================contact us ============= */


.bni-premium-contact,
.bni-premium-contact * {

    box-sizing: border-box;

}

.bni-premium-contact {
    width: 100%;
    padding: 80px 0;
    background: #f7f7f7;
    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: #222;

}


.bni-premium-wrap {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        43% 57%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    box-shadow:
        0 25px 70px rgba(0,0,0,.08);
}


.bni-premium-left {
    position: relative;
    padding: 48px 50px;
    background:
        linear-gradient(
            145deg,
            #fff3f4 0%,
            #ffffff 65%
        );

    border-right: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;

}


/* =========================================================
   TOP BRAND
========================================================= */

.bni-top-line {
    display: flex;
    align-items: center;
    gap: 12px;

}


.bni-top-line span {
    color: #d7192e;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;

}

.bni-top-line i {
    width: 35px;
    height: 1px;
    background: #d7192e;

}


.bni-top-line b {
    color: #222;
    font-size: 10px;
    letter-spacing: 3px;
}

.bni-left-main {
    margin-top: 60px;
}


.bni-eyebrow {
    color: #d7192e;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;

}


.bni-left-main h2 {
    margin: 16px 0 18px;
    color: #171717;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 300;

}


.bni-left-main h2 strong {
    display: block;
    color: #d7192e;
    font-weight: 800;
}


.bni-left-main > p {
    max-width: 440px;
  margin: 0;
  color: #111;
    font-size: 14px;
    line-height: 1.7;

}


.bni-benefits {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.bni-benefit {
  display: flex;
    align-items: flex-start;
    gap: 13px;
}


.bni-benefit-no {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #d7192e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
   font-size: 11px;
   font-weight: 800;

}

.bni-benefit h4 {
    margin: 0;
    color: #222;
    font-size: 13px;
    font-weight: 800;

}

.bni-benefit p {
    margin: 4px 0 0;
    color: #222;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500

}

.bni-contact-details {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e7e7e7;
}


.bni-contact-details-title {
    margin-bottom: 17px;

}


.bni-contact-details-title span {
    display: block;
    color: #d7192e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;

}


.bni-contact-details-title h4 {
    margin: 5px 0 0;
    color: #111;
    font-size: 18px;
    font-weight: 700;

}

.bni-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;

}

.bni-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  border-radius: 50%;
  background: #fff0f2;
    color: #d7192e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;

}

.bni-contact-detail small {
    display: block;
    margin-bottom: 2px;
    color: #222;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.bni-contact-detail a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

}


.bni-contact-detail a:hover {
    color: #d7192e;
}

.bni-contact-detail p {
    margin: 0;
    color: #111;
    font-size: 14px;
    line-height: 1.5;

}



.bni-bottom-text {
    margin-top: auto;
    padding-top: 25px;
    color: #d7192e;
    font-size: 12px;
    font-weight: 800;

}



.bni-premium-right {
  padding: 48px 55px;
    background: #fff;
}


.bni-form-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 23px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;

}

.bni-form-heading small {
    color: #d7192e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

}

.bni-form-heading h3 {
    margin: 8px 0 0;
    color: #111;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 400;

}


.bni-form-heading h3 span {
    color: #d7192e;
    font-weight: 800;

}


.bni-form-number {
    color: #d7192e;
    font-size: 28px;
    font-weight: 900;

}


.bni-form-row {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 20px;

}



.bni-form-field {
    margin-bottom: 18px;
}


.bni-form-field label {
    display: block;
    margin-bottom: 7px;
    color: #111;
    font-size: 13px;
    font-weight: 800;

}


.bni-form-field label em {
    color: #d7192e;
    font-style: normal;

}


.bni-form-field input,
.bni-form-field select,
.bni-form-field textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 7px;
    background: #fff;
    color: #222;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition:
        .25s ease;

}


.bni-form-field input,
.bni-form-field select {
   height: 52px;
    padding: 0 15px;

}


.bni-form-field textarea {
   min-height: 100px;
    padding: 13px 15px;
    resize: vertical;

}


.bni-form-field input::placeholder,
.bni-form-field textarea::placeholder {
    color: #222;

}


.bni-form-field input:focus,
.bni-form-field select:focus,
.bni-form-field textarea:focus {

    border-color: #d7192e;

    box-shadow:
        0 0 0 4px rgba(215,25,46,.06);

}


/* =========================================================
   FORM BOTTOM
========================================================= */

.bni-form-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid #eeeeee;

}


.bni-privacy {
    display: flex;
    align-items: center;
    gap: 9px;

}

.bni-privacy span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff0f2;
    color: #d7192e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;

}


.bni-privacy p {
    margin: 0;
    color: #111;
    font-size: 14px;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.bni-form-bottom button {

    height: 54px;

    min-width: 190px;

    padding: 0 8px 0 22px;

    border: none;

    border-radius: 7px;

    background: #d7192e;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    transition: .3s ease;

}


.bni-form-bottom button b {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

    font-weight: 400;

    transition: .3s ease;

}


.bni-form-bottom button:hover {

    background: #b9152a;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(215,25,46,.20);

}


.bni-form-bottom button:hover b {

    transform: translateX(4px);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px) {

    .bni-premium-wrap {

        grid-template-columns: 1fr;

    }


    .bni-premium-left {

        border-right: none;

        border-bottom: 1px solid #eeeeee;

    }


    .bni-left-main {

        margin-top: 50px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px) {

    .bni-premium-contact {

        padding: 45px 0;

    }


    .bni-premium-wrap {

        width: 94%;

        border-radius: 14px;

    }


    .bni-premium-left {

        padding: 32px 23px;

    }


    .bni-left-main {

        margin-top: 42px;

    }


    .bni-left-main h2 {

        font-size: 35px;

        letter-spacing: -1.4px;

    }


    .bni-left-main > p {

        font-size: 13px;

    }


    .bni-premium-right {

        padding: 32px 20px;

    }


    .bni-form-number {

        display: none;

    }


    .bni-form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .bni-form-bottom {

        flex-direction: column;

        align-items: stretch;

    }


    .bni-privacy {

        justify-content: center;

    }


    .bni-form-bottom button {

        width: 100%;

    }

}



/* ==================foter==================== */


.bni-black-footer,
.bni-black-footer * {
    box-sizing: border-box;
}


/* =========================================================
   FOOTER
========================================================= */

.bni-black-footer {

    width: 100%;

    background: #111111;

    color: #ffffff;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

}


/* =========================================================
   WRAPPER
========================================================= */

.bni-black-wrap {

    width: 90%;

    max-width: 1350px;

    margin: 0 auto;

    padding: 42px 0 18px;

}


/* =========================================================
   GRID
========================================================= */

.bni-black-grid {

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.3fr;

    gap: 45px;

    align-items: start;

}


/* =========================================================
   BRAND
========================================================= */

.bni-black-logo {

    color: #d7192e;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

}


.bni-black-logo span {

    color: #777;

    font-size: 10px;

    vertical-align: top;

}


.bni-black-city {

    margin-top: 5px;

    color: #ffffff;

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 800;

}


.bni-black-brand p {

    max-width: 330px;

    margin: 16px 0 0;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.6;

}


/* =========================================================
   HEADINGS
========================================================= */

.bni-black-column h4 {

    margin: 3px 0 8px;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 800;

}


/* =========================================================
   RED LINE
========================================================= */

.bni-black-line {

    display: block;

    width: 30px;

    height: 2px;

    margin-bottom: 18px;

    background: #d7192e;

}


/* =========================================================
   LINKS
========================================================= */

.bni-black-column a {

    display: block;

    width: fit-content;

    margin-bottom: 12px;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    line-height: 1.5;

    transition: all .2s ease;

}


.bni-black-column a:hover {

    color: #d7192e;

    transform: translateX(3px);

}


/* =========================================================
   CONTACT
========================================================= */

.bni-black-contact a {

    margin-bottom: 11px;

}


.bni-black-contact p {

    margin: 0;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.5;

}


/* =========================================================
   BOTTOM
========================================================= */

.bni-black-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 30px;

    padding-top: 17px;

    border-top: 1px solid #333333;

}


/* =========================================================
   COPYRIGHT
========================================================= */

.bni-black-copy {

    color: #ffffff;

    font-size: 14px;

}


/* =========================================================
   LEGAL
========================================================= */

.bni-black-legal {

    display: flex;

    align-items: center;

    gap: 28px;

}


.bni-black-legal a {

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition: .2s ease;

}


.bni-black-legal a:hover {

    color: #d7192e;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px) {

    .bni-black-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px) {

    .bni-black-wrap {

        width: 92%;

        padding: 35px 0 18px;

    }


    .bni-black-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 30px 20px;

    }


    .bni-black-brand {

        grid-column: 1 / -1;

    }


    .bni-black-brand p {

        max-width: 100%;

        font-size: 16px;

    }


    .bni-black-column h4 {

        font-size: 16px;

    }


    .bni-black-column a,
    .bni-black-contact p {

        font-size: 16px;

    }


    .bni-black-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

    }


    .bni-black-legal {

        flex-wrap: wrap;

        gap: 15px;

    }


    .bni-black-copy,
    .bni-black-legal a {

        font-size: 14px;

    }

}

/* ================about us ================ */
/* =========================================================
   BNI NOIDA — ABOUT PAGE
   ABOUT SECTION CSS
========================================================= */

.abt11,
.abt11 * {
    box-sizing: border-box;
}

.abt11 {
    width: 100%;
    background: #ffffff;
    color: #111111;
    font-family: "Plus Jakarta Sans", sans-serif;
}


/* =========================================================
   HERO
========================================================= */

.abt11-hero {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    min-height: 620px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    padding: 75px 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.abt11 .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #d7192e;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;

    margin-bottom: 22px;
}


.abt11 .dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    border-radius: 50%;

    background: #d7192e;

    box-shadow: 0 0 0 5px rgba(215, 25, 46, 0.08);
}


/* =========================================================
   HERO HEADING
========================================================= */

.abt11-hero h1 {
    max-width: 650px;

    margin: 0;

    color: #111111;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;
}


.abt11-hero h1 mark {
    color: #d7192e;

    background: transparent;

    position: relative;
}


.abt11-hero h1 mark::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 100%;
    height: 7px;

    background: rgba(215, 25, 46, 0.12);

    z-index: -1;
}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.abt11-hero p {
    max-width: 600px;

    margin: 25px 0 30px;

    color: #555555;

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   BUTTON
========================================================= */

.abt11-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 22px;

    background: #d7192e;

    color: #ffffff;

    text-decoration: none;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(215, 25, 46, 0.18);

    transition: all 0.25s ease;
}


.abt11-btn svg {
    width: 19px;
    height: 19px;

    transition: transform 0.25s ease;
}


.abt11-btn:hover {
    background: #b9152a;

    color: #ffffff;

    transform: translateY(-3px);
}


.abt11-btn:hover svg {
    transform: translateX(5px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.abt11-visual {
    position: relative;

    width: 100%;

    padding: 12px;
}


.abt11-visual::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 75%;
    height: 75%;

    border-top: 2px solid #d7192e;
    border-right: 2px solid #d7192e;

    border-radius: 0 20px 0 0;

    z-index: 0;
}


.abt11-visual img {
    position: relative;

    z-index: 1;

    width: 100%;

    height: 470px;

    object-fit: cover;

    display: block;

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.abt11-visual .badge {
    position: absolute;

    left: -15px;
    bottom: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    background: #111111;

    color: #ffffff;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


.abt11-visual .badge .dot {
    width: 7px;
    height: 7px;

    background: #d7192e;

    box-shadow: none;
}


/* =========================================================
   MISSION
========================================================= */

.abt11-mission {
    width: 100%;

    background: #f7f7f7;

    border-top: 1px solid #eeeeee;

    border-bottom: 1px solid #eeeeee;
}


.abt11-mission-inner {
    width: 90%;
    max-width: 1150px;

    margin: 0 auto;

    padding: 75px 0;

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    align-items: flex-start;
}


.abt11-mission .qmark {
    color: #d7192e;

    font-size: 100px;

    line-height: 0.7;

    font-weight: 800;

    opacity: 0.85;
}


.abt11-mission .tag,
.abt11-values .tag {
    margin: 0 0 15px;

    color: #d7192e;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.abt11-mission .statement {
    max-width: 1000px;

    margin: 0;

    color: #222222;

    font-size: 22px;

    line-height: 1.7;

    font-weight: 600;

    letter-spacing: -0.4px;
}


/* =========================================================
   VALUES SECTION
========================================================= */

.abt11-values {
    width: 90%;

    max-width: 1350px;

    margin: 0 auto;

    padding: 90px 0;
}


/* =========================================================
   VALUES HEADER
========================================================= */

.abt11-values-head {
    max-width: 760px;

    margin-bottom: 45px;
}


.abt11-values-head h2 {
    margin: 0 0 18px;

    color: #111111;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -2px;

    font-weight: 800;
}


.abt11-values-head > p:last-child {
    margin: 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   ICON GRID
========================================================= */

.icon-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* =========================================================
   ICON CARD
========================================================= */

.icon-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

    overflow: hidden;
}


.icon-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #eeeeee;

    transition: background 0.25s ease;
}


.icon-card:hover {
    transform: translateY(-6px);

    border-color: #dddddd;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}


.icon-card:hover::before {
    background: #d7192e;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.icon-card.featured {
    background: #111111;

    border-color: #111111;
}


.icon-card.featured::before {
    background: #d7192e;
}


.icon-card.featured h3 {
    color: #ffffff;
}


.icon-card.featured p {
    color: #fff;
}


/* =========================================================
   ICON
========================================================= */

.icon-card .ico {
    width: 52px;
    height: 52px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f5f5f5;

    color: #d7192e;
}


.icon-card.featured .ico {
    background: #d7192e;

    color: #ffffff;
}


.icon-card .ico svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
}


/* =========================================================
   CARD HEADING
========================================================= */

.icon-card h3 {
    margin: 0 0 12px;

    color: #111111;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.3px;
}


/* =========================================================
   CARD TEXT
========================================================= */

.icon-card p {
    margin: 0;

    color: #111;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .abt11-hero {
        gap: 40px;
    }

    .abt11-hero h1 {
        font-size: 48px;
    }

    .abt11-visual img {
        height: 400px;
    }

    .icon-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .abt11-hero {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 55px 0 65px;

        min-height: auto;
    }


    .abt11-hero h1 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }


    .abt11-hero p {
        font-size: 15px;

        line-height: 1.7;
    }


    .abt11-visual {
        padding: 8px;
    }


    .abt11-visual img {
        height: 320px;

        border-radius: 10px;
    }


    .abt11-visual .badge {
        left: 0;

        bottom: 25px;

        font-size: 10px;
    }


    /* MISSION */

    .abt11-mission-inner {
        width: 92%;

        padding: 55px 0;

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .abt11-mission .qmark {
        font-size: 65px;
    }


    .abt11-mission .statement {
        font-size: 18px;

        line-height: 1.65;
    }


    /* VALUES */

    .abt11-values {
        width: 92%;

        padding: 65px 0;
    }


    .abt11-values-head h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .abt11-values-head > p:last-child {
        font-size: 14px;
    }


    .icon-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .icon-card {
        min-height: auto;

        padding: 25px;
    }


    .icon-card h3 {
        font-size: 18px;
    }


    .icon-card p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .abt11-hero h1 {
        font-size: 34px;
    }


    .abt11-hero .eyebrow {
        font-size: 11px;
    }


    .abt11-visual img {
        height: 270px;
    }


    .abt11-mission .statement {
        font-size: 16px;
    }

}


/* ============================loader=============== */

  
        :root{
            --bni-red:#c8102e;
            --bni-red-dark:#8f0b20;
            --bni-track:#f1d3d8;
        }

        #bniPreloader{
            position:fixed !important;
            inset:0 !important;
            top:0 !important;
            left:0 !important;
            right:0 !important;
            bottom:0 !important;
            width:100% !important;
            height:100% !important;
            margin:0 !important;
            background:#ffffff;
            display:flex !important;
            align-items:center !important;
            justify-content:center !important;
            flex-direction:column !important;
            z-index:99999;
            transition:opacity .6s ease, visibility .6s ease;
        }
        #bniPreloader.hide{
            opacity:0;
            visibility:hidden;
        }
        #bniPreloader .bni-loader{
            display:flex !important;
            flex-direction:column !important;
            align-items:center !important;
            justify-content:center !important;
            text-align:center !important;
            width:auto !important;
            max-width:100% !important;
            margin:0 auto !important;
            float:none !important;
            position:static !important;
        }

        /* ===== PUZZLE STAGE ===== */
        .bni-puzzle-stage{
            position:relative;
            width:220px;
            height:110px;
            margin:0 auto 26px auto !important;
        }

        .bni-piece{
            position:absolute;
            width:110px;
            height:55px;
            overflow:hidden;
            opacity:0;
            animation-fill-mode:forwards;
        }
        .bni-piece img{
            position:absolute;
            width:220px;
            height:110px;
            object-fit:contain;
        }

        .piece-tl{ top:0; left:0; }
        .piece-tl img{ top:0; left:0; }
        .piece-tl{
            transform:translate(-70px,-70px) rotate(-8deg);
            animation:bniPieceIn .55s ease forwards;
            animation-delay:.1s;
        }

        .piece-tr{ top:0; left:110px; }
        .piece-tr img{ top:0; left:-110px; }
        .piece-tr{
            transform:translate(70px,-70px) rotate(8deg);
            animation:bniPieceIn .55s ease forwards;
            animation-delay:.35s;
        }

        .piece-bl{ top:55px; left:0; }
        .piece-bl img{ top:-55px; left:0; }
        .piece-bl{
            transform:translate(-70px,70px) rotate(8deg);
            animation:bniPieceIn .55s ease forwards;
            animation-delay:.6s;
        }

        .piece-br{ top:55px; left:110px; }
        .piece-br img{ top:-55px; left:-110px; }
        .piece-br{
            transform:translate(70px,70px) rotate(-8deg);
            animation:bniPieceIn .55s ease forwards;
            animation-delay:.85s;
        }

        @keyframes bniPieceIn{
            0%{ opacity:0; }
            40%{ opacity:1; }
            100%{
                opacity:1;
                transform:translate(0,0) rotate(0deg);
            }
        }

        .bni-puzzle-stage::after{
            content:"";
            position:absolute;
            inset:-14px;
            border-radius:12px;
            box-shadow:0 0 0 0 rgba(200,16,46,0);
            animation:bniGlowPulse .6s ease forwards;
            animation-delay:1.25s;
        }
        @keyframes bniGlowPulse{
            0%{ box-shadow:0 0 0 0 rgba(200,16,46,.35); }
            100%{ box-shadow:0 0 26px 4px rgba(200,16,46,0); }
        }

        .bni-seam-h, .bni-seam-v{
            position:absolute;
            background:var(--bni-track);
            opacity:0;
            animation:bniSeamIn .3s ease forwards;
            animation-delay:1.05s;
        }
        .bni-seam-h{ top:55px; left:0; width:220px; height:1px; }
        .bni-seam-v{ top:0; left:110px; width:1px; height:110px; }
        @keyframes bniSeamIn{ to{ opacity:.7; } }

        /* ===== TAGLINE + NOIDA + PROGRESS (kept from your original) ===== */
        .bni-noida{
            font-size:15px;
            letter-spacing:6px;
            color:var(--bni-red-dark);
            font-weight:700;
            opacity:0;
            animation:bniTextIn .5s ease forwards;
            animation-delay:1.3s;
            margin-bottom:6px;
        }

        .bni-tagline{
            font-size:12px;
            letter-spacing:2px;
            color:#666;
            text-transform:uppercase;
            font-weight:600;
            opacity:0;
            animation:bniTextIn .5s ease forwards;
            animation-delay:1.4s;
            margin-bottom:22px;
        }

        @keyframes bniTextIn{ to{ opacity:1; } }

        .bni-progress{
            width:220px;
            margin:0 auto !important;
            opacity:0;
            animation:bniTextIn .5s ease forwards;
            animation-delay:1.5s;
        }
        .bni-progress-bar{
            width:100%;
            height:4px;
            background:var(--bni-track);
            border-radius:4px;
            overflow:hidden;
        }
        .bni-progress-bar span{
            display:block;
            height:100%;
            width:0%;
            background:linear-gradient(90deg,var(--bni-red-dark),var(--bni-red));
            border-radius:4px;
            transition:width .1s linear;
        }
        .bni-progress-text{
            display:flex;
            justify-content:space-between;
            margin-top:8px;
            font-size:11px;
            letter-spacing:1px;
            color:var(--bni-red);
            font-weight:600;
            text-transform:uppercase;
        }
  

        /* ============================?join =========== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Segoe UI",
    Arial,
    sans-serif;

  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --bni-red: #d7192e;
  --bni-dark: #111111;
  --bni-grey: #6d6d6d;
  --bni-light: #f7f7f7;
  --bni-border: #e6e6e6;
}


/* =========================================================
   HERO
========================================================= */

.join-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      110deg,
      #ffffff 0%,
      #ffffff 58%,
      #fafafa 100%
    );
}

/* Red architectural shape */
.join-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;

  border: 90px solid rgba(215,25,46,.05);
}


/* Small red line */

.join-hero::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 120px;
  background: var(--bni-red);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.join-hero-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--bni-red);
  margin-bottom: 18px;
}


.hero-mini span {
  width: 35px;
  height: 2px;
  background: var(--bni-red);
}

.join-hero h1 {
  font-size: clamp(45px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 800;
  max-width: 800px;
}

.join-hero h1 span {
  color: var(--bni-red);
}
.hero-description {
  max-width: 650px;
  margin-top: 24px;
  color:#111;
  font-size: 18px;
  line-height: 1.8;
}


.join-steps-section {
  padding: 20px 0;
  background: #fff;
}

.section-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-heading small {
  display: block;
  color: var(--bni-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.section-heading p {
  margin-top: 18px;
  color: #111;
  font-size: 17px;
}
.join-steps {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
  gap: 25px;
}
.join-step {
  position: relative;
  min-height: 300px;
  padding: 35px;
  border: 1px solid var(--bni-border);
  background: #fff;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}
.join-step:hover {
  transform: translateY(-8px);
  border-color:
    rgba(215,25,46,.35);
  box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

/* Number */
.step-number {
  font-size: 62px;
  line-height: 1;
  font-weight: 900;
  color: #eeeeee;
  position: absolute;
  right: 25px;
  top: 20px;
  transition:
    color .3s ease;
}

.join-step:hover .step-number {
  color:
    rgba(215,25,46,.12);
}

/* Red top */
.step-red-line {
  width: 45px;
  height: 4px;
  background: var(--bni-red);
  margin-bottom: 50px;
}

.join-step h3 {
  font-size: 25px;
  margin-bottom: 15px;
  letter-spacing: -.5px;
}

.join-step p {
  color: #111;
  font-size: 15px;
  line-height: 1.8;
}

.invite-section {
  padding: 110px 0;
  background:
    linear-gradient(
      135deg,
      #111111 0%,
      #171717 100%
    );
  position: relative;
  overflow: hidden;
}

.invite-section::before {
  content: "BNI";
  position: absolute;
  right: -30px;
  bottom: -100px;
  font-size: 260px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,.025);
}

.invite-grid {
  display: grid;
  grid-template-columns:
    .85fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */
.invite-content small {
  color: #ff5364;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.invite-content h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 18px;
}
.invite-content h2 span {
  color: var(--bni-red);
}
.invite-content p {
  color: #111;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 25px;
  max-width: 470px;
}

.invite-form {
  background: #fff;
  padding: 45px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.25);
}
.invite-form-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  position: relative;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dddddd;
  background: #fff;
  padding: 16px 15px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}

.form-group textarea {
  min-height: 110px;

  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:
    var(--bni-red);
  box-shadow:
    0 0 0 3px
    rgba(215,25,46,.07);
}

/* Checkbox */
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 12px;
  color: #111;
  line-height: 1.6;
}

.form-check input {
  margin-top: 4px;

  accent-color:
    var(--bni-red);
}
.form-check a {
  color: var(--bni-red);

  font-weight: 700;
}

.invite-button {
  width: 100%;
  border: 0;
  background: var(--bni-red);
  color: #fff;
  padding: 17px 25px;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background .3s ease,
    transform .3s ease;
}

.invite-button:hover {
  background: #b91427;
  transform:
    translateY(-2px);
}


.know-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.know-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}

.know-header h2 {
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -2px;

}

.know-header p {
  max-width: 430px;
   color: #111;
  font-size: 15px;
}


.know-grid {
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 20px;
}

.know-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.know-card:hover {
  transform:
    translateY(-5px);
  box-shadow:
    0 20px 50px
    rgba(0,0,0,.07);

}

.know-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    rgba(215,25,46,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bni-red);
  font-size: 20px;
  font-weight: 900;
}

.know-card h3 {
  font-size: 19px;
  margin-bottom: 8px;

}

.know-card p {
  font-size: 14px;
  color: #111;
  line-height: 1.75;

}

.final-cta {
  padding: 20px 20px;
  text-align: center;
  background: #fff;
}

.final-cta small {
  color: var(--bni-red);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 10px;
}


.final-cta h2 {
  font-size: clamp(35px, 5vw, 60px);
  margin-top: 15px;
  line-height: 1.05;
  letter-spacing: -2px;

}

.final-cta p {
  max-width: 600px;
  margin: 20px auto 30px;
  color: #111;

}

.final-cta a {
  display: inline-flex;
  background: var(--bni-red);
  color: #fff;
  padding: 16px 30px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  transition:
    transform .3s ease;
}

.final-cta a:hover {
  transform:
    translateY(-3px);

}

@media(max-width:900px) {
  .join-steps {
    grid-template-columns:
      1fr;

  }
  .invite-grid {
    grid-template-columns:
      1fr;
    gap: 45px;

  }

  .know-grid {
    grid-template-columns:
      1fr;
  }
  .know-header {
    display: block;
  }

  .know-header p {
    margin-top: 20px;
  }

}
@media(max-width:600px) {
  .join-hero {
    min-height: 430px;
  }

  .join-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .hero-description {
    font-size: 15px;
  }
  .join-steps-section,
  .invite-section,
  .know-section {
    padding: 70px 0;

  }

  .join-step {
    min-height: auto;
    padding: 28px;
  }
  .invite-form {
    padding: 25px 20px;
  }

  .form-grid {
    grid-template-columns:
      1fr;
  }
  .form-group.full {
    grid-column: auto;
  }

  .invite-content h2 {
    font-size: 43px;

  }

  .know-card {
    padding: 24px;

  }

  .know-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

}


