:root {
  --color-black: #000000;
  --color-black-2: #0a0a0a;
  --color-black-3: #111111;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-gray-light: #888888;
  --color-gray-dark: #444444;
  --color-blue: #62cff4;
  --color-blue-light: #7ad7f8;
  --color-blue-dark: #2c67f2;
  --color-blue-darker: #1f4ed6;
  --color-yellow: #ffe76f;
  --color-yellow-light: #7ad7f8;
  --color-pink: #2c67f2;
  --color-pink-light: #4f86f5;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-black-3);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}
p {
  margin: 0;
}

.container-large {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-medium {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-small {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-center {
  text-align: center;
}
.text-size-large {
  font-size: 1.25rem;
  line-height: 1.6;
}
.text-size-medium {
  font-size: 1rem;
}
.text-size-small {
  font-size: 0.875rem;
}
.text-weight-bold {
  font-weight: 700;
}
.text-weight-semibold {
  font-weight: 600;
}
.text-weight-medium {
  font-weight: 500;
}
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.text-white {
  color: var(--color-white);
}
.text-yellow {
  color: var(--color-yellow);
}
.text-blue {
  color: var(--color-blue);
}
.text-gray {
  color: var(--color-gray-light);
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background:var(--color-black-3) ;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.navbar-logo {
  height: 42px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-link {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.navbar-link:hover,
.navbar-link.active {
  color: var(--color-yellow);
}
.navbar-link.cta {
  background: #2c67f2;
  color: var(--color-white);
  padding: 0.6rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
}
.navbar-link.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(44, 103, 242, 0.4);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-white);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 5rem;
  background: linear-gradient(
    180deg,
    var(--color-black) 0%,
    var(--color-black-2) 100%
  );
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(44, 103, 242, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: block;
}
.hero-logo-img {
  max-width: 550px;
  margin: 0 auto 2rem;
}
.hero-description {
  font-size: 1.2rem;
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  display: block;
}

/* Big Button */
.big-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-blue) 0%,
    var(--color-blue-light) 50%,
    var(--color-pink) 100%
  );
  color: var(--color-white);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.big-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}
.big-btn:hover::before {
  left: 100%;
}
.big-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(44, 103, 242, 0.5);
}

/* Sections */
.section-dark {
  padding: 5rem 0;
  background-color: var(--color-black-3);
}
.section-black {
  padding: 5rem 0;
  background-color: var(--color-black-3);
}


/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-hero-img {
  width: 100%;
  border-radius: 16px;
}

.comment-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 0.85rem;
  line-height: 1.2;
  max-width: 260px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation:
    comment-float 4.5s ease-in-out infinite,
    comment-cycle 10s ease-in-out infinite;
  animation-delay: 0s, var(--cycle-delay, 0s);
}

.comment-bubble::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  opacity: 0.6;
  z-index: -1;
  filter: blur(6px);
}

.comment-bubble--top-left {
  top: 6%;
  left: -6%;
  --cycle-delay: 0s;
}

.comment-bubble--top-right {
  top: 12%;
  right: -4%;
  --cycle-delay: 5s;
}

.comment-bubble--bottom-left {
  bottom: 12%;
  left: -8%;
  --cycle-delay: 5s;
}

.comment-bubble--bottom-right {
  bottom: 4%;
  right: -2%;
  --cycle-delay: 0s;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.35);
  flex-shrink: 0;
}

.comment-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.comment-name {
  font-weight: 700;
}

