:root {
  --brand: #5741a9; /* primary purple */

  --brand-2: #6b57c8; /* lighter purple */

  --brand-dark: #3f2f8f; /* darker purple */

  --ink: #1c1c1c;

  --muted: #6f6f6f;

  --bg: #ffffff;

  --section: #f7f7fb; /* very light purple/gray */
}

* {
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  color: var(--ink);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.text-brand {
  color: #fff;
}

.bg-brand {
  background: var(--brand);
}

.bg-soft {
  background: var(--section);
}

.shadow-soft {
  box-shadow: 0 10px 25px rgba(63, 47, 143, 0.12);
}

/* Navbar */

.navbar {
  --bs-navbar-padding-y: 0.85rem;
}

.navbar-brand img {
  height: 28px;
}

.nav-link {
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(87, 65, 169, 0.07) 0%,
    rgba(107, 87, 200, 0.07) 100%
  );
  z-index: 0;
}

.hero-shape {
  position: absolute;
  width: 90vmin;
  height: 90vmin;
  right: -15vmin;
  top: -15vmin;
  background: radial-gradient(
    closest-side,
    rgba(107, 87, 200, 0.25),
    transparent 70%
  );
  filter: blur(6px);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hero .lead {
  color: #3a3a3a;
}

/* Counters */

.counter {
  padding: 1.25rem 0;
  border-right: 1px solid #ececf3;
}

.counter:last-child {
  border-right: none;
}

.counter b {
  display: block;
  font-size: 1.25rem;
}

/* Feature Icons */

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #ececf3;
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Success video */

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.sidebar-fixed-btn {
    display:none;
    background: #ff7500;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 0px 0px 8px 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(40%, -50%) rotate(90deg);
    z-index: 9999;
}
.banner-join-btn {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7500;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display:none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-play .btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}

/* Zig / cards */

.icon-pill {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
}

/* Awards */

.award {
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  height: 100%;
}

.award img {
  height: 60px;
  object-fit: contain;
}

/* Gallery */

.gallery img {
  border-radius: 16px;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

/* FAQ */

.faq .accordion-button {
  font-weight: 600;
}

/* Footer */

footer {
  background: #0f0f14;
  color: #d7d7df;
}

footer a {
  color: #d7d7df;
}

.hero {
  background-image: url("../img/hero-bg.webp");
}

.main-hero {
  position: relative;
}

.bg-secc {
  /*background-image: url("../img/banner.jpg");*/

  /*height: 100vh;*/

  object-fit: cover;

  background-position: bottom;

  padding: 3rem 0;
}

.about-sec1 {
  /*background-image: url("../img/banner.jpg");*/

  /*height: 100vh;*/

  object-fit: cover;

  background-position: bottom;

  padding: 3rem 0;

  text-align: center;
}
.text-orange {
  color: #ff7500 !important;
}
.btn-orange {
  background: #ff7500 !important;
  color: white;
}
/* Utilities */

.section {
  padding: 64px 0;
}

.section-sm {
  padding: 40px 0;
}

.section-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #ececf3;
  border-radius: 16px;
  padding: 1rem;
}

.stat-chip i {
  font-size: 1.2rem;
  color: var(--brand);
}

.navbar {
  background-color: transparent !important;

  position: fixed;
  /*position: absolute;*/

  left: 50%;

  width: 100%;

  top: 0px;

  height: 70px;

  transform: translateX(-50%);

  z-index: 9999;
}
.navbar.fixed-header{
  background-color: #2f0d57!important;
}
.navbar .navbar-nav li a {
  color: #fff;

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  margin: 2px 5px;
}

@media (max-width: 991.98px) {
  .counter {
    border-right: none;
    border-bottom: 1px solid #ececf3;
  }

  .counter:last-child {
    border-bottom: none;
  }
}

.about-sec {
  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.about-sec h2 {
  color: #ff7500;

  font-weight: 700;

  text-transform: uppercase;
}

.about-sec ul li {
  display: inline-block;

  padding: 5px 10px;
}

.about-sec ul li i {
  margin-right: 5px;
}

.about-sec1 h2 {
  color: #ff7500;

  font-weight: 700;

  text-transform: uppercase;
}

.about-sec1 ul li {
  display: inline-block;

  padding: 5px 10px;
}

.about-sec1 ul li i {
  margin-right: 5px;
}

.step-card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

  padding: 2rem;

  background-color: #33135d;

  min-height: 172px;

  border-radius: 1rem;

  background-image: url(../img/hero-bg.webp);

  background-size: cover;
}

.step-card p {
  color: #fff;

  font-size: 15px;

  text-align: center;

  font-weight: 600;

  margin-bottom: 0;
}

.owl-carousel-1 .owl-nav i {
  background-color: #2f0d57 !important;

  color: #fff !important;

  height: 30px !important;

  width: 30px !important;

  line-height: 30px !important;

  border-radius: 0;

  transform: skewY(-5deg);
}

.orange-color {
  color: #ff7500;
}

.sectio-titleee {
  font-size: 30px;

  font-weight: 700;

  color: #ff7500;

  /* margin-top: 10px; */

  margin-bottom: 1rem;
}

.herooo1 p {
  color: #fff;
}

.herooo1 p i {
  color: #ff7500;

  margin-right: 10px;
}

.step-card .nomber {
  background-color: #ff7500;

  color: #fff;

  padding: 1px;

  font-size: 1.2rem;

  border-radius: 50%;

  height: 30px;

  width: 30px;

  display: inline-block;

  position: relative;

  margin-bottom: 10px;

  text-align: center;

  display: none;
}

.new-type-cta {
  min-height: 400px;

  display: flex;

  width: 100%;

  justify-content: center;

  align-items: center;

  position: relative;

  background-image: url("../img/cta-bgg.webp");

  background-position: center;

  background-attachment: fixed;

  background-size: cover;
}

.new-type-cta:before {
  content: "";

  background-color: rgba(0, 0, 0, 0.5);

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  top: 0;

  z-index: 1;
}

.new-type-cta h3 {
  font-size: 30px;

  font-weight: 700;

  color: #ff7500;

  text-transform: uppercase;

  margin-top: 10px;

  margin-bottom: 1rem;
}

.new-type-cta .container {
  z-index: 99;

  text-align: center;
}

.new-type-cta .container h6 {
  color: #fff;
}
.theme-btn {
  background-color: #ff7500;
  color: white;
}
.image-size {
  width: 200px;
  height: 75px;
}
.theme-bg {
  background-color: #2f0d57;
}

.brand-img {
  width: 80%;        /* Responsive width */
  height: 100px;      /* Fixed height */
  object-fit: contain;
  transition: border-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent; /* transparent border by default for layout stability */
  border-radius: 12px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  border-radius: 0.5rem;
}

.brand-img:hover {
  border-color: purple; /* purple border on hover */
  transform: scale(1.05); /* optional slight zoom */
}

.countdown-sec {
  /*background: url("https://i.postimg.cc/VsbBBSZs/desk-white-black-header.jpg") no-repeat center center fixed;*/

  background-size: cover;

  margin: 0;

  height: 100%;

  display: flex;

  align-items: center;

  align-content: space-around;
}

.count-down {
  max-width: 900px;

  min-height: 240px;

  margin: auto;

  padding: 20px;

  text-align: center;
}

.count-down .flipdown {
  margin: auto;

  width: 100%;

  margin-top: 30px;
}

.count-down h1 {
  text-align: center;

  font-weight: 400;

  font-size: 3em;

  margin-top: 0;

  margin-bottom: 10px;
}

.flipdown .rotor-group {
  position: relative;

  float: left;

  padding-right: 120px;
}

.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after {
  content: "";

  position: absolute;

  bottom: 50px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  content: "";

  position: absolute;

  bottom: 20px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(n + 1):nth-child(-n + 2):after {
  content: "";

  position: absolute;

  bottom: 50px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(n + 1):nth-child(-n + 2):before {
  content: "";

  position: absolute;

  bottom: 20px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;
}

.flipdown .rotor-group:nth-child(1):before,
.flipdown .rotor-group:nth-child(2):after {
  content: "";

  position: absolute;

  bottom: 50px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background-color: #151515;
}

.flipdown .rotor-group:nth-child(1):after,
.flipdown .rotor-group:nth-child(2):after {
  content: "";

  position: absolute;

  bottom: 20px;

  left: 165px;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background-color: #151515;
}

.cta-formm {
  background-image: url(../img/hero-bg.webp);

  margin-top: 3rem;
}

@media (max-width: 550px) {
  .count-down {
    width: 100%;

    height: 362px;
  }

  .count-down h1 {
    font-size: 2.5em;
  }
}

.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-top,
.flipdown.flipdown__theme-dark .rotor-leaf-front {
  color: #ffffff;

  background-color: #2f0d57;
}

.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: #efefef;

  background-color: #2f0d57;
}

.cta-formm input,
.cta-formm textarea {
  border-radius: 0;

  outline: 1px solid #2f0d57;

  border: none;

  margin-top: 10px;

  margin-bottom: 1rem;

  background-color: #fff;
}

.cta-formm form {
  background-color: #fff;

  padding: 1rem;

  color: #000;

  border-radius: 1rem;
}

.cta-formm form .btn {
  background-color: #2f0d57;

  color: #fff;

  border-radius: 8px;

  outline: none;

  border: none;
}

img.befit-logo {
  position: absolute;

  top: 13px;

  left: 17px;

  width: 140px;

  z-index: 99999;
  cursor: pointer !important;
}

.desktop-video-banner {
  display: block;
}

.mobile-video-banner {
  display: none;
}

img.befit-logo1 {
  position: absolute;

  top: 5px;

  right: 17px;

  width: 90px;

  z-index: 99;
}

.social-items {
  display: flex;

  justify-content: center;

  align-items: center;
}

.social-sec h3 {
  color: #ff7500;

  font-weight: 700;
}

.social-sec h2 {
  text-transform: uppercase;

  font-weight: 700;

  font-size: 25px;

  color: #2f0d57;
}

.social-items a i {
  color: #ffff;

  background-color: #2f0d57;

  margin: 0 5px;

  font-size: 17px;

  padding: 5px;

  height: 30px;

  width: 30px;

  line-height: 23px;

  border-radius: 7px;
}

footer {
  margin-bottom: 0;

  text-align: center;

  padding: 1.5rem 1rem;

  color: #000000;

  background-color: aliceblue;
}

.footer .social-sec {
  text-align: right;
}

.main-hero video {
  height: 100vh;

  object-fit: cover;

  object-position: bottom;
}

.about-section-title {
  color: #000 !important;

  font-size: 30px;

  font-weight: 700;
}

.about-section-title span {
  color: #ff7500 !important;

  font-size: 30px;

  font-weight: 700;
}

/*---------------------

  Pricing Section

-----------------------*/

.pricing-section {
  background: #2f0d57;

  padding: 3rem 0;
}

.pricing-section .section-title {
  margin-bottom: 36px;
}

.ps-item {
  text-align: center;

  padding: 40px 30px 52px;

  border: 1px solid #464646;

  -webkit-transform: skewY(-4deg);

  -ms-transform: skewY(-4deg);

  transform: skewY(-4deg);

  -webkit-transition: all 0.5s;

  -o-transition: all 0.5s;

  transition: all 0.5s;

  margin-bottom: 30px;

  position: relative;
}

.ps-item:hover {
  background: #ffffff;

  border-color: #ffffff;
}

.ps-item:hover h3 {
  color: #111111;
}

.ps-item:hover .pi-price span {
  color: #444444;
}

.ps-item:hover ul li {
  color: #111111;

  font-weight: 600;
}

.ps-item:hover .primary-btn.pricing-btn {
  background: #f36100;
}

.ps-item:hover .thumb-icon {
  opacity: 1;

  visibility: visible;
}

.ps-item h3 {
  font-size: 23px;

  color: #ff7500;

  font-weight: 700;

  margin-bottom: 16px;

  -webkit-transform: skewY(4deg);

  -ms-transform: skewY(4deg);

  transform: skewY(4deg);
}

.ps-item .pi-price {
  margin-bottom: 30px;

  -webkit-transform: skewY(4deg);

  -ms-transform: skewY(4deg);

  transform: skewY(4deg);
}

.ps-item .pi-price h2 {
  font-size: 60px;

  color: #f36100;

  font-weight: 600;
}

.ps-item .pi-price span {
  color: #fff;

  font-size: 16px;

  font-weight: 700;

  text-transform: uppercase;
}

.ps-item ul {
  margin-bottom: 40px;

  -webkit-transform: skewY(4deg);

  -ms-transform: skewY(4deg);

  transform: skewY(4deg);

  padding-left: 30 !important;

  text-align: left;
}

.ps-item ul li:before {
  content: "";

  position: absolute;

  height: 6px;

  width: 6px;

  top: 13px;

  background-color: #ff7500;

  border-radius: 50%;

  left: -15px;
}

.ps-item ul li {
  font-size: 14px;

  color: #fff;

  line-height: 32px;

  position: relative;

  list-style: none;

  text-align: left;
}

.pricing-section .section-title h2 {
  color: #ff7500;

  font-weight: 700 !important;

  text-transform: uppercase !important;

  text-align: center;
}

.ps-item .primary-btn.pricing-btn {
  display: block;

  background: #ff7500;

  -webkit-transform: skewY(4deg);

  -ms-transform: skewY(4deg);

  transform: skewY(4deg);

  color: #fff;

  font-weight: 600;

  text-transform: uppercase;

  padding: 8px 20px;

  text-decoration: none;
}

.ps-item .thumb-icon {
  font-size: 48px;

  color: #f36100;

  position: absolute;

  left: 50px;

  bottom: 120px;

  -webkit-transform: skewY(4deg);

  -ms-transform: skewY(4deg);

  transform: skewY(4deg);

  opacity: 0;

  visibility: hidden;
}

.sectio-title .text-brand {
  color: #ff7500;
}

.herooo p {
  color: #fff;

  font-size: 16px;
}

button.menu-button-mobile {
  display: none;
}

button.menu-button-mobile {
  position: fixed;

  left: 50%;

  transform: translateX(-50%);

  background-color: #fff;

  z-index: 9999999999;

  outline: none;

  border: none;

  text-transform: uppercase;

  font-weight: 600;

  font-size: 12px;

  border-radius: 0 0 10px 10px;

  padding: 5px 12px;

  color: #000;
}

.menu-button-mobile {
  background-color: #222;

  color: #fff;

  border: none;

  padding: 12px 20px;

  font-size: 16px;

  border-radius: 6px;

  cursor: pointer;

  display: flex;

  align-items: center;

  gap: 8px;
}

.mobile-menu-items {
  display: none;

  background: #2f0d57;

  border-radius: 0px 0 10px 10px;

  margin-top: 0px;

  overflow: hidden;

  z-index: 9999999;

  position: fixed;

  width: 100%;

  height: 200px;

  text-align: center;

  padding-top: 3rem;

  text-transform: uppercase;

  color: #fff;
}

.mobile-menu-items ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.mobile-menu-items li {
  border-bottom: 1px solid #ddd;
}

.mobile-menu-items li:last-child {
  border-bottom: none;
}

.mobile-menu-items a {
  display: block;

  padding: 20px 0 20px;

  color: #fff;

  text-decoration: none;

  transition: background 0.3s;
}

.mobile-menu-items a:hover {
  background: #ff7500;
}

/* Smooth slide-down animation */

.mobile-menu-items.show {
  display: block;

  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;

    transform: translateY(-20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

section.services-section {
  margin-top: 3rem;

  background-color: #2f0d57;
}

.services-section .service-items h3 {
  color: #ff7500;

  font-weight: 700 !important;

  text-transform: uppercase !important;

  text-align: left;

  margin-bottom: 1rem;
}

.services-bg-img {
  background-image: url("../img/ser-img.webp");

  min-height: 500px;

  max-height: 100%;

  object-fit: cover;

  background-position: center;

  background-size: cover;
}

.services-section .service-items {
  padding: 1rem;
}

.services-section .service-items h5 {
  color: #fff;

  font-weight: 500;

  font-size: 17px;
}

.services-section .service-items h5 span {
  font-weight: 600;
  margin-right: 10px;
}

.highlightedd-new-text {
  color: #ff7500;
  font-weight: 700;
  margin-top: 2rem;
  display: block;
  font-size: 22px;
}
.join-now-new-div {
  margin-top: 2rem;
}
.join-now-new-div .join-now-new-btn {
  background-color: #ff7500;
  color: #fff;
  padding: 8px 20px;
  outline: none;
  text-decoration: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.highlight-offer-text {
  margin-top: 1rem;
  color: #fff;
  font-size: 17px !important;
  font-weight: 500;
  text-align: center;
}
.highlight-offer-text b {
  color: #ff7500 !important;
  font-weight: 700;
  background-color: #ffffff !important;
  padding: 2px 10px;
  border-radius: 7px;
}

.offers-carousel .owl-nav {
  display: block !important;
}
.offers-carousel .owl-nav button.owl-prev {
  left: -24px;
  border-radius: 50%;
}
.offers-carousel .owl-nav button.owl-next {
  right: -24px;
  border-radius: 50%;
}
.offers-carousel .owl-stage-outer {
  padding-top: 2rem;
}
.offers-carousel .owl-nav button,
.offers-carousel .owl-nav button:hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px !important;
  /* margin: 10px; */
  background-color: #ffffff !important;
  color: #2f0d57 !important;
  height: 30px;
  width: 30px;
  z-index: 99999;
}

.download-app a img {
  width: 144px;
}
.download-app a {
  display: inline-block;
}
.download-app {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.services-pic img {
  min-height: 460px;

  max-height: 500px;

  min-width: 100%;

  object-fit: cover;
}

.services-item {
  background: #2d025f;

  position: relative;

  padding: 1rem 1.5rem !important;

  min-height: 149px;

  border-right: 1px solid #666;

  border-bottom: 1px solid #666;
}

.services-item.bg-gray {
  background: #2d025f;
}

.services-item.pd-b {
  padding-top: 28px;
}

.services-item img {
  position: absolute;

  left: 70px;

  top: 80px;
}

.services-item h4 {
  font-size: 18px;

  color: #ffffff;

  margin-bottom: 20px;
  font-weight: 500;

  margin-top: 15px;
}

.services-item p {
  color: #bdbdbd;

  margin-bottom: 0;
}

.services-item h4 {
  color: #ff7500;
}

.services-item p {
  color: #fff;
}

@media (max-width: 767px) {
  button.menu-button-mobile {
    display: block;
  }

  .desktop-video-banner {
    display: none;
  }

  .mobile-video-banner {
    display: block;
  }

  .flipdown .rotor-group {
    padding-right: 23px;
  }

  .flipdown .rotor-group:before,
  .flipdown .rotor-group:after {
    display: none !important;
  }

  .count-down {
    max-width: 900px;

    min-height: 186px;
  }

  .step-card {
    margin-bottom: 1rem;
  }

  .sectio-titleee {
    font-size: 22px;
  }

  img.befit-logo {
    top: 15px;
        right: 10px;
        width: 90px;
    z-index: 999999;
  }
  .navbar{
    height: 55px;
  }

  img.befit-logo1 {
   position: absolute;
        top: 9px;
        right: 10px;
        width: 50px;
        z-index: 9999999;
  }

  .social-sec h2 {
    font-size: 18px;
  }

  .social-sec h3 {
    font-size: 18px;
  }

  .about-sec1 h2 {
    font-size: 20px;
  }

  .cta-formm h4 {
    font-size: 17px;
  }

  .pricing-section .section-title h2 {
    font-size: 20px;
  }

  .ps-item h3 {
    font-size: 19px;
  }

  .new-type-cta h3 {
    font-size: 22px;
  }

  .services-item {
    min-height: 160px;
  }
}
.variation-wrapper {
  /* margin-bottom: 80px; */

  background: white;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.variation-title {
  text-align: center;

  font-size: 28px;

  color: #333;

  margin-bottom: 40px;

  padding-bottom: 20px;

  border-bottom: 3px solid #ff8c00;

  font-weight: 800;
}

/* ============================================

VARIATION 1: SPLIT SCREEN WITH CARDS

============================================ */

.v1-section {
  background: linear-gradient(135deg, #2d1550 0%, #4a148c 50%, #5e1a9e 100%);

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

  position: relative;
}

.v1-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 50%
  );
}

.v1-wrapper {
  display: grid;

  grid-template-columns: 45% 55%;

  min-height: 600px;

  position: relative;
}

.v1-image-side {
  position: relative;

  overflow: hidden;
}

.v1-coach-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.v1-image-side:hover .v1-coach-image {
  transform: scale(1.05);
}

.v1-image-overlay {
  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  background: linear-gradient(to top, rgba(74, 20, 140, 0.95), transparent);

  padding: 30px;

  color: white;
}

.v1-coach-badge {
  display: inline-block;

  background: rgba(255, 140, 0, 0.9);

  padding: 8px 20px;

  border-radius: 25px;

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 1px;

  margin-bottom: 10px;
}

.v1-coach-tagline {
  font-size: 20px;

  font-weight: 600;
}

.v1-content {
  /* padding: 50px 60px; */

  position: relative;

  z-index: 1;
}

.v1-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: rgba(255, 140, 0, 0.15);

  border: 2px solid #ff8c00;

  color: #ff8c00;

  padding: 8px 20px;

  border-radius: 30px;

  font-weight: 700;

  font-size: 13px;

  letter-spacing: 1.5px;

  margin-bottom: 20px;

  text-transform: uppercase;
}

.v1-title {
  /* font-size: 48px; */

  font-weight: 800;

  color: white;

  margin-bottom: 20px;

  line-height: 1.2;
}

.v1-title span {
  /* background: linear-gradient(135deg, #ff8c00, #ffa500);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent; */
}

.v1-app-box {
  background: rgba(255, 255, 255, 0.1);

  border-left: 4px solid #ff8c00;

  padding: 20px 24px;

  border-radius: 12px;

  margin-bottom: 35px;

  backdrop-filter: blur(10px);
}

.v1-app-title {
  color: #ff8c00;

  font-weight: 700;

  font-size: 16px;

  margin-bottom: 8px;
}

.v1-app-text {
  color: rgba(255, 255, 255, 0.9);

  font-size: 15px;

  line-height: 1.6;
}

.v1-challenges-header {
  color: #ff7500;

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 25px;

  text-transform: uppercase;
}

.v1-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 30px;
}

.v1-card {
  background: rgba(255, 255, 255, 0.08);

  border: 2px solid rgba(255, 140, 0, 0.3);

  border-radius: 16px;

  padding: 24px;

  transition: all 0.3s ease;

  cursor: pointer;
}

.v1-card:hover {
  transform: translateY(-5px);

  border-color: #ff8c00;

  background: rgba(255, 140, 0, 0.12);

  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}
.pricing-section .v1-card:hover {
  background-color: white !important;
}

.v1-week {
  display: inline-block;

  background: #ff7500;

  color: white;
  padding: 6px 16px;

  border-radius: 20px;

  font-weight: 700;

  font-size: 14px;

  margin-bottom: 12px;
}

.v1-challenge-name {
  color: white;

  font-size: 17px;

  font-weight: 700;

  margin-bottom: 8px;
}

.v1-challenge-desc {
  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-style: italic;
}

.v1-cta {
  display: flex;

  gap: 15px;

  align-items: center;
}

.v1-btn {
  background: #ff7500;

  color: white;

  border: none;

  padding: 16px 32px;

  border-radius: 12px;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.v1-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
}
.variation {
  /* margin-bottom: 80px; */
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.variation h2 {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid #ff8c00;
}

/* Variation 1: Modern Card with Badges */
.v1-section {
  background: #2f0d57;
  padding: 60px 20px;
  border-radius: 20px;
}

.v1-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  /* margin-bottom: 50px; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.v1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.v1-card {
  background: white;
  border-radius: 16px;
  padding: 50px 32px 32px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.v1-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.3);
}

.v1-badge {
  position: absolute;
  top: 11px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v1-card.featured {
  border: 3px solid #ff8c00;
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.2);
}

.v1-card-title {
  color: #2f0d57;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-right: 60px;
}
.joinnowmodalform .modal-body{
position:relative;
padding:0;
}
.joinnowmodalform .modal-body .btn-close{
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: white;
    opacity: 1;
    padding: 5px;
    border-radius: 0px;
    z-index:9999;
    font-size: 15px;
}

.v1-features {
  list-style: none;
  margin-bottom: 28px;
      margin-left: 0;
    padding-left: 0;
}

.v1-features li {
  color: #555;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.v1-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
  font-size: 18px;
}

.v1-btn {
  width: 100%;
  /* background: linear-gradient(135deg, #ff6b00, #ff8c00); */
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v1-btn:hover {
  /* background: linear-gradient(135deg, #ff8c00, #ffa500); */
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.v3-features li {
  color: #555;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.v3-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
  font-size: 18px;
}

.v3-btn {
  width: 100%;
  background: #4a148c;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-card.best-value .v3-btn {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
}

.v3-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 20, 140, 0.3);
}

@media (max-width: 768px) {
  .v1-title,
  .v2-title,
  .v3-title {
    font-size: 28px;
  }

  .variation {
    padding: 20px;
  }
  .banner-join-btn {
    display:block;
}
.sidebar-fixed-btn {
    display:block;
}
}
