/* =====================================================
   ARSHA – TRANSFORMED TO FORMA DESIGN
   Based on: https://bootstrapmade.com/demo/Forma/
===================================================== */

/* Import Forma Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ================= ROOT VARIABLES ================= */
:root {
  /* Forma Color Palette */
  --background-color: #020c19;
  /* Deep Dark Blue */
  --default-color: #fafdff;
  /* Off-white text */
  --heading-color: #ffffff;
  /* White headings */
  --accent-color: #208bf4;
  /* Bright Blue Accent */
  --surface-color: #141e2b;
  /* Slightly lighter dark blue for cards/surfaces */
  --contrast-color: #ffffff;

  /* BootstrapMade Variable Overrides */
  --nav-color: #d8e4f0;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #1b2634;
  --nav-dropdown-background-color: #1b2634;
  --nav-dropdown-color: #fafdff;
  --nav-dropdown-hover-color: #208bf4;

  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* ================= GLOBAL RESET & OVERRIDES ================= */
body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/* ================= HEADER ================= */
.header {
  background-color: #0c1623;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  top: 40px;
  /* Offset for Demo Bar */
}

.header .logo h1 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
}

.navmenu a {
  color: var(--nav-color);
  font-family: var(--nav-font);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

/* Mobile Nav */
.mobile-nav-toggle {
  color: var(--nav-color);
}

/* ================= BUTTONS ================= */
.btn-getstarted,
.btn-primary {
  background: var(--accent-color);
  border: none;
  border-radius: 5px;
  /* Square-ish rounded corners like Forma */
  color: var(--contrast-color);
  font-weight: 500;
  padding: 10px 25px;
}

.btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* ================= SECTIONS ================= */
section,
.section {
  background-color: var(--background-color);
  color: var(--default-color);
}

.light-background {
  background-color: #0b1727 !important;
  /* Forma Light BG is still dark */
  --surface-color: #101c2d;
}

.dark-background {
  background-color: #000000 !important;
  --surface-color: #020c19;
}

.section-title h2 {
  color: var(--heading-color);
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  /* Reset Arsha's title lines if needed, or style them */
}

/* ================= CARDS / SERVICES / BLOG ================= */
.service-item,
.icon-box,
.card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  /* Subtle border */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: none;
  /* Flat look */
}

.service-item h3,
.service-item h4,
.post-item h4 a {
  color: var(--heading-color);
}