.comment-break {
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes comment-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes comment-cycle {
  0%, 20% { opacity: 0; }
  30%, 70% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

.f101awin-content-grid {
  position: absolute;
  left: -2rem;
  top: 4rem;
  z-index: 5;
  display: flex;
  padding: 0.75rem 1rem;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float-slow 4s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.f101awin-s-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-yellow);
}

.f101awin-s-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f101awin-s-text p {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.f101awin-blob {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 231, 111, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .f101awin-content-grid {
    left: 1rem;
    top: 2rem;
  }
  .comment-bubble--top-left {
    left: 2%;
  }
  .comment-bubble--top-right {
    right: 2%;
  }
  .comment-bubble--bottom-left {
    left: 2%;
  }
  .comment-bubble--bottom-right {
    right: 2%;
  }
  .comment-bubble {
    font-size: 0.8rem;
  }
  .comment-avatar {
    width: 36px;
    height: 36px;
  }
}
.about-success-stories {
  position: absolute;
  bottom: -30px;
  left: -20px;
  right: -20px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.success-story-item {
  background: rgba(44, 103, 242, 0.95);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-white);
}
.success-story-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-content .subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 14px;
  height: 14px;
}
.feature-text {
  color: var(--color-gray-light);
  line-height: 1.5;
}

/* Target Grid */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.target-grid .target-images-grid {
  order: 2;
}
.target-grid .target-content {
  order: 1;
}
.target-content {
  position: sticky;
  top: 120px;
}
.target-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.target-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.target-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.target-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #ffde00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.target-icon::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid black;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.target-text {
  color: var(--color-white);
}
.target-text strong {
  color: var(--color-white);
}
.target-note {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.target-note strong {
  color: var(--color-yellow);
}
.target-note em {
  color: var(--color-yellow);
  font-style: normal;
}
.target-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.target-images-grid::-webkit-scrollbar {
  display: none;
}
.target-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background-color: var(--color-black-3);
}
.community-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.community-section p {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 2rem;
}
.community-img {
  max-width: 85%;
  margin: 0 auto 2rem;
  border-radius: 16px;
}
.community-note {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Skills Section */
.skills-section {
  padding: 5rem 0;
  background-color: var(--color-black-3);
}
.skills-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.skills-content-left h2 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 500px;
}
.skills-image-wrapper {
  position: relative;
}
.skills-main-img {
  width: 100%;
  max-width: 550px;
}
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.skills-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.skill-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 4px;
}
.skill-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-yellow);
  transform: translateY(-50%);
}
.skill-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-yellow);
  border-right: 2px solid var(--color-yellow);
  transform: translateY(-50%) rotate(45deg);
}
.skills-list-item p {
  font-size: 1.1rem;
  color: var(--color-gray-light);
  line-height: 1.5;
}
.skills-list-item strong {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .skills-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .skills-content-left h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .skills-main-img {
    margin: 0 auto;
  }
}

/* Top Skills Section */
.top-skills-section {
  padding: 8rem 0;
  background-color: var(--color-black-3);
}
.top-skills-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.top-skills-subheading {
  font-size: 1.25rem;
  color: var(--color-gray-light);
  margin-bottom: 4rem;
}
.top-skills-subheading strong {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-yellow);
}
.top-skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.top-skill-card {
  background: var(--color-black-2);
  border: 1px solid rgba(44, 103, 242, 0.15);
    border-color: var(--color-blue);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}

.top-skill-card.large {
  grid-column: span 3;
}

.top-skill-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 103, 242, 0.15);
}

.top-skill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent, rgba(44, 103, 242, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.top-skill-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 103, 242, 0.15);
}
.top-skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.top-skill-card:hover::before {
  opacity: 1;
}
.top-skill-icon {
  margin-bottom: 1.5rem;
  color: var(--color-white);
  display: flex;
  justify-content: center;
}
.top-skill-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
.top-skill-card p {
  color: var(--color-gray-light);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .top-skill-card, .top-skill-card.large {
    flex: 1 1 100%;
  }
  .top-skills-heading {
    font-size: 2.5rem;
  }
}

/* Modules Section */
.modules-section {
  padding: 5rem 0;
  background-color: var(--color-black-2);
}
.modules-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}
.module-card {
  --module-index: 0;
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s;
  position: sticky;
  top: calc(110px + (var(--module-index) * 8px));
  z-index: calc(60 + var(--module-index));
}
.module-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-3px);
}
.module-num {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}
.module-title {
  font-size: 1.15rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}
