.rs-header-area {
  display: none;
}

.rs-banner-three .rs-banner-title {
  font-size: 85px;
  line-height: 105px;
  color: white;
}
.section-space-bottom {
  padding-top: 60px !important;
  padding-bottom: 20px !important;
}

.rs-banner-three .rs-banner-bg {
  background: black;
  background-image: url(assets/images/pick/landingpage/main-banner-bg.png);
}

.dna-flow {
  background: linear-gradient(90deg, #ff1a1a, #ff4d4d, #ff9900, #ff1a1a);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;

  /* Gradient keeps moving */
  animation: dnaFlow 3s linear infinite;

  /* Smooth hover motion */
  transition: transform 0.4s ease;
}

@keyframes dnaFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.info-card {
  background-color: #fffceb;
}

.dna-flow:hover {
  transform: translateX(5px) scale(1.05);
}

section#about-me {
  background-image: url(assets/images/pick/landingpage/main-banner-bg.png);
}

.about-para {
  color: #fff;
  font-size: 16px;
}

.banner-para {
  color: #fff;
  font-size: 32px;
  line-height: 50px;
}

.imp-word {
  color: #ffffff;
  font-weight: 400;
  font-size: 32px;
}

.pill-wrap-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
}

.pill-outline {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  position: relative;
  background: linear-gradient(129deg, #fb6024, #ababab00);
  z-index: 1;
}

.rs-section-title {
  color: #fbefe1;
}

/* Gradient border trick */
.pill-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1.8px;
  /* background: linear-gradient(90deg, #ff2a2a, #ff6c02); */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.btn-primary {
  background: linear-gradient(37deg, #ec0a0a, #ffb405);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255, 58, 58, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 58, 58, 0.35);
}

.btn-outline {
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  color: #ff2a2a;
  text-decoration: none;
  position: relative;
}

/* Gradient border */
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.8px;
  background: linear-gradient(90deg, #ff2a2a, #ff7a18);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-outline:hover {
  background: rgba(255, 42, 42, 0.05);
}

.cta-note {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #ffffff;
}

.cta-note {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  font-size: 14px;
  color: #ffe748;
}

.cta-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  opacity: 0.9;
}

.video-frame-wrap {
  max-width: 1100px;
  /* margin: 40px auto; */
  padding: 2px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, #ff2a2a, #ff7a18, #ff2a2a);
  box-shadow: 0 0 25px rgba(255, 90, 30, 0.45); */
}
.video-frame-inner {
  background: #0f0f14;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 ratio */
}

.video-frame-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.invite-section {
  max-width: 820px;
  margin: 30px auto;
  text-align: center;
  color: #222;
}

.invite-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #ffffff;
}

.invite-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.btn-save-seat {
  background: linear-gradient(135deg, #ff2a2a, #ff7a18);
  color: #fff;
  padding: 9px 34px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 60, 40, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-save-seat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 60, 40, 0.45);
}

.invite-note {
  font-size: 13px;
  color: #ffe032;
}