.service-item p,
.post-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* ================= BLOG SPECIFIC ================= */
.blog-page .post-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.blog .sidebar {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.blog .sidebar .search-form form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog .sidebar .search-form form input {
  color: var(--default-color);
}

.blog h2.title a {
  color: var(--heading-color);
}

.blog h2.title a:hover {
  color: var(--accent-color);
}

.blog .meta-top li {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog .meta-top i {
  color: var(--accent-color);
}

.blog .read-more a {
  color: var(--accent-color);
}

/* Pagination */
.blog .pagination ul {
  background: var(--surface-color);
}

.blog .pagination ul li a {
  color: var(--default-color);
}

.blog .pagination ul li.active a {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* ================= FOOTER ================= */
.footer {
  background-color: #0a0e16;
  color: var(--default-color);
  font-size: 14px;
}

.footer .footer-top {
  background-color: #020c19;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-newsletter {
  background: var(--surface-color);
  border: none;
}

.footer h4 {
  color: var(--heading-color);
}

.footer .social-links a {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

/* ================= HERO FIXES ================= */
.hero h1 {
  color: var(--heading-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* =====================================================
   BOOTSTRAPMADE DEMO TOP BAR (Restored & Functional)
===================================================== */
body {
  padding-top: 40px;
  transition: max-width 0.3s ease, margin 0.3s ease, box-shadow 0.3s ease;
}

.bm-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #020c19;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 13px;
  z-index: 999999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bm-left,
.bm-center,
.bm-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bm-logo {
  font-weight: 700;
  letter-spacing: 1px;
}

.bm-devices i {
  opacity: .5;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.bm-devices i:hover,
.bm-devices i.active {
  opacity: 1;
  color: var(--accent-color);
}

.bm-center .bm-title {
  font-weight: 600;
  margin: 0 10px;
}

.bm-download {
  background: var(--accent-color);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.bm-download:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
}

/* Responsive View Modes (Simulated) */
body.view-tablet {
  max-width: 768px;
  margin: 40px auto 0;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

body.view-mobile {
  max-width: 375px;
  margin: 40px auto 0;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
  margin-right: 5px;
}

.cta-highlight {
  color: #ffc107;
  font-weight: bold;
}

.bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  text-align: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Fix Header Position - Override theme's demo bar offset */
#header {
  top: 0 !important;
  background-color: rgba(12, 22, 35, 0.95);
}

/* Ensure content is not hidden behind fixed header */
/* Decreased padding from 90px to 74px to reduce gap */
body {
  padding-top: 74px !important;
}

/* Reduce hero section top padding to pull title higher */
#hero {
  padding-top: 30px !important;
}

/* Push hero image down slightly as requested */
.hero-img {
  margin-top: 50px;
}

/* Workshop Info Box Design */
.workshop-info-wrapper {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
  max-width: 450px;
}

.info-box {
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  height: 100%;
}

.info-box i {
  color: #ff6b00;
  /* Bright Orange */
  font-size: 1.2rem;
  margin-right: 10px;
}

.info-box span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

/* Blue CTA Button - Perfect Match */
.btn-enroll-blue {
  background: #208bf4;
  /* AI Blue */
  color: #fff;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 6px;
  display: block;
  width: 100%;
  max-width: 440px;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  font-size: 1.15rem;
  line-height: 1.2;
  text-transform: none;
  margin: 0 auto;
}

.btn-enroll-blue:hover {
  background: #1a76d1;
  color: #fff;
  transform: translateY(-2px);
}

.btn-enroll-blue small {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.btn-enroll-blue .old-price {
  color: #cfdcf0;
  text-decoration: line-through;
  font-weight: 400;
}

/* Bonuses Text - Perfect Match */
.hero-bonuses-text {
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.hero-bonuses-text span.highlight {
  color: #ffff00;
}

/* Featured Section Refined - Perfect Match */
.featured-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto 15px auto;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
}

.featured-logo-bar {
  background: #dcdcdc;
  /* Target Grey */
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-logo-bar .logo-item {
  color: #222;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-logo-bar .logo-item i {
  font-size: 1.2rem;
}

.highest-rated-badge {
  text-align: center;
  color: #ff9d00;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
}

/* Centered List Styles */
.hero-centered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-centered-list li {
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
}

.hero-centered-list .bi-check {
  color: #2a93f5;
  font-size: 1.4rem;
  vertical-align: middle;
}

.hero-centered-list .text-danger-custom {
  color: #ff4d4d;
}

/* Hero Benefit List (5 lines below info box) */
.hero-benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-benefit-list li {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.15rem;
  color: #fff;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.hero-benefit-list i {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 15px;
  line-height: 1;
  position: relative;
  top: 2px;
}

.text-orange,
.text-blue {
  color: #2a93f5;
}

.highlight {
  color: #2a93f5;
  font-weight: 800;
}

/* Custom utility for strike-through price */
.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
  margin-right: 5px;
}

.cta-highlight {
  color: #ffc107;
  font-weight: bold;
}

.bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-color);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  text-align: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* ================= PREMIUM COMPONENTS (NEW DESIGN) ================= */

/* Premium Blue CTA */
.btn-orange-cta {
  background: linear-gradient(180deg, #2a93f5, #208bf4);
  color: #fff !important;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-size: 1.3rem;
  line-height: 1.2;
  box-shadow: 0 8px 25px rgba(32, 139, 244, 0.4);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.btn-orange-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(32, 139, 244, 0.6);
  background: linear-gradient(180deg, #1f7fe0, #1b6fd1);
}

.btn-orange-cta i {
  margin-right: 10px;
  font-size: 1.4rem;
  vertical-align: middle;
}

.social-proof-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.4;
}

.star-rating {
  margin-bottom: 30px;
}

.star-rating i {
  color: #ffcc00;
  font-size: 2.8rem;
  margin: 0 5px;
  filter: drop-shadow(0 2px 5px rgba(255, 204, 0, 0.3));
}

.zigzag-divider {
  width: 100%;
  height: 12px;
  background-image: linear-gradient(135deg, transparent 50%, #fff 50%), linear-gradient(225deg, transparent 50%, #fff 50%);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 12px 12px;
  margin-top: 40px;
  opacity: 0.8;
}

.zigzag-divider-small {
  width: 100%;
  height: 8px;
  background-image: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.3) 50%), linear-gradient(225deg, transparent 50%, rgba(255, 255, 255, 0.3) 50%);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 8px 8px;
  margin: 30px 0;
}

/* ================= CO-FOUNDED COMPANIES & FAQ (NEW) ================= */

.co-logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.co-logo-box {
  background: #fff;
  width: 110px;
  height: 110px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.co-logo-box img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

.faq-modern {
  max-width: 900px;
  margin: 30px auto;
}

.faq-modern-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 0;
}

.faq-modern-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
}

.faq-modern-question h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.faq-triangle {
  font-size: 0.75rem;
  margin-right: 12px;
  transition: transform 0.3s;
  color: #aaa;
}

.faq-modern-item.active .faq-triangle {
  transform: rotate(90deg);
  color: #fff;
}

.faq-modern-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 25px;
  color: #ccc;
  font-size: 1rem;
}

.faq-modern-item.active .faq-modern-answer {
  max-height: 500px;
  padding-bottom: 15px;
}

.razorpay-footer {
  background: #000;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.btn-orange-cta small {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 5px;
  opacity: 0.9;
}

/* Why Join Card Grid */
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-join-card {
  background: #fff;
  border-radius: 15px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.why-join-card:hover {
  transform: translateY(-5px);
}

.why-join-card i {
  background: #000;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.why-join-card span {
  color: #111;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* Professional Alert Bar */
.prof-alert-bar {
  background: transparent;
  padding: 40px 0;
  text-align: center;
}

.prof-alert-content {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .prof-alert-content {
    font-size: 1.3rem;
  }
}

.prof-alert-content i {
  color: #ffcc00;
  font-size: 2rem;
}

.prof-alert-subtext {
  color: #ccc;
  font-size: 1.15rem;
  margin-top: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Stat Box Grid */
.stat-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.stat-item img {
  height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stat-item .stat-value {
  color: #ff3b3b;
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 5px;
}

.stat-item .stat-label {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

/* News Insight Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
}

.news-card .news-logo {
  height: 40px;
  margin-bottom: 25px;
  display: block;
}

.news-card h4 {
  color: #111;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.news-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Workshop Benefit (Colored Icons) */
.benefit-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: #f8faff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  text-align: left;
}

.benefit-card:hover {
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.benefit-card .icon-box {
  font-size: 2.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.benefit-card h4 {
  color: #111;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Specific Benefit Colors */
.benefit-linkedin i {
  color: #0077b5;
}

.benefit-excel i {
  color: #1d6f42;
}

.benefit-ppt i {
  color: #d04423;
}

.benefit-interview i {
  color: #00a0dc;
}

.benefit-report i {
  color: #2ecc71;
}

.benefit-code i {
  color: #007acc;
}

/* Bonus Item Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.bonus-item {
  background: #fff;
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.bonus-label {
  background: #000;
  color: #fff;
  padding: 8px 25px;
  border-radius: 10px;
  font-weight: 800;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  text-transform: uppercase;
}

.bonus-item .bonus-icon-box {
  margin-bottom: 25px;
}

.bonus-item .bonus-icon-box i {
  font-size: 3.5rem;
  color: #d04423;
  /* PDF/DOC Red */
}

.bonus-item h4 {
  color: #111;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.bonus-worth-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #212529;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  pointer-events: none;
}


/* ================= FEATURED STRIP (IMAGE-1 MATCH) ================= */

.featured-strip {
  background: #000;
  padding: 60px 0 40px;
}

/* CTA Button - Perfect Refinement */
.featured-cta {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px auto;
  background: linear-gradient(180deg, #2a93f5, #208bf4);
  color: #ffffff !important;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  box-shadow: 0 6px 15px rgba(32, 139, 244, 0.3);
  text-decoration: none;
}

.featured-cta span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 5px;
  color: #eaf2ff;
}

.featured-cta del {
  opacity: 0.7;
  text-decoration: line-through;
}

.featured-cta:hover {
  background: linear-gradient(180deg, #1f7fe0, #1b6fd1);
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(32, 139, 244, 0.45);
}

/* Bonus Line */
.featured-bonus {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 1.15rem;
}

.featured-bonus span {
  color: #208bf4;
  /* AI Blue */
}

/* Featured Title */
.featured-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Logo Bar - Perfected Sizing & Spacing */
.featured-logos {
  background: #dcdcdc;
  /* Target Grey */
  border-radius: 12px;
  padding: 22px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-logos div {
  font-weight: 700;
  color: #111;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Rating Badge */
.featured-rating {
  margin-top: 20px;
  font-weight: 700;
  color: #208bf4;
  /* AI Blue */
  font-size: 1.05rem;
}

/* ================= BIG HEADLINE ================= */

.featured-headline {
  background: #050b1f;
  padding: 50px 0;
}

.featured-headline h2 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .featured-headline h2 {
    font-size: 1.5rem;
  }

  .featured-cta {
    font-size: 1rem;
    padding: 12px 20px;
  }
}



/* Price text inside button */
.btn-enroll-blue small {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
  color: #eaf2ff;
}

.btn-enroll-blue .old-price {
  text-decoration: line-through;
  opacity: 0.75;
}

.workshop-info-wrapper {
  background: #1a1a1a;
  padding: 18px;
  border-radius: 14px;
  max-width: 460px;
}

/* Common Box */
.info-box {
  background: #000;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

/* Icons */
.info-box i {
  color: #ff6b00;
  font-size: 1.3rem;
}

/* Text */
.info-box span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Price Special Highlight */
.price-box {
  justify-content: center;
  background: linear-gradient(180deg, #000, #111);
}

.price-box span {
  font-size: 1.05rem;
  font-weight: 800;
}

.price-box small {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.75;
}

/* Wrapper */
.real-usecase-wrapper {
  max-width: 520px;
}

/* Heading */
.real-usecase-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* List reset */
.real-usecases {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each item */
.real-usecases li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

/* Circle icon */
.icon-circle {
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Arrow */
.icon-circle i {
  color: #ffffff;
  font-size: 14px;
}

/* Text */
.real-usecases .text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Highlight blue */
.highlight-blue {
  color: #3aa0ff;
  font-weight: 700;
}

/* ================= PAIN & SOLUTION SECTION ================= */

.pain-section {
  background: radial-gradient(circle at top, #0b1727, #020617);
  padding: 80px 0;
  color: #ffffff;
}

.pain-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.pain-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px 45px;
}

/* Title */
.pain-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Intro */
.pain-intro {
  font-size: 1.05rem;
  color: #c7d2fe;
  margin-bottom: 20px;
}

/* List */
.pain-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.pain-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.pain-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6b00;
  font-weight: bold;
}

/* Truth Box */
.pain-truth {
  background: rgba(255, 107, 0, 0.08);
  border-left: 4px solid #ff6b00;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.pain-truth p {
  margin: 0;
  font-size: 1.05rem;
}

/* Solution */
.pain-solution p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #e5edff;
}

/* CTA */
.pain-cta {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(180deg, #2a93f5, #208bf4);
  color: #ffffff;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(32, 139, 244, 0.45);
}

.pain-cta:hover {
  background: linear-gradient(180deg, #1f7fe0, #1b6fd1);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(32, 139, 244, 0.6);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .pain-content {
    padding: 35px 22px;
  }

  .pain-title {
    font-size: 1.6rem;
  }
}

/* ================= WHY JOIN WORKSHOP ================= */

/* ================= WHY JOIN WORKSHOP (IMAGE 0) ================= */
.why-join-workshop {
  background: #ffffff !important;
  padding: 80px 0;
  color: #111111 !important;
}

.why-join-workshop hr {
  border: 0;
  border-top: 1px solid #d1d5db;
  opacity: 1;
  margin: 0;
}

.why-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 40px;
}

.why-list {
  max-width: 850px;
  margin: 30px auto;
}

.why-item {
  margin-bottom: 24px;
}

.why-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-item p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

/* ================= WORKSHOP FOR YOU (IMAGE 1) ================= */
.workshop-for-you {
  background: #000000 !important;
  padding: 90px 0;
  color: #ffffff !important;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header .underline {
  display: block;
  width: 50px;
  height: 4px;
  background: #208bf4;
  margin: 0 auto 25px;
}

.section-header p {
  color: #ffffff;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Cards Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Card */
.tool-card {
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
  min-height: 140px;
}

/* Icon Box */
.tool-card .icon {
  width: 44px;
  height: 60px;
  background: #111827;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Specific Icon Markings */
.icon.linkedin {
  color: #0a66c2;
  font-size: 1.2rem;
}

.icon.excel {
  color: #22c55e;
}

.icon.ppt {
  color: #f97316;
}

.icon.interview {
  color: #cbd5e1;
  font-size: 1.3rem;
}

.icon.research {
  color: #38bdf8;
  font-size: 1.1rem;
}

.icon.coding {
  color: #2563eb;
  font-size: 1.1rem;
}

/* Tool Content */
.tool-card .content p {
  font-size: 1rem;
  color: #374151;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 20px;
  }

  .why-join-workshop {
    padding: 50px 20px;
  }
}

/* ================= PAIN & SOLUTION SECTION ================= */

.pain-section {
  background: radial-gradient(circle at top, #0b1727, #020617);
  padding: 80px 0;
  color: #ffffff;
}

.pain-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.pain-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px 45px;
}

/* Title */
.pain-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Intro */
.pain-intro {
  font-size: 1.05rem;
  color: #c7d2fe;
  margin-bottom: 20px;
}

/* List */
.pain-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.pain-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.pain-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6b00;
  font-weight: bold;
}

/* Truth Box */
.pain-truth {
  background: rgba(255, 107, 0, 0.08);
  border-left: 4px solid #ff6b00;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.pain-truth p {
  margin: 0;
  font-size: 1.05rem;
}

/* Solution */
.pain-solution p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #e5edff;
}

/* CTA */
.pain-cta {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(180deg, #2a93f5, #208bf4);
  color: #ffffff;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(32, 139, 244, 0.45);
}

.pain-cta:hover {
  background: linear-gradient(180deg, #1f7fe0, #1b6fd1);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(32, 139, 244, 0.6);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .pain-content {
    padding: 35px 22px;
  }

  .pain-title {
    font-size: 1.6rem;
  }
}

/* ================= WORKSHOP FOR YOU ================= */

.workshop-for-you {
  background: #000;
  padding: 90px 0;
  color: #fff;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-header .underline {
  display: block;
  width: 60px;
  height: 3px;
  background: #208bf4;
  margin: 14px auto 20px;
}

.section-header p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.tool-card {
  background: #ffffff;
  color: #000;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Icon box */
.tool-card .icon {
  width: 52px;
  height: 70px;
  background: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Content */
.tool-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WORKSHOP FOR YOU ================= */

.workshop-for-you {
  background: radial-gradient(circle at top, #0b1727, #020617);
  padding: 90px 0;
  color: #ffffff;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 55px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-header .underline {
  display: block;
  width: 55px;
  height: 3px;
  background: #208bf4;
  margin: 14px auto 20px;
}

.section-header p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.tool-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* Icon box */
.icon-box {
  width: 48px;
  height: 48px;
  background: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Text */
.card-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BEFORE VS AFTER SECTION ================= */

.before-after-section {
  background: #ffffff;
  padding: 80px 0;
}

/* Heading */
.before-after-header {
  text-align: center;
  margin-bottom: 30px;
}

.before-after-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
}

/* Table Wrapper */
.before-after-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #000;
}

/* Rows */
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Header Row */
.table-head .table-col {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid #000;
}

.table-head .before {
  border-right: 1px solid #000;
}

/* Body Columns */
.table-body .table-col {
  padding: 18px 22px;
}

/* Borders */
.table-body .before {
  border-right: 1px solid #000;
}

/* Lists */
.before-after-table ul {
  padding-left: 18px;
  margin: 0;
}

.before-after-table li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #000;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-head .before,
  .table-body .before {
    border-right: none;
    border-bottom: 1px solid #000;
  }
}

/* ================= BEFORE VS AFTER – DARK THEME ================= */

.before-after-dark {
  background: radial-gradient(circle at top, #0b1727, #020617);
  padding: 90px 0;
  color: #ffffff;
}

/* Heading */
.before-after-header-dark {
  text-align: center;
  margin-bottom: 35px;
}

.before-after-header-dark h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
}

.before-after-header-dark .icon {
  margin-right: 6px;
}

/* Table Wrapper */
.before-after-table-dark {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
}

/* Rows */
.table-row-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Header */
.table-head-dark .table-col-dark {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.table-head-dark .before {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Body */
.table-body-dark .table-col-dark {
  padding: 22px 26px;
}

.table-body-dark .before {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Lists */
.before-after-table-dark ul {
  padding-left: 18px;
  margin: 0;
}

.before-after-table-dark li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #e5edff;
  line-height: 1.45;
}

/* Highlight good outcomes */
.before-after-table-dark .after li strong {
  color: #4ade80;
  /* green */
}

/* Responsive */
@media (max-width: 768px) {
  .table-row-dark {
    grid-template-columns: 1fr;
  }

  .table-head-dark .before,
  .table-body-dark .before {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* ================= DARK LEARN MODULES ================= */

.dark-learn {
  background: radial-gradient(circle at top, #050b1f, #020617);
  padding: 90px 0;
  color: #ffffff;
}

/* Title */
.dark-learn .learn-title {
  text-align: center;
  margin-bottom: 55px;
}

.dark-learn .learn-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* Grid */
.learn-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.dark-card {
  background: linear-gradient(180deg, #050b1f, #020617);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s ease;
}

/* White Glow Border */
.dark-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.8));
  z-index: -1;
  opacity: 0.4;
}

/* Hover */
.dark-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

/* Image */
.module-top {
  text-align: center;
  margin-bottom: 22px;
}

.module-top img {
  max-width: 170px;
  /* 🔥 IMAGE BIG */
  margin-bottom: 14px;
}

.module-top h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

/* List */
.dark-card ul {
  padding-left: 18px;
  margin: 0;
}

.dark-card li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.45;
  color: #e6edff;
}

/* Responsive */
@media (max-width: 992px) {
  .learn-modules-grid {
    grid-template-columns: 1fr;
  }

  .module-top img {
    max-width: 150px;
  }
}

/* ================= CARD BASE ================= */

.dark-card {
  background: linear-gradient(180deg, #060d25, #020617);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  overflow: hidden;
  /* IMPORTANT */
  transition: all 0.35s ease;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glow */
.dark-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.9));
  z-index: -1;
  opacity: 0.35;
}

/* Hover */
.dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
}

/* ================= IMAGE AREA (50% CARD) ================= */

.module-image {
  height: 260px;
  /* 🔥 HALF CARD FEEL */
  width: 100%;
  overflow: hidden;
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 PERFECT FIT */
  object-position: center;
  display: block;
}

/* ================= CONTENT AREA ================= */

.module-content {
  padding: 26px 28px 30px;
  flex: 1;
}

.module-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

.module-content ul {
  padding-left: 20px;
  margin: 0;
}

.module-content li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #e6edff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .dark-card {
    min-height: auto;
  }

  .module-image {
    height: 220px;
  }
}


/* ================= DARK SECTION ================= */

.dark-learn {
  background: radial-gradient(circle at top, #050b1f, #020617);
  padding: 90px 0;
  color: #fff;
}

/* Title */
.learn-title {
  text-align: center;
  margin-bottom: 60px;
}

.learn-title h2 {
  font-size: 2.3rem;
  font-weight: 800;
}

/* Grid */
.learn-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.dark-card {
  background: linear-gradient(180deg, #060d25, #020617);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  overflow: hidden;
  /* 🔥 IMPORTANT */
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Glow Border */
.dark-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.8));
  z-index: -1;
  opacity: 0.35;
}

/* Hover */
.dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* ================= IMAGE (FULL WIDTH) ================= */

.module-image {
  width: 100%;
  height: 240px;
  /* 🔥 SAME AS IMAGE-1 STYLE */
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 NO STRETCH */
  object-position: center;
  display: block;
}

/* ================= CONTENT ================= */

.module-content {
  padding: 26px 28px 32px;
}

.module-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.module-content ul {
  padding-left: 20px;
  margin: 0;
}

.module-content li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #e6edff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .learn-modules-grid {
    grid-template-columns: 1fr;
  }

  .module-image {
    height: 220px;
  }
}

/* ================= DARK SECTION ================= */

.dark-learn {
  background: radial-gradient(circle at top, #050b1f, #020617);
  padding: 90px 0;
  color: #ffffff;
}

/* ================= TITLE ================= */

.learn-title {
  text-align: center;
  margin-bottom: 55px;
}

.learn-title h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
}

/* ================= GRID ================= */

.learn-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ================= DARK SECTION ================= */

.dark-learn {
  background: radial-gradient(circle at top, #050b1f, #020617);
  padding: 80px 0;
  color: #ffffff;
}

/* ================= TITLE ================= */

.learn-title {
  text-align: center;
  margin-bottom: 45px;
}

.learn-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* ================= GRID ================= */

.learn-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  /* 🔥 gap reduced */
}

/* ================= DARK SECTION ================= */

.dark-learn {
  background: radial-gradient(circle at top, #050b1f, #020617);
  padding: 75px 0;
  color: #ffffff;
}

/* ================= TITLE ================= */

.learn-title {
  text-align: center;
  margin-bottom: 40px;
}

.learn-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* ================= GRID ================= */

.learn-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  /* 🔥 tighter gap */
}

/* ================= CARD ================= */

.dark-card {
  background: linear-gradient(180deg, #060d25, #020617);
  border: 1.6px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

/* Glow Border */
.dark-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.7));
  z-index: -1;
  opacity: 0.28;
}

/* Hover */
.dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ================= IMAGE ================= */

.module-image {
  width: 100%;
  height: 215px;
  /* 🔥 image thodi moti */
  padding: 8px;
  /* 🔥 extra padding cut */
  box-sizing: border-box;
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* ================= CONTENT ================= */

.module-content {
  padding: 10px 20px 16px;
  /* 🔥 vertical space ghatyu */
}

/* Title */
.module-content h3 {
  font-size: 1.45rem;
  /* 🔥 heading mota */
  font-weight: 800;
  margin-bottom: 8px;
  /* 🔥 gap cut */
  color: #ffffff;
}

/* List */
.module-content ul {
  padding-left: 18px;
  margin: 0;
}

.module-content li {
  font-size: 1.02rem;
  /* 🔥 list text mota */
  margin-bottom: 6px;
  /* 🔥 tight spacing */
  line-height: 1.38;
  color: #e6edff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .module-image {
    height: 195px;
    padding: 6px;
  }

  .module-content {
    padding: 10px 16px 14px;
  }

  .module-content h3 {
    font-size: 1.3rem;
  }

  .module-content li {
    font-size: 0.95rem;
  }
}

/* ================= SECTION ================= */

.before-after-dark {
  background: radial-gradient(circle at top, #050b1f, #020617);
  color: #ffffff;
}

/* ================= TITLE ================= */

.before-after-title {
  font-size: 2.4rem;
  /* 🔥 bigger */
  font-weight: 800;
  color: #ffffff;
}

/* ================= CARD ================= */

.before-after-card {
  border-radius: 18px;
  border: 1.6px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, #060d25, #020617);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* ================= HEADER ================= */

.table-head {
  font-size: 1.4rem;
  /* 🔥 bigger heading */
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.table-head .before-col {
  color: #ff6b6b;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.table-head .after-col {
  color: #4cd964;
}

/* ================= BODY ================= */

.table-body {
  font-size: 1.15rem;
  /* 🔥 bigger text */
}

/* Columns */
.before-col,
.after-col {
  padding: 28px 36px;
}

/* Divider */
.table-body .before-col {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* List */
.before-after-card ul {
  padding-left: 20px;
  margin: 0;
}

.before-after-card li {
  margin-bottom: 14px;
  /* 🔥 more breathing */
  line-height: 1.55;
  color: #e6edff;
}

/* Highlight text */
.before-after-card .highlight {
  color: #4cd964;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .table-head {
    font-size: 1.25rem;
  }

  .before-col,
  .after-col {
    padding: 22px 20px;
  }

  .table-body {
    font-size: 1.05rem;
  }

  .table-head .before-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .table-body .before-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.learn-modules-section {
  padding-bottom: 40px; /* pehle zyada tha */
}
.productivity-section {
  margin-top: -20px; /* smooth visual connection */
}
/* =====================================================
   GROW10X AI – PREMIUM DARK DESIGN SYSTEM (BOOTSTRAP)
===================================================== */

/* -----------------------------
   GLOBAL BASE
------------------------------ */
body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.65;
}

/* -----------------------------
   SECTION SPACING (CONSISTENT)
------------------------------ */
section {
  padding: 90px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* -----------------------------
   TITLE SYSTEM (SAME EVERYWHERE)
------------------------------ */
h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}
h2 {
  font-size: 2.4rem;
  font-weight: 800;
}
h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
h4 {
  font-size: 1.35rem;
  font-weight: 600;
}
h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.5rem; }
}

/* -----------------------------
   COMMON TITLE UNDERLINE
------------------------------ */
.underline,
.section-divider {
  width: 90px;
  height: 3px;
  background: #0dcaf0;
  margin: 14px auto 0;
}

/* -----------------------------
   DARK BOX (ALL CARDS / SECTIONS)
------------------------------ */
.rounded-4,
.dark-card,
.tool-card,
.learn-module-card {
  background: linear-gradient(180deg,#020617,#000);
  border: 1.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 30px 80px rgba(0,0,0,0.85);
}

/* -----------------------------
   LIST CONSISTENCY
------------------------------ */
ul li {
  line-height: 1.65;
  margin-bottom: 8px;
}

/* -----------------------------
   BUTTON SYSTEM (ALL CTA SAME)
------------------------------ */
.btn,
.btn-info,
.btn-orange-cta,
.pain-cta {
  border-radius: 12px !important;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 14px 26px;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 14px 40px rgba(0, 200, 255, 0.35);
}

.btn-info,
.pain-cta,
.btn-orange-cta {
  background: linear-gradient(135deg,#00c6ff,#0072ff) !important;
  border: none !important;
  color: #fff !important;
}

.btn:hover,
.btn-info:hover,
.btn-orange-cta:hover,
.pain-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(0, 200, 255, 0.55);
}

/* -----------------------------
   TEXT COLORS
------------------------------ */
.text-info {
  color: #00e5ff !important;
}
.text-white-50 {
  color: rgba(255,255,255,0.7) !important;
}

/* -----------------------------
   IMAGE STYLING
------------------------------ */
img {
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.85);
}

/* -----------------------------
   FAQ POLISH
------------------------------ */
.faq-modern-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0;
}
.faq-modern-question h3 {
  font-size: 1.1rem;
}

/* -----------------------------
   HERO LIST ICONS
------------------------------ */
.hero-centered-list li i,
.hero-benefit-list i {
  color: #00e5ff;
}

/* -----------------------------
   SMOOTH VISUAL BALANCE
------------------------------ */
.container {
  max-width: 1200px;
}
/* ================================
   WHY JOIN WORKSHOP – WHITE CARDS
================================ */

/* Section background */
.workshop-for-you {
  background: #0b0f1a; /* dark background */
  padding: 90px 0;
}

/* Title */
.workshop-for-you .section-header h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.4rem;
}

/* Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

/* CARD – WHITE BOX */
.tool-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* Hover effect (premium) */
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0, 200, 255, 0.25);
}

/* Icon box */
.tool-card .icon-box {
  font-size: 1.8rem;
  background: linear-gradient(135deg,#00c6ff,#0072ff);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,114,255,0.35);
}

/* Content */
.tool-card h4 {
  color: #0b0f1a;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tool-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .workshop-for-you {
    padding: 60px 0;
  }
}
/* ================================
   HERO POSTER – BIG, CLEAN, NO BORDER
================================ */

/* Image wrapper */
.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main poster image */
.hero-poster {
  width: 100%;
  max-width: 520px;          /* 🔥 image width increase */
  max-height: 600px;         /* 🔥 image height increase */
  object-fit: contain;
  border: none !important;   /* ❌ no border */
  border-radius: 0;          /* clean poster edge */
  box-shadow: 0 40px 90px rgba(0,0,0,0.75); /* premium depth */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle premium hover */
.hero-poster:hover {
  transform: scale(1.04);
  box-shadow: 0 55px 120px rgba(0,0,0,0.85);
}

/* Large screens (desktop, laptops) */
@media (min-width: 1200px) {
  .hero-poster {
    max-width: 600px;
    max-height: 680px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-poster {
    max-width: 480px;
    max-height: 520px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-poster {
    max-width: 100%;
    max-height: 420px;
    margin-top: 20px;
  }
}