.module-desc {
  color: var(--color-gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Live Session Section */
.live-session-sec {
  padding: 8rem 0;
  background-color: var(--color-black-3);
}

.live-session-grid-component {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.live-session_content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.live-session-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.live-session-content-card_wrapper {
  padding: 2rem;
  border-radius: 12px;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}

.live-session-content-card_wrapper:hover {
  transform: translateY(-5px);
}

.live-session-content-card_wrapper.ls-bg-1 {
  background-color: var(--color-blue); /* Blue highlight */
}

.live-session-features-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#w-node-largest-community {
  grid-column: span 2;
}

.live-session_image-wrapper {
  position: relative;
  width: 100%;
}

.live-session-img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .live-session-grid-component {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .live-session_content h2 {
    text-align: center;
  }
  
  .except-desktop {
    display: block !important;
    margin-bottom: 2rem;
  }
  
  .only-desktop {
    display: none;
  }
}

@media (max-width: 767px) {
  .live-session-content-grid {
    grid-template-columns: 1fr;
  }
  
  #w-node-largest-community {
    grid-column: span 1;
  }
  
  .live-session_content h2 {
    font-size: 2.25rem;
  }
}

.only-desktop {
  display: block;
}

.except-desktop {
  display: none;
}
.f101-expert-sessions {
  padding: 8rem 0;
  background-color: var(--color-black-3);
  overflow: hidden;
}

.experts-slider-container {
  width: 100%;
  margin-top: 4rem;
  position: relative;
}

.experts-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.expert-card {
  flex: 0 0 300px;
  background: #0d0d0d;
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.expert-card:hover {
  border-color: #2c67f2;
  transform: translateY(-5px);
}

.experts-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
  padding-right: 1.5rem;
}

.expert-prev,
.expert-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fde047; /* Yellow */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10;
}

.expert-prev:hover,
.expert-next:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.expert-prev:disabled,
.expert-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}

.expert-prev svg,
.expert-next svg {
  width: 24px;
  height: 24px;
}

.expert-image-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 2.5rem;
}

/* Decorative background shapes for expert image */
.expert-image-wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 120px;
  background-color: #fde047; /* Yellow bar */
  border-radius: 30px;
  z-index: 0;
}

.expert-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 60px;
  height: 60px;
  background-color: #2c67f2; /* Purple circle */
  border-radius: 50%;
  z-index: 0;
}

.expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 100px 20px; /* Custom shape matching image */
  position: relative;
  z-index: 1;
  background-color: #1a1a1a;
}

.expert-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.expert-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.expert-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.expert-arrow {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4d94' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 4px;
}

.expert-list-item p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .expert-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .expert-card {
    flex: 0 0 calc(100%);
  }
  .f101-expert-sessions {
    padding: 5rem 0;
  }
}
.expert-section {
  padding: 5rem 0;
  background-color: var(--color-black-2);
}
.expert-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.expert-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.expert-slide {
  display: none;
}
.expert-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.expert-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: rgba(44, 103, 242, 0.1);
  border: 1px solid rgba(44, 103, 242, 0.3);
  border-radius: 20px;
  padding: 2rem;
}
.expert-img-wrap img {
  width: 100%;
  border-radius: 12px;
}
.expert-content h4 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.expert-content ul {
  list-style: none;
}
.expert-content li {
  color: var(--color-gray-light);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.expert-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-blue);
}
.expert-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.expert-nav button {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.expert-nav button:hover {
  background: var(--color-blue-light);
}
.expert-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.expert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-dark);
  cursor: pointer;
  transition: all 0.3s;
}
.expert-dot.active {
  background: var(--color-blue);
  transform: scale(1.2);
}