.rs-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.rs-counter-item {
  /* background: #fff; */
  padding: 30px 20px;
  border-radius: 14px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rs-counter-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Gradient icon */
.rs-counter-content h2 i {
  background: linear-gradient(135deg, #ea3223, #f76c14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rs-counter-two .rs-counter-wrapper {
  background: linear-gradient(354deg, #252525, #00000000);
  padding: 20px;
  border-radius: 10px;
}

/* Text */
.rs-counter-content p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.rs-counter-content h2 i {
  font-size: 45px !important;
}

.video-card {
  height: 370px;
}

section.rs-counter-area.rs-counter-two,
.testimonial-area {
  background: #0e0c15;
}

.rs-counter-two .rs-counter-content P {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.video-card {
  padding: 10px;
  border-radius: 12px;
  display: inline-block;
}

.video-card iframe {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  display: block;
  border: none;
}

.rs-text-primary {
  /* color: #ff3826; */
  background: linear-gradient(45deg, #e3260b, #ff711a00);
  padding: 1px 30px;
  border-radius: 29px;
  color: #fbefe1;
}

span.highlight {
  color: #f0b93c;
  font-style: italic;
  font-weight: 600;
}

.primary-bg {
  background-color: #0e0c15;
}

h2.rs-cta-title.rs-split-text-enable.split-in-fade {
  font-weight: 100 !important;
  font-size: 51px;
  color: #fbefe1;
}

/* Responsive */
@media (max-width: 992px) {
  .rs-counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .rs-counter-wrapper {
    grid-template-columns: 1fr;
  }
}

.learn-section {
  background: #0e0c15;
  /* background: #F2F4FF; */
}

.learn-card {
  background: #fffceb;
  border-radius: 14px;
  padding: 10px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.learn-card img {
  border-radius: 10px;
  margin-bottom: 12px;
}

.learn-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: 0px;
  color: #000000;
  line-height: 25px;
  font-family: "Poppins";
}

.learn-card p {
  font-size: 14px;
  color: #373636;
  line-height: 20px;
  font-weight: 400;
}

.who-section {
  padding: 50px 0;
  background: #000;
}

.who-title {
  font-size: 45px;
  font-weight: 500;
  color: #fbefe1;
}

.who-subtitle {
  color: #cfcfcf;
  max-width: 650px;
  margin: auto;
  font-size: 17px;
}

.who-card {
  background: #111;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #b70000;
  border: 1px solid rgb(255 81 81 / 74%);
  height: 100%;
  /* box-shadow: 0 15px 40px rgb(113 19 19 / 90%), inset 0 1px 0 rgba(255, 255, 255, 0.06); */
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 1);
}

.who-card h5 {
  font-size: 27px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 35px;
  color: #ff7d2b;
  background: linear-gradient(90deg, #ff1a1a, #ff4d4d, #ff9900, #ff1a1a);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.who-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.who-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.who-card ul li:last-child {
  border-bottom: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 15px;
  font-weight: bold;
}

.icon.good {
  background: #22c55e;
  color: #000;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.icon.bad {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
}

/* Mobile Enhancements */
@media (max-width: 576px) {
  .who-title {
    font-size: 2rem;
  }

  .who-card {
    padding: 26px;
  }

  .who-card h5 {
    font-size: 1.2rem;
  }
}

.experience-section {
  padding: 40px 0;
  background: #000;
}

.exp-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
}

.exp-subtitle {
  color: #d1d5db;
  font-size: 1.05rem;
}

.video-wrapper {
  background: #111;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  max-width: 900px;
  margin: auto;
}

.video-wrapper iframe {
  border-radius: 14px;
}

/* Mobile */
@media (max-width: 576px) {
  .exp-title {
    font-size: 2rem;
  }
}

.reserve-btn {
  margin-top: 30px;
}

.transform-section {
  padding: 40px 0;
  background: radial-gradient(circle at top, #0b0f1a, #000 70%);
}

.transform-title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
}

.transform-subtitle {
  color: #aab2c8;
  max-width: 650px;
  margin: auto;
}

.transform-card {
  background: rgba(20, 25, 40, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 36px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  transition: all 0.35s ease;
}

.transform-card:hover {
  transform: translateY(-10px);
}

.transform-card h4 {
  color: #f0d436;
  font-weight: 700;
  margin-bottom: 24px;
}

.before-badge {
  background: linear-gradient(135deg, #ff4b5c, #ff1e38);
  color: #fff;
  border-radius: 999px;
  padding: 5px 25px;
  font-size: 20px;
}

.after-badge {
  background: linear-gradient(135deg, #00ffb3, #00c896);
  color: #000;
  border-radius: 999px;
  padding: 5px 25px;
  font-size: 20px;
}

.transform-card ul {
  list-style: none;
  padding-left: 0;
}

.transform-card ul li {
  padding: 12px 0;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.transform-card ul li:last-child {
  border-bottom: none;
}

/* Mobile */
@media (max-width: 576px) {
  .transform-title {
    font-size: 2rem;
  }

  .transform-card {
    padding: 26px;
  }
}

.pricing-section {
  padding: 80px 0;
  color: #ffffff;
  background-color: #000;
}

.text-info {
  color: rgb(254 152 98) !important;
  font-size: 17px;
  font-weight: 600;
}

.text-secondary {
  color: rgb(249 249 249) !important;
}

.value-list li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  gap: 10px;
}

.price-card {
  background: linear-gradient(135deg, #0d0d0d, #111);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  background-clip: padding-box;
  box-shadow: 0 0 30px rgb(240 132 64 / 76%);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #00ffb3, #3b82f6);
  z-index: -1;
  border-radius: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #f7c45f;
  font-size: 35px;
  font-weight: 600;
}

.new-price {
  font-size: 50px;
  color: #ff7d2b;
  background: linear-gradient(90deg, #ff1a1a, #ff4d4d, #ff9900, #ff1a1a);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
  animation: dnaFlow 3s linear infinite;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .new-price {
    font-size: 38px;
  }
  .workshop-pill-date {
    font-size: 14px;
  }
  .workshop-pill-text {
    font-size: 14px;
  }

  .pricing-section {
    padding: 50px 15px;
  }

  .rs-banner-three .rs-banner-title {
    font-size: 70px;
    line-height: 77px;
    color: white;
    margin-top: 0px;
  }
  .btn-save-seat {
    background: linear-gradient(135deg, #ff2a2a, #ff7a18);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 17px;
    text-align: center;
  }
  .rs-section-subtitle {
    font-size: 14px;
    color: orangered;
  }
  .banner-para {
    font-size: 20px;
    line-height: 31px;
  }
  .info-card img {
    max-height: 50px;
    object-fit: contain;
  }

  .imp-word {
    font-size: 21px;
  }

  .cta-note {
    gap: 10px;
    line-height: 16px;
    font-size: 11px;
  }

  .rs-counter-two .rs-counter-wrapper {
    justify-content: center;
  }
  .rs-counter-item {
    padding: 16px 20px;
  }
  .who-card h5 {
    font-size: 30px !important;
    letter-spacing: 1px;
  }
  .who-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .transform-section {
    padding: 50px 0px;
    background: radial-gradient(circle at top, #0b0f1a, #000 70%);
  }
  .learn-card p {
    font-size: 17px;
  }
  h2.rs-cta-title.rs-split-text-enable.split-in-fade {
    font-size: 42px;
    line-height: 50px;
  }
  .learn-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 18px;
    letter-spacing: 0px;
    color: #000000;
    line-height: 25px;
    font-family: "Poppins";
  }
  .video-card {
    width: 400px;
    height: 413px;
  }
  .learn-card {
    padding: 17px;
  }
}

.whatlearn {
  font-weight: 500;
  color: #fbefe1;
  font-size: 41px;
}
.rs-brand-three .rs-brand-item {
  background: #fffceb;
}
.clients-section {
  background-color: #000;
}
.testimonial_swiper_two .swiper-pagination {
  position: relative;
  margin-top: 30px;
  bottom: 0 !important;
  top: auto !important;
  text-align: center;
}
.rs-testimonial-one {
  background: #0e0c15;
}
.rs-testimonial-content p {
  color: #fff;
}
.rs-testimonial-one .rs-testimonial-item {
  background: #111 !important;
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  border: 1px solid rgb(255 81 81 / 74%);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
/* Make Swiper slides equal height */
.testimonial_swiper_two .swiper-wrapper {
  align-items: stretch;
}
.testimonial_swiper_two .swiper-slide {
  height: auto;
  display: flex;
}
/* Make each testimonial card stretch fully */
.testimonial_swiper_two .rs-testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Push bottom (name area) to bottom */
.testimonial_swiper_two .rs-testimonial-content {
  flex-grow: 1;
}
.rs-testimonial-bottom div span {
  color: #ffc62d;
}
.workshop-title {
  font-size: 25px;
  color: #000000;
}
/* LEFT IMAGE WRAPPER */
.left-visual-wrap {
  padding: 18px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cost {
  color: #ff6c1b;
  font-size: 28px;
  font-weight: 600;
}
span.text {
  color: #f6ead4;
  font-size: 19px;
}
/* IMAGE STYLE */
.left-visual-img {
  max-width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease;
}
/* Hover animation */
.left-visual-img:hover {
  transform: translateY(-6px) scale(1.03);
}
/* WORKSHOP DETAILS HIGHLIGHT */
.workshop-highlight-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 22px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* Soft glow effect */
.workshop-highlight-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 18px rgb(255 82 0 / 15%);
  pointer-events: none;
}
/* Workshop title spacing */
.workshop-highlight-box .workshop-title {
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ff6c1b !important;
}
/* Event row spacing */
.workshop-highlight-box .event-item {
  padding: 10px 0;
}
.rs-counter-two .rs-counter-content P {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
}
/* Desktop spacing */
@media (min-width: 992px) {
  .left-visual-wrap {
    padding-right: 30px;
  }
}
/* Mobile spacing */
@media (max-width: 768px) {
  .left-visual-wrap {
    margin-bottom: 25px;
  }
  .ratio-16x9 {
    --bs-aspect-ratio: 120.25%;
  }

  .left-visual-img {
    height: auto;
  }
}
/* Desktop = inline buttons */
.cta-wrap {
  display: flex;
  gap: 16px;
}
.btn-primary del {
  opacity: 1;
  margin-right: 6px;
  color: #000000;
}
.btn-primary:hover {
  color: black;
}
.btn-outline:hover {
  background: rgba(255, 42, 42, 0.05);
  color: #fff;
}
/* 📱 Mobile = stack buttons */
@media (max-width: 576px) {
  .cta-wrap {
    flex-direction: column;
    align-items: center;
  }
  .cta-wrap a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .topic-line span {
    color: #fff;
    font-size: 13px;
  }
}

.topic-line {
  text-align: center;
  color: #ccc;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.topic-line span {
  color: #f0d436;
  font-size: 16px;
}

.topic-line .dot {
  margin: 0 8px;
  opacity: 0.6;
}

/* Gradient text effect */
.gradient-text-green {
  background: linear-gradient(90deg, #19e66e, #25e01f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.total-line {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.total-line span {
  text-decoration: line-through;
  color: #ff5f5f;
  margin-left: 6px;
  font-size: 30px !important;
}

.price-note {
  font-size: 17px;
  color: #ffcc42;
  line-height: 1.6;
  font-weight: 500;
}

.why-struggle-section {
  background: radial-gradient(circle at top, #0b0f1a, #000 70%);
  color: #fff;
  padding: 54px 0px 80px 0px;
}

.section-title {
  font-size: 39px;
  font-weight: 500;
  line-height: 1.2;
  color: #fbefe1;
}

.section-sub {
  color: #ffffff;
  font-size: 17px;
}

.point-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgb(255 106 31 / 15%);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: 0.3s ease;
}

.point-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.point-box .icon {
  font-size: 22px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #000;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.point-box h6 {
  margin: 0;
  font-weight: 400;
  font-size: 26px;
  color: #fff6f1;
}

.point-box p {
  margin: 0;
  font-size: 15px;
  color: #ffffff;
  line-height: 25px;
}

.value-card {
  background: linear-gradient(145deg, #0e0f10, #161617);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 18px rgb(255 108 27);
}

.value-top {
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.value-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.btn-register {
  display: inline-block;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #000;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-register:hover {
  transform: scale(1.05);
  color: #000;
}

.value-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #9ca3af;
}

.point-box .icon {
  font-size: 23px;
  background: linear-gradient(76deg, #ff4835, #ff711a);
  color: #ffffff;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ff2f29, #ff7519);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 3px;
}

.value-list li > div {
  flex: 1;
  text-align: left;
}

.value-list small {
  display: block;
  font-size: 17px;
  margin-top: 6px;
  opacity: 0.85;
}

.value-list li span {
  color: #ffffff;
  font-weight: 600;
}

/* 📱 Mobile polish */
@media (max-width: 576px) {
  .value-list li {
    gap: 10px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .value-list li > div {
    font-size: 16px;
  }
}

.custom-cta-left {
  display: block;
  text-align: left;
  margin-top: 25px;
}
.custom-cta-left:hover {
  color: #fff !important;
}

.custom-btn-left {
  display: inline-block;
  background: linear-gradient(135deg, #ff2a2a, #ff7a18);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.custom-btn-left:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 35px rgba(255, 0, 0, 0.6);
  background: linear-gradient(135deg, #ff2a2a, #ff7a18);
}
.simple-footer {
  background: #000;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-family: "Poppins", sans-serif;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-logo img {
  max-height: 40px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f7e11a;
}

/* Mobile */
@media (max-width: 576px) {
  .footer-row {
    justify-content: center;
    text-align: center;
  }
  .custom-btn-left {
    font-size: 18px;
  }

  .footer-links a {
    margin: 0 5px;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .rs-section-title {
    font-weight: 100;
    font-size: 35px;
    text-align: center;
  }
  h2.fw-bold.mb-3.text-white {
    font-size: 29px;
    font-weight: 600;
    color: #fbefe1;
    text-align: center;
  }
  .rs-cta-one .rs-cta-content {
    margin-inline-start: 0px;
    text-align: center;
  }
  .custom-cta-left {
    text-align: center;
  }
  .rs-cta-one .rs-cta-shape img {
    width: 60px;
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .video-card {
    width: 100%;
    max-width: 430px;
    height: auto;
    aspect-ratio: 1 / 1.05;
    padding: 11px 11px 28px 11px;
    border-radius: 12px;
    display: inline-block;
  }
}

@media screen and (max-width: 1366px) {
  .learn-card h5 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    letter-spacing: 0px;
    color: #000000;
    line-height: 20px;
    font-family: "Poppins";
  }
  .learn-card p {
    font-size: 13px;
    line-height: 19px;
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-2px);
  }

  40% {
    transform: translateX(2px);
  }

  60% {
    transform: translateX(-2px);
  }

  80% {
    transform: translateX(2px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake-btn {
  animation: shake 0.9s ease-in-out infinite;
}

/* Optional: pause shake on hover */
.shake-btn:hover {
  animation-play-state: paused;
}

.workshop-pill-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgb(255 0 0);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
}

.workshop-pill-text {
  color: #fff;
  opacity: 0.95;
  font-size: 20px;
}

.workshop-pill-date {
  background: rgb(255 0 0);
  color: #e6e6e6;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .new-price {
    font-size: 38px;
  }
  .workshop-pill-date {
    font-size: 14px;
  }
  .workshop-pill-text {
    font-size: 14px;
  }
}

.short-box {
  height: 520px;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, #ff2a2a, #ff7a18, #ff2a2a);
  box-shadow: 0 0 25px rgba(255, 90, 30, 0.45);
  cursor: pointer;
}
.short-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.play-btn {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 65px;
  height: 65px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  background: linear-gradient(135deg, #ff6c00, #ffaa7e);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(255, 122, 24, 0.5);
  z-index: 2;
  pointer-events: none;
}
.short-box iframe {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 18px;
  border: 0;
}
@media (max-width: 576px) {
  .short-box {
    height: 400px;
  }
  .why-struggle-section {
    padding: 10px 0px 80px 0px;
  }
  .whatlearn {
    font-weight: 500;
    color: #fbefe1;
    font-size: 32px;
    margin-bottom: 10px;
  }
}

#mq-bar {
  all: unset;
  display: block !important;
  width: 100% !important;
  background: #ff0000 !important;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2) !important;
  overflow: hidden !important;
  padding: 10px 0 1px !important;
  box-sizing: border-box !important;
}
#mq-track {
  all: unset;
  display: block !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

#mq-content {
  all: unset;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  animation: mq-scroll 25s linear infinite !important;
  will-change: transform !important;
}

#mq-content:hover {
  animation-play-state: running !important;
}

#mq-bar .mq-item {
  all: unset;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  padding: 0 28px !important;
  white-space: nowrap !important;
}

#mq-bar .mq-dot {
  all: unset;
  display: inline-block !important;
  color: #ffffff !important;
  font-size: 10px !important;
  flex-shrink: 0 !important;
}

@keyframes mq-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.zr-section {
  background: #0d0d0d;
  width: 100%;
  padding: 72px 24px 30px 24px;
}

.zr-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* Label */
.zr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f97316;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Heading */
.zr-heading {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 32px;
}

/* Guarantee box */
.zr-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(249, 115, 22, 0.25);
  border-radius: 16px;
  padding: 24px 26px;
  text-align: left;
  margin-bottom: 36px;
}

/* Badge */
.zr-badge {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #15803d);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.1);
  animation: zr-pulse 2s ease-in-out infinite;
}

@keyframes zr-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.zr-badge-text {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Box content */
.zr-box-content {
  flex: 1;
}

.zr-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #ff6800;
  line-height: 1.5;
  margin-bottom: 8px;
}

.zr-box-desc {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* CTA Button */
.zr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f97316;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(249, 115, 22, 0.35);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  margin-bottom: 20px;
  white-space: nowrap;
}

.zr-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.zr-btn:hover {
  background: #ea6d0e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(249, 115, 22, 0.45);
  text-decoration: none;
}

/* Trust tags */
.zr-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 15px;
  color: #ffdf18;
}

.zr-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Responsive */
@media (max-width: 580px) {
  .zr-section {
    padding: 52px 16px;
  }

  .zr-heading {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .zr-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
  }

  .zr-btn {
    font-size: 14px;
    padding: 15px 22px;
    white-space: normal;
    text-align: center;
  }

  .zr-tags {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
}

.seats-section {
  width: 100%;
  padding: 32px 24px 10px 24px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seats-box {
  width: 100%;
  max-width: 701px;
  background: rgba(249, 115, 22, 0.05);
  border: 1.5px dashed rgba(249, 115, 22, 0.35);
  border-radius: 16px;
  padding: 28px 36px;
  text-align: center;
}

/* Top label */
.seats-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #f97316;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Count line */
.seats-count {
  margin-bottom: 18px;
  line-height: 1;
}

.seats-num {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  color: #f97316;
  letter-spacing: -1px;
}

.seats-total {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* Progress bar */
.seats-bar-wrap {
  margin-bottom: 16px;
}

.seats-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.seats-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #ef4444);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.seats-bar-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* Note */
.seats-note {
  font-size: 14px;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 480px) {
  .seats-box {
    padding: 22px 20px;
  }

  .seats-num {
    font-size: 32px;
  }

  .seats-total {
    font-size: 18px;
  }

  .seats-note {
    font-size: 12px;
  }
}
