:root {
  --primary-yellow: #ffc107;
  --bg-dark: #000000;
  --text-main: #ffffff;
  --red-cta: #d92328;
  --red-cta-dark: #a11418;
  --red-icon-color: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  /* Subtle grid background similar to the screenshot */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  min-height: 100vh;
}

.hero-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top Badge */
.top-badge {
  background-color: #1a1600;
  border: 2px dotted var(--primary-yellow);
  color: var(--primary-yellow);
  padding: 0.4rem 6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.1);
}

/* Main Heading */
.main-heading {
  font-size: 3.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 1200px;
  letter-spacing: -0.5px;
}

.highlight {
  color: var(--primary-yellow);
}

/* Sub-Heading */
.sub-heading {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  max-width: 1400px;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #e5e5e5;
}

/* Category Chips (Auto-sliding Marquee) */
.categories-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  /* Optional faded edges for a sleek look */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.categories-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: scrollMarquee 25s linear infinite;
}

.categories-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.5rem)); }
}

.category-chip {
  border: 1px solid rgba(255, 193, 7, 0.6);
  padding: 0.5rem 3rem;
  border-radius: 50px;
  font-size: 0.95rem;
  background-color: #1a1500; /* Dark brownish-yellow tint */
  color: #e5e5e5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0; /* prevent chips from shrinking */
}

.category-chip i {
  color: var(--primary-yellow);
}

.category-chip:hover {
  background-color: rgba(255, 193, 7, 0.15);
  border-color: var(--primary-yellow);
}

/* Requirements */
.requirements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: #ccc;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-red {
  color: var(--red-icon-color);
  font-size: 1rem;
}