/* Live Session Section */
.live-session-section {
  padding: 5rem 0;
  background-color: var(--color-black);
}
.live-session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.live-session-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.live-session-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.live-feature-card {
  background: rgba(44, 103, 242, 0.1);
  border: 1px solid rgba(44, 103, 242, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
}
.live-feature-card h4 {
  color: var(--color-yellow);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.live-feature-card p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.live-session-img-wrap img {
  width: 100%;
  border-radius: 16px;
}

/* Video Testimonials */
.video-testimonials-section {
  padding: 5rem 0;
  background-color: var(--color-black-2);
}
.video-testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.video-testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.video-testimonial-slide {
  display: none;
}
.video-testimonial-slide.active {
  display: block;
}
.video-testimonial-content {
  background: rgba(44, 103, 242, 0.1);
  border: 1px solid rgba(44, 103, 242, 0.25);
  border-radius: 16px;
  padding: 2rem;
}
.video-quote {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.video-nav button {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

/* High Impact Bonus Section */
.bonus-high-impact-section {
  padding: 8rem 0;
  background-color: var(--color-black-3);
}
.bonus-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 1000px;
  margin: 0 auto;
}
.bonus-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
}
.bonus-card-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-black-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  transition: all 0.3s ease;
  position: sticky;
  top: calc(110px + (var(--bonus-index) * 12px));
  z-index: calc(60 + var(--bonus-index));
}
.bonus-card-new:hover {
  border-color: var(--color-blue);
  transform: scale(1.01);
  background: #0f0f0f;
}
.bonus-card-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
.double-check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.double-check-icon::before,
.double-check-icon::after {
  content: "";
  position: absolute;
  border: solid var(--color-blue);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.double-check-icon::before {
  width: 6px;
  height: 12px;
  left: 0;
  top: 4px;
  opacity: 0.5;
}
.double-check-icon::after {
  width: 6px;
  height: 12px;
  left: 8px;
  top: 4px;
}
.bonus-card-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-white);
}
.bonus-card-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.blue-arrow {
  width: 30px;
  height: 2px;
  background-color: var(--color-blue);
  position: relative;
}
.blue-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: translateY(-50%) rotate(45deg);
}
.bonus-value-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-yellow);
  white-space: nowrap;
}
.total-value-heading {
  font-size: 3rem;
  font-weight: 800;
}

@media (max-width: 991px) {
  .bonus-heading {
    font-size: 2.5rem;
  }
  .bonus-card-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }
  .bonus-card-right {
    width: 100%;
    justify-content: space-between;
    padding-left: 3rem;
  }
  .total-value-heading {
    font-size: 2rem;
  }
}

/* Module Section Styles */
.f101-modules-sec {
  background-color: var(--color-black-3);
  padding: 8rem 0;
}

.module-section-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4rem;
  text-align: center;
}

.f101-modules-cards-div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.module {
  background-color: #D8EEFF;
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease;
  position: sticky;
  top: calc(100px + (var(--module-index) * 20px));
  z-index: calc(10 + var(--module-index));
}

.module:hover {
  transform: translateY(-5px);
}

.module-details-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.f101-module-number {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  opacity: 0.2;
}

.heading-style-h4 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.text-color-black {
  color: #000;
  font-size: 1.15rem;
  line-height: 1.6;
}

.module-details {
  text-align: justify;
  text-align-last: left;
}

.module-details .heading-style-h4 {
  text-align: left;
}

.module-intro {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.module-points {
  margin: 0;
  padding-left: 0;
  color: #000;
  font-size: 1.05rem;
  line-height: 1.55;
  list-style: none;
}

.module-points li {
  position: relative;
  padding-left: 1.25rem;
}

.module-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 600;
}

.module-points li + li {
  margin-top: 0.35rem;
}

@media (max-width: 767px) {
  .module-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .f101-module-number {
    font-size: 5rem;
  }
  
  .module {
    padding: 2rem;
  }
  
  .module-section-heading {
    font-size: 2.5rem;
  }

  .module-points {
    font-size: 1rem;
    padding-left: 0;
  }

  .module-points li {
    padding-left: 1rem;
  }
}
.about-saheli-section {
  padding: 5rem 0;
  background-color: var(--color-black-3);
  overflow: hidden;
}
.about-saheli-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.saheli-tagline {
  color: var(--color-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}
.about-saheli-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-intro {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.about-intro span {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-blue);
}
.about-list-new {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.white-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  margin-top: 4px;
}
.white-check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.about-list-item p {
  font-size: 1.1rem;
  color: var(--color-gray-light);
  line-height: 1.4;
}
.about-list-item strong {
  color: var(--color-white);
}

/* Horizontal Marquee */
.about-saheli-images-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.saheli-images-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.saheli-marquee-img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

/* Leading Voice Section */
.leading-voice-section {
  padding: 15rem 0;
  background-color: var(--color-black-3);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.leading-voice-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.leading-voice-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.leading-voice-column {
  height: 800px;
  overflow: hidden;
  position: relative;
}
.scrolling-images-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  will-change: transform;
}
.scroll-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.leading-voice-content {
  text-align: center;
  z-index: 10;
}
.leading-voice-title {
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 1200px) {
  .leading-voice-title {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .leading-voice-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .leading-voice-column {
    display: none;
  }
  .leading-voice-title {
    font-size: 3rem;
  }
}

/* FAQ Section New Styles */
.section_faq1._10x {
  background-color: var(--color-black-3);
}

.faq1_component {
  max-width: 800px;
  margin: 0 auto;
}

.faq1_accordion {
  margin-bottom: 1rem;
}

.faq1_question {
  padding: 1.5rem 2rem;
  background: rgba(44, 103, 242, 0.05);
  border: 1.5px solid rgba(44, 103, 242, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq1_question:hover {
  background: rgba(44, 103, 242, 0.1);
  border-color: rgba(44, 103, 242, 0.4);
}

.faq-question-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
}

.faq1_icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.faq1_accordion.active .faq1_icon {
  transform: rotate(180deg);
}

.faq1_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  background: transparent;
}

.faq1_accordion.active .faq1_answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answ {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

.faq-comp-border {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.faq-border-blue {
  border-color: rgba(44, 103, 242, 0.3);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--color-gray-light);
  margin: 1rem 0;
  font-size: 0.95rem;
}
.footer-newsletter {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.9rem;
}
.footer-newsletter input::placeholder {
  color: var(--color-gray-light);
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-blue);
}
.footer-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
  border: none;
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--color-gray-light);
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--color-blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: var(--color-gray-light);
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  color: var(--color-gray-light);
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: var(--color-blue);
}