/* Hero Content Grid (Video + Info Cards) */
.hero-content {
  display: flex;
  width: 100%;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

/* Left: Video */
.video-container {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 250px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-container {
  flex: 1;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-thumbnail,
.video-thumbnail img,
.video-container iframe {
  width: 100%;
  height: 100%;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(16, 24, 80, 0.9); /* Dark blue like the screen */
  width: 75px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background-color: rgba(20, 30, 100, 1);
}

.play-button i {
  color: white;
  font-size: 1.5rem;
}

/* Right: Info Cards */
.info-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-content: center;
}

.info-card {
  background-color: #1a1600; /* Dark brownish tint */
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  background-color: var(--primary-yellow);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  color: #000;
  font-size: 1.3rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text .label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 0.2rem;
}

.card-text .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

/* CTA Button */
.cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button {
  background: linear-gradient(-45deg, #ed2e33, #8a060a, #ed2e33, #8a060a);
  background-size: 300% 300%;
  animation:
    gradientMove 4s ease infinite,
    shakeLeftRight 2.5s ease-in-out infinite;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 1000px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 10px 20px rgba(217, 35, 40, 0.2);
  transition: box-shadow 0.2s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shakeLeftRight {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

.btn-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .main-heading {
    font-size: 2.2rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .video-thumbnail {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .info-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .icon-wrapper i {
    font-size: 1rem;
  }

  .cta-button {
    padding: 1rem;
  }

  .btn-title {
    font-size: 1.2rem;
  }
  .categories-wrapper {
    margin-bottom: 1rem; 
  }
}

/* --- Section 2: Familiar Section --- */
.familiar-section {
  padding: 3rem 0;
  background-color: #111; /* Slightly lighter dark background to differentiate sections */
}

/* Override container properties just for this section if needed */
.container-familiar {
  align-items: center;
}

.section-heading {
  font-size: 3.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.familiar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1150px;
  margin-bottom: 2rem;
}

.familiar-card {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 1rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.familiar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.1);
}

.familiar-card i {
  color: var(--primary-yellow);
  font-size: 1.4rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.familiar-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}

.highlight-box {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.highlight-box .box-main {
  font-size: 1.35rem;
  color: #fff;

  font-weight: 500;
}

.highlight-box .box-sub {
  font-size: 1.15rem;
  color: var(--primary-yellow);
  font-weight: 400;
}

@media (max-width: 900px) {
  .section-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .familiar-grid {
    grid-template-columns: 1fr;
  }
  .familiar-card {
    padding: 1.5rem;
  }
  .section-heading {
    font-size: 1.6rem;
  }
}

/* --- Section 4: Solution Section --- */
.solution-section {
  padding: 3rem 0;
  background-color: #161616; /* slightly different black background */
}

.container-solution {
  align-items: center;
}

.badge-center {
  margin-bottom: 1rem;
}

.solution-heading {
  font-size: 3.4rem;
  margin-bottom: 1rem;
}

.solution-subheading {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.compare-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2); /* very subtle grey border */
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.compare-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

.text-red-title {
  color: #ef4444;
}

.text-yellow-title {
  color: var(--primary-yellow);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start; /* top align for multi-line text */
  gap: 1rem;
  font-size: 1.15rem;
  color: #e5e5e5;
  line-height: 1.4;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -0.1rem; /* perfectly align with text baseline */
}

.icon-not {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.icon-will {
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--primary-yellow);
}

@media (max-width: 800px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Section 3: Who This Program Is For --- */
.who-section {
  padding: 3rem 0;
  background-color: var(--bg-dark);
}

.container-who {
  align-items: center;
}

.who-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.who-card {
  width: calc(33.333% - 1rem);
  min-width: 300px;
  max-width: 380px;
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.1);
}

.card-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  aspect-ratio: 16 / 9;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.card-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 900px) {
  .who-card {
    width: calc(50% - 1rem); /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .who-card {
    width: 100%; /* 1 column on mobile */
  }
  .solution-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* --- Section 5: Curriculum Section --- */
.curriculum-section {
  padding: 3rem 0;
  background-color: var(--bg-dark); /* black */
}

.container-curriculum {
  align-items: center;
}

.curriculum-heading {
  font-size: 3.6rem;
  margin-bottom: 1rem;
}

.curriculum-subheading {
  font-size: 1.3rem;
  color: #e5e5e5;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 700px;
  font-weight: 400;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1150px;
  margin-bottom: 2rem;
}

.module-card {
  background-color: #171717; /* subtle dark grey */
  border: 1px solid rgba(255, 255, 255, 0.15); /* light grey border */
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.module-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.module-icon {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-icon i {
  color: var(--primary-yellow);
  font-size: 1.8rem;
}

.module-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.module-number {
  color: var(--primary-yellow);
  font-size: 1rem;
  font-weight: 500;
}

.module-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

.text-yellow {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  margin-top: 0.2rem; /* align correctly with text */
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  .curriculum-heading {
    font-size: 1.6rem;
  }
}

/* --- Section 6: Before vs After Section --- */
.before-after-section {
  padding: 3rem 0;
  background-color: #161616; /* Same dark grey to separate sections */
}

.ba-heading {
  font-size: 3.6rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 1rem;
}

.ba-card {
  position: relative;
  border-radius: 12px;
  padding: 4rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.ba-card-red {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08) 0%,
    rgba(26, 10, 10, 0.6) 100%
  );
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.ba-card-yellow {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.08) 0%,
    rgba(26, 22, 0, 0.6) 100%
  );
  border: 1px solid rgba(255, 193, 7, 0.15);
}

.ba-badge {
  position: absolute;
  top: -22px;
  left: 3rem;
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.badge-red {
  background-color: #3b0d0f; /* Dark reddish brown */
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-yellow {
  background-color: #2b2507; /* Dark yellowish olive */
  color: var(--primary-yellow);
  border: 1px solid rgba(255, 193, 7, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ba-list li {
  display: flex;
  align-items: center; /* keep centered vertically for single line */
  gap: 1.2rem;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
}

.icon-red-dark {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.icon-yellow-dark {
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--primary-yellow);
}

@media (max-width: 800px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem; /* More gap for the overlapping badge spacing */
  }
  .ba-heading {
    font-size: 1.45rem;
  }
}

/* --- Section 7: Outcomes Section --- */
.outcomes-section {
  padding: 3rem 0;
  background-color: var(--bg-dark); /* black */
}

.container-outcomes {
  align-items: center;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 1rem;
}

.outcome-bar {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.outcome-bar i {
  color: var(--primary-yellow);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.outcome-bar p {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
}

.conclusion-box {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 2rem 2rem 3rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.conclusion-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.status-pill {
  border: 1px solid rgba(255, 193, 7, 0.6);
  padding: 0.5rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  color: #e5e5e5;
  background-color: transparent;
}

.conclusion-statement {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
}

@media (max-width: 600px) {
  .status-pills {
    margin-bottom: 1.5rem;
  }
  .conclusion-statement {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .status-pill {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* --- Section 8: About The Trainer Section --- */
.trainer-section {
  padding: 3rem 0;
  background-color: #161616; /* matching dark grey background */
}

.container-trainer {
  align-items: center;
}

.trainer-heading {
  font-size: 3.6rem;
  margin-bottom: 3rem;
}

.trainer-grid {
  display: flex;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  align-items: center;
}

.trainer-image-wrapper {
  flex: 0 0 42%;
}

.trainer-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.trainer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trainer-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.trainer-desc {
  font-size: 1.15rem;
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.experience-box {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.experience-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.experience-list {
  gap: 2rem;
}

.trainer-quote {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .trainer-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .trainer-image-wrapper {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .trainer-heading {
    font-size: 1.6rem;
  }
}

/* --- Section 9: Offer Section --- */
.offer-section {
  padding: 3rem 0;
  background-color: var(--bg-dark); /* black */
}

.container-offer {
  align-items: center;
}

.offer-heading {
  font-size: 3.6rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.offer-subheading {
  font-size: 1.3rem;
  color: #e5e5e5;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.offer-box {
  background-color: #1a1600;
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.offer-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.offer-feature {
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-yellow-icon {
  color: var(--primary-yellow);
}

.offer-text {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 1.6rem;
  }
  .feature-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/* --- Section 10: FAQ Section --- */
.faq-section {
  padding: 3rem 0;
  background-color: #111; /* dark grey matching screenshot */
}

.container-faq {
  align-items: center;
}

.faq-heading {
  font-size: 3.6rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.faq-container {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.faq-item {
  width: 100%;
}

.faq-question {
  width: 100%;
  background-color: #434343; /* flat dark grey */
  color: #fff;
  border: none;
  padding: 1.6rem 2rem;
  font-size: 1.15rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: left;
}

.faq-question:hover {
  background-color: #3b3b3b;
}

.faq-question i {
  color: #f6f4f4; /* Black icon to match screenshot */
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* FAQ Answer (Hidden by default) */
.faq-answer {
  background-color: #222;
  color: #ccc;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding: 1.5rem 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough to show content */
}

.faq-item.active .faq-question i {
  /* Change plus to an 'x' on open */
  transform: rotate(45deg);
}
.small-btn {
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .faq-heading {
    font-size: 1.6rem;
  }
  .faq-question {
    padding: 1.2rem 1.2rem;
    font-size: 1rem;
  }
  .faq-answer p {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0.5rem 0;
  }
}

/* --- Footer --- */
.footer {
  width: 100%;
  color: #888;
}

.footer-disclaimer {
  background-color: #000;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* very subtle line */
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.3;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copyright {
  background-color: #111;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* very subtle separation */
}

.footer-copyright p {
  font-size: 0.95rem;
  color: #ffffff;
}

/* === GLOBAL RESPONSIVENESS PATCH === */
/* Tablet & below */
@media (max-width: 900px) {
  .sub-heading {
    font-size: 1rem;
      margin-bottom: 1rem;
  }
  .category-chip {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
  .requirements {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .req-item {
    font-size: 0.9rem;
  }
  .top-badge {
    padding: 0.4rem 2rem;
  }
  .cta-button {
    padding: 1.2rem 1rem;
  }
  .btn-title {
    font-size: 1.4rem;
  }
  .btn-subtitle {
    font-size: 1rem;
  }
  .highlight-box .box-main {
    font-size: 1.15rem;
  }
  .highlight-box .box-sub {
    font-size: 1rem;
  }
  .solution-subheading {
    font-size: 1.15rem;
  }
  .outcome-bar {
    padding: 1rem;
  }
  .outcome-bar p {
    font-size: 1rem;
  }
  .conclusion-box {
    padding: 2rem 1.5rem;
  }
  .conclusion-title {
    font-size: 1.2rem;
  }
  .trainer-title {
    font-size: 1.5rem;
  }
  .trainer-desc,
  .trainer-quote,
  .experience-title {
    font-size: 1.05rem;
  }
  .experience-box {
    padding: 1.5rem;
  }
  .offer-box {
    padding: 2.5rem 1.5rem;
  }
  .offer-text {
    font-size: 1.15rem;
  }
  .offer-subheading {
    font-size: 1.1rem;
  }
  .curriculum-subheading {
    font-size: 1.1rem;
  }
}

/* Mobile specifically */
@media (max-width: 600px) {
  .hero-section {
    padding-top: 1rem;
  }
  .top-badge {
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
  }
  .category-chip {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  .video-thumbnail {
    height: 200px;
    min-height: 200px;
  }
  .video-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  }
  .info-card {
    padding: 0.8rem 1rem;
  }
  .card-text .value {
    font-size: 0.95rem;
  }
  .card-text .label {
    font-size: 0.75rem;
  }
  .cta-button {
    padding: 1rem 0.5rem;
  }
  .btn-title {
    font-size: 1.2rem !important; /* Override inline styles */
  }
  .small-btn {
    font-size: 1rem !important;
  }
  .btn-subtitle {
    font-size: 0.9rem;
  }
  .familiar-card {
    padding: 1.2rem;
  }
  .compare-card {
    padding: 1.5rem;
  }
  .compare-title {
    font-size: 1.1rem;
  }
  .compare-list li {
    font-size: 1rem;
  }
  .module-card {
    padding: 1.5rem;
  }
  .module-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ba-card {
    padding: 3rem 1.5rem 2rem;
  }
  .ba-badge {
    left: 1.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
  .ba-list li {
    font-size: 1rem;
  }
  .feature-row {
    gap: 1rem;
  }
  .offer-feature {
    font-size: 0.9rem;
  }
  .footer-disclaimer {
    padding: 1.5rem 1rem;
  }
  .footer-disclaimer p {
    font-size: 0.65rem;
  }
  .footer-copyright p {
    font-size: 0.85rem;
  }
}

/* --- Sticky Footer --- */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
}

.sticky-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-left {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.sticky-timer {
  color: #ccc;
  font-size: 0.9rem;
}

.sticky-btn {
  background-color: #f30000;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 15px rgba(243, 0, 0, 0.4);
}

.sticky-btn:hover {
  background-color: #d10000;
  transform: scale(1.05);
}

/* Ensure body has bottom padding so footer doesn't hide content */
body {
  padding-bottom: 80px;
}

@media (max-width: 900px) {
  .sticky-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 600px) {
  .sticky-footer {
    padding: 1.5rem 0;
  }
  .sticky-title {
    font-size: 0.95rem;
  }
  .sticky-timer {
    font-size: 0.75rem;
  }
  .sticky-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
  }
  body {
    padding-bottom: 70px;
  }
}