/* New Footer9 Styles */
.footer9_component {
  padding: 4rem 0 2rem;
  background: var(--color-black-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.padding-global,
.footer-container-large {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.padding-vertical.padding-medium {
  padding: 2rem 0;
}
.saheli-footer-wrapper {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 3rem 2rem;
}
.footer9_left-wrapper {
  /* logo and newsletter */
}
.margin-bottom.margin-small {
  margin-bottom: 0.75rem;
}
.footer9_logo-link img.saheli-footer-logo {
  height: 50px;
}
.saheli-newsletter-convertkit_form-block .footer9_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-input-2 {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-white);
}
.form-input-2::placeholder {
  color: var(--color-gray-light);
}
.form-input-2:focus {
  border-color: var(--color-blue);
  outline: none;
}
.main-button.is-secondary-blue {
  background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
}
.text-size-tiny {
  font-size: 0.8rem;
  color: var(--color-gray-light);
}
.s_footer_menu-wrapper-copy {
  display: contents;
}
.footer9_link-list {
  display: flex;
  flex-direction: column;
}
.s-footer-links-heading {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.footer9_link {
  color: var(--color-gray-light);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer9_link:hover {
  color: var(--color-blue);
}
.padding-top.padding-medium {
  padding-top: 1.5rem;
}
.footer2_bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer2_legal-list {
  display: flex;
  gap: 1rem;
}
.footer2_credit-text {
  color: var(--color-gray-light);
}
/* Student Win Ticker */
.win-stories-section.win-stories-alt {
  padding: 4rem 0;
  background-color: #000;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.win-stories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.win-story-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(44, 103, 242, 0.05);
  border: 1px solid rgba(44, 103, 242, 0.1);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.win-story-item:hover {
  background: rgba(44, 103, 242, 0.1);
  border-color: rgba(44, 103, 242, 0.3);
  transform: translateY(-2px);
}

.win-story-dot {
  width: 10px;
  height: 10px;
  background-color: #fde047;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(253, 224, 71, 0.5);
}

@media (max-width: 767px) {
  .win-stories-list {
    grid-template-columns: 1fr;
  }
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 40s linear infinite;
  gap: 3rem;
  padding-left: 3rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background-color: #2c67f2; /* Purple dot */
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}
  color: var(--color-gray-light);
}
.footer2_legal-link:hover {
  color: var(--color-blue);
}
.footer2_social-list {
  display: flex;
  gap: 1rem;
}
.footer2_social-link {
  color: var(--color-gray-light);
  transition: color 0.3s;
}
.footer2_social-link:hover {
  color: var(--color-blue);
}
.saheli-footer-social-icon svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 991px) {
  .saheli-footer-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .footer2_bottom-wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content,
.about-content,
.target-content,
.text-center {
  animation: fadeInUp 0.8s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue-light);
}
::selection {
  background: var(--color-blue);
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid,
  .target-grid,
  .about-saheli-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .target-content {
    position: static;
    top: auto;
  }
  .target-images-grid {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    mask-image: none;
  }
  .modules-grid {
    max-width: 100%;
    gap: 1rem;
  }
  .module-card {
    position: static;
    top: auto;
    z-index: auto;
  }
  .hero-stats {
    gap: 2rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .about-success-stories {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 1rem;
  }
  .navbar-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .special-bonus-card {
    grid-template-columns: 1fr;
    position: static;
    top: auto;
    z-index: auto;
  }
  .expert-card {
    grid-template-columns: 1fr;
  }
  .live-session-grid {
    grid-template-columns: 1fr;
  }
  .win-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }
  .hero-label {
    font-size: 1rem;
  }
  .hero-logo-img {
    max-width: 100%;
  }
  .hero-description {
    font-size: 1rem;
  }
  .big-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .about-content h2,
  .target-content h2,
  .community-section h2,
  .skills-section h2,
  .bonuses-section h2,
  .modules-section h2,
  .faq-section h2,
  .about-saheli-content h2 {
    font-size: 2rem;
  }
  .skills-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .bonus-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .bonus-value {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-newsletter {
    flex-direction: column;
  }
}

/* Special Bonus Section */
.special-bonus-section {
  padding: 8rem 0;
  background-color: var(--color-black-3);
  position: relative;
  overflow: hidden;
}

.special-bonus-section h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.special-bonus-card-div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.special-bonus-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.special-bonus-card:hover {
  transform: translateY(-5px);
  border-color: #2c67f2;
}

.special-bonus-card.highlight {
  background: linear-gradient(135deg, #111b3d 0%, #000000 100%);
  border: 1px solid rgba(44, 103, 242, 0.3);
}

.special-bonus-details-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  width: 100%;
}

.special-bonus-details-grid.odd {
  grid-template-columns: 1.1fr 0.9fr;
}

.special-bonus-img-wrapper {
  height: 100%;
  width: 100%;
}

.special-bonus-img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.special_bonus-details {
  padding: 2.5rem 3.5rem;
  text-align: left;
}

.special-bonus-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2c67f2;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.special-bonus-num-mobile {
  margin: 0;
}

.special_bonus-details h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--color-white);
}

.special_bonus-details p {
  color: var(--color-gray-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .special-bonus-details-grid {
    grid-template-columns: 1fr;
  }
  
  .special-bonus-details-grid.odd {
    display: flex;
    flex-direction: column-reverse;
  }

  .special-bonus-img-wrapper {
    height: 300px;
  }
  
  .special_bonus-details {
    padding: 2.5rem 2rem;
  }
  
  .special-bonus-number {
    font-size: 3rem;
  }
}

/* Additional Utilities */
.margin-bottom.margin-xxsmall {
  margin-bottom: 0.5rem;
}
.margin-bottom.margin-large {
  margin-bottom: 3rem;
}
.max-width-large {
  max-width: 80rem;
}
.align-center {
  margin-left: auto;
  margin-right: auto;
}
.padding-section-small {
  padding: 4rem 0;
}
.text-align-center {
  text-align: center;
}
.text-color-white {
  color: var(--color-white);
}

/* New Video Testimonials & Win Stories SS Styles */
.f101-video-testimonials-sec {
  padding: 8rem 0;
  background-color: var(--color-black-3);
}

.testimonial20_component {
  margin-top: 4rem;
  position: relative;
}

.testimonial20_mask {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.testimonial20_mask::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonial20_slide {
  flex: 0 0 350px;
}

.testimonial20_content {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-testimonial-quote-h5 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  min-height: 4.5rem;
}

.video.w-video {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial20_content {
  background: #111;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-testimonial-quote-h5 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
}

.f101-win-stories-ss-sec {
  padding: 8rem 0;
  background-color: var(--color-black-3);
}

.f101-win-ss-main-div {
  margin-top: 3rem;
}

.f101-win-ss-collection-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.f101-win-ss-collection-item {
  width: 100%;
}

.f101-win-ss-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.f101-win-ss-img-wrapper:hover {
  transform: scale(1.02);
}

.f101-win-ss-img {
  width: 100%;
  height: auto;
  display: block;
}

.divider-line-50 {
  width: 50px;
  height: 4px;
  margin: 1.5rem auto;
}

.divider-line-50.line-blue {
  background-color: #2c67f2;
}

.divider-line-50.line-purple {
  background-color: #8b5cf6;
}

@media (max-width: 991px) {
  .testimonial20_slide {
    flex: 0 0 300px;
  }
  .f101-win-stories-ss-sec {
    padding: 5rem 0;
  }
  .f101-win-ss-collection-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testimonial20_slide {
    flex: 0 0 280px;
  }
  .f101-win-ss-collection-list {
    grid-template-columns: 1fr;
  }
}

.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.video-slider-track {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
}

.video-slider-track::-webkit-scrollbar {
  display: none;
}

.load-more-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.load-more-btn {
  background-color: #7c3aed;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.load-more-btn:hover {
  background-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.video-testimonial-card {
  flex: 0 0 400px;
  max-width: 100%;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.btn-round {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #fde047;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(253, 224, 71, 0.3);
}

.btn-round:hover {
  background-color: #fff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-round svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .video-testimonial-card {
    flex: 0 0 350px;
  }
}

@media (max-width: 767px) {
  .video-testimonial-card {
    flex: 0 0 300px;
  }
  .btn-round {
    width: 48px;
    height: 48px;
  }
}

.video-slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.video-prev,
.video-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fde047;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}

.video-prev:hover,
.video-next:hover {
  background-color: #fff;
  transform: scale(1.1);
}

/* Navbar Logo Text */
.navbar-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -1px;
}
.navbar-logo-text span {
  color: #2c67f2;
}

/* 10x Hero Section */
._10x-hero-sec {
  padding-top: 140px;
  padding-bottom: 8rem;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.f101-hero-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

._10x-header1_content {
  text-align: left;
  z-index: 2;
}

.f101-hero-logo {
  width: 100%;
  max-width: 650px;
  margin-left: -5px;
}

.text-color-yellow {
  color: #fde047;
}

._10x-hero-header-content-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-saheli-img {
  width: 100%;
  max-width: 550px;
  z-index: 2;
}

.hero-stats-floating {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 3;
}

.hero-stat-box {
  text-align: right;
}

.hero-stat-box-yellow {
  text-align: right;
  color: #fde047;
}

.hero-stat-box-yellow .stat-number-large {
  font-size: 4rem;
  font-weight: 800;
  color: #fde047;
  line-height: 1;
}

.hero-stat-box-yellow .stat-text-small {
  font-size: 0.9rem;
  color: #fde047;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.stat-number-large {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stat-text-small {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Text Logo */
.hero-text-logo {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}
.hero-text-logo span {
  color: #2c67f2;
}

/* Hero Stats Left */
.hero-stats-left {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-stat-item-yellow {
  color: #fde047;
  text-align: left;
}

.hero-stat-item-yellow .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.hero-stat-item-yellow .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fde047;
  opacity: 0.9;
}

.big-btn-blue {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: transparent;
  border: 2.5px solid #55ecf7;
  border-radius: 12px;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.big-btn-blue:hover {
  background: #4fdce0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 103, 242, 0.4);
}

/* Achie / Bysn Big Button Styles */
.achie-big-button-1,
.bysn-big-button-1 {
  position: relative;
  z-index: 1;
  display: flex;
  height: 4.5rem;
  width: 100%;
  max-width: 24rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #000;
  padding: 1px;
  overflow: hidden;
  margin: 30px auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.achie-big-button-1_glow,
.bysn-big-button-1_glow {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  background-image: radial-gradient(circle at 50% 50%, #a855f7 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(30px);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.achie-big-button-1_color-wrap,
.bysn-big-button-1_color-wrap {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  overflow: hidden;
  border-radius: 11px;
}

.big-button-1_color {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0;
  animation: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

@keyframes blob-move {
  0% { transform: translate(-20%, -20%) scale(1) rotate(0deg); }
  33% { transform: translate(40%, 10%) scale(1.3) rotate(120deg); }
  66% { transform: translate(-30%, 50%) scale(0.8) rotate(240deg); }
  100% { transform: translate(10%, -40%) scale(1.1) rotate(360deg); }
}

@keyframes blob-move-hover {
  0% { transform: translate(-10%, -30%) scale(1.1) rotate(0deg); }
  33% { transform: translate(35%, 20%) scale(1.35) rotate(120deg); }
  66% { transform: translate(-40%, 40%) scale(0.9) rotate(240deg); }
  100% { transform: translate(15%, -35%) scale(1.2) rotate(360deg); }
}

.big-button-1_color._1 {
  background-color: #a855f7;
  animation-delay: 0s;
}

.big-button-1_color._2 {
  background-color: #ec4899;
  animation-delay: -4s;
}

.big-button-1_color._3 {
  background-color: #3b82f6;
  animation-delay: -8s;
}

.achie-big-button-1_bg,
.bysn-big-button-1_bg {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #0b0b0b;
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.08);
  transition: all 0.56s ease-in-out;
}

.achie-big-button-1:hover .achie-big-button-1_bg,
.bysn-big-button-1:hover .bysn-big-button-1_bg,
.bysn-big-button-link-block:focus-visible .achie-big-button-1_bg,
.bysn-big-button-link-block:focus-visible .bysn-big-button-1_bg {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(168, 85, 247, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(168, 85, 247, 0.35),
    0 10px 28px rgba(59, 130, 246, 0.25);
}

.achie-big-button-1:hover,
.bysn-big-button-1:hover,
.bysn-big-button-link-block:focus-visible .achie-big-button-1,
.bysn-big-button-link-block:focus-visible .bysn-big-button-1 {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

.achie-big-button-1:hover .achie-big-button-1_glow,
.bysn-big-button-1:hover .bysn-big-button-1_glow,
.bysn-big-button-link-block:focus-visible .achie-big-button-1_glow,
.bysn-big-button-link-block:focus-visible .bysn-big-button-1_glow {
  opacity: 0.85;
  filter: blur(38px);
  transform: scale(1.05);
}

.achie-big-button-1:hover .big-button-1_color,
.bysn-big-button-1:hover .big-button-1_color,
.bysn-big-button-link-block:focus-visible .big-button-1_color {
  animation: blob-move-hover 8s infinite alternate ease-in-out;
  opacity: 0.95;
  filter: blur(45px);
}

.big-button-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .big-button-1_color {
    animation: none;
  }
  .achie-big-button-1:hover .big-button-1_color,
  .bysn-big-button-1:hover .big-button-1_color,
  .bysn-big-button-link-block:focus-visible .big-button-1_color {
    animation: none;
  }
  .comment-bubble {
    animation: none;
    opacity: 1;
  }
}

.bysn-big-button-link-block {
  text-decoration: none;
  display: block;
}

.relative-div-for-gradient::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(44, 103, 242, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .hero-stats-floating {
    right: 0;
  }
}

@media (max-width: 991px) {
  ._10x-hero-sec {
    padding-top: 100px;
    padding-bottom: 5rem;
  }
  .f101-hero-sec-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  ._10x-header1_content {
    text-align: center;
  }
  .f101-hero-logo {
    margin-left: 0;
  }
  .hero-text-logo {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-stats-left {
    justify-content: center;
    gap: 2rem;
  }
  ._10x-hero-header-content-right {
    justify-content: center;
  }
  .hero-stats-floating {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    gap: 2.5rem;
  }
  .hero-stat-box, .hero-stat-box-yellow {
    text-align: center;
  }
  .stat-number-large {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .stat-number-large {
    font-size: 2.5rem;
  }
  .big-btn-blue {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}



.leading-voice-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.leading-voice-column {
  height: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.scrolling-images-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Animation disabled to allow JS scroll control */
}

.scrolling-images-column[data-delay="true"] {
  /* Animation disabled to allow JS scroll control */
}

.scroll-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.scroll-img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.leading-voice-content {
  text-align: center;
  padding: 0 2rem;
}

.leading-voice-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  font-style: italic;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .leading-voice-section {
    padding: 5rem 0;
  }
  .leading-voice-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .leading-voice-column {
    height: 400px;
  }
  .leading-voice-column:nth-child(1) {
    order: 2;
  }
  .leading-voice-content {
    order: 1;
  }
  .leading-voice-column:nth-child(3) {
    order: 3;
  }
  .leading-voice-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .leading-voice-column {
    height: 300px;
  }
  .leading-voice-title {
    font-size: 2rem;
  }
}
