@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");
:root {
  /* Green Theme Colors */
  --primary-green: #10b981;
  /* Emerald Primary */
  --dark-green: #064e3b;
  /* Deep Forest Green */
  --light-green: #ecfdf5;
  /* Light Mint Background */
  --accent-green: #34d399;
  /* Secondary Green */
  --emerald-gradient: linear-gradient(135deg, #064e3b 0%, #0f291e 100%);
  --white: #ffffff;
  --dark: #0a0a23;
  /* Text Color */
  --gray: #6b7280;
  /* Secondary Text */
  --background: #f6f7fb;
  /* Page Background */
  --border-color: #e5e7eb;
  /* Border Color */
  --success: #10b981;
}
/* Global Reset & Typography */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--dark);
}
.font-extrabold {
  font-weight: 800 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-numbers {
  font-family: "Space Grotesk", sans-serif;
}
/* Gradients & Backgrounds */
.bg-gradient-dark {
  background: var(--emerald-gradient);
}
.bg-gradient-green {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--primary-green) 100%
  );
}
.bg-gradient-light {
  background: linear-gradient(135deg, #f6f7fb 0%, #ecfdf5 100%);
}
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-accent {
  background: linear-gradient(
    135deg,
    var(--accent-green) 0%,
    var(--primary-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Premium Soft Shadow & Border Radius */
.premium-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  overflow: hidden;
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}
/* Promise Stacked Cards */
.promise-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* padding-bottom: 260px; Increased to allow last card to overlap fully */
}
.promise-stack-card {
  position: sticky;
  top: 180px;
  width: 100%;
  background: #064e3b !important;
  /* solid deep forest green background */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 24px !important;
  color: var(--white) !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  margin-bottom: 40px;
  /* spacing to allow scroll triggers */
  transform-origin: center top;
}
.promise-stack-card:last-child {
  margin-bottom: 0;
}
.promise-stack-card:nth-child(1) {
  z-index: 1;
}
.promise-stack-card:nth-child(2) {
  z-index: 2;
}
.promise-stack-card:nth-child(3) {
  z-index: 3;
}
@media (max-width: 768px) {
  .promise-stack-card {
    top: 140px;
    padding: 2rem 1.5rem !important;
    margin-bottom: 100px;
  }
}
/* Pricing Stacked Cards */
.pricing-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* padding-bottom: 260px; runway for last card to overlap fully */
}
.pricing-stack-card {
  position: sticky;
  top: 180px;
  width: 100%;
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 24px !important;
  color: var(--dark) !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 40px;
  transform-origin: center top;
}
.pricing-stack-card.active-offer-card {
  background-color: var(--light-green) !important;
  border: 2px solid var(--primary-green) !important;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.12) !important;
}
.pricing-stack-card:last-child {
  margin-bottom: 0;
}
.pricing-stack-card:nth-child(1) {
  z-index: 1;
}
.pricing-stack-card:nth-child(2) {
  z-index: 2;
}
.pricing-stack-card:nth-child(3) {
  z-index: 3;
}
.pricing-stack-card:nth-child(4) {
  z-index: 4;
}
.pricing-stack-card:nth-child(5) {
  z-index: 5;
}
.pricing-stack-card:nth-child(6) {
  z-index: 6;
}
@media (max-width: 768px) {
  .pricing-stack-card {
    top: 140px;
    padding: 2rem 1.5rem !important;
    margin-bottom: 80px;
  }
}
/* Buttons (999px Border Radius) */
.btn-primary-edu {
  background-color: var(--primary-green);
  color: var(--white) !important;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 999px !important;
  transition:
    background-color 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-primary-edu:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}
.btn-outline-edu {
  background: transparent;
  color: var(--primary-green) !important;
  border: 2px solid var(--primary-green) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.8rem 2.1rem;
  border-radius: 999px !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-outline-edu:hover {
  background-color: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.btn-pulse {
  position: relative;
  overflow: hidden;
}
.btn-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(52, 211, 153, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    width 0.6s ease-out,
    height 0.6s ease-out,
    opacity 0.6s ease-out;
}
.btn-pulse:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: 0s;
}
/* Glassmorphism & Navbar */
.navbar-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar-glass.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.navbar-nav .nav-link {
  color: var(--dark);
  padding: 0.5rem 1.1rem !important;
  transition: color 0.3s ease;
  position: relative;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
  background-color: transparent !important;
}
.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
  font-weight: 700 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(6, 78, 59, 0.04);
  border-radius: 24px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12);
}
.glass-card-dark {
  background: rgba(6, 78, 59, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.glass-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.25);
}
/* Hero Premium Styles - Overlap Spacing Fixed */
.hero-premium {
  min-height: 100vh;
  position: relative;
  background-image: url("../assets/imgs/herobg.png");
  background-size: cover;
  /* background-position: center; */
  background-attachment: scroll;
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 130px;
  /* Offset for fixed-top navbar */
  padding-bottom: 70px;
}
.hero-premium-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}
.hero-premium-content h1 {
  color: var(--white) !important;
}
.hero-avatar-group {
  display: flex;
  align-items: center;
  gap: -10px;
}
.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -10px;
  object-fit: cover;
}
.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.hero-badge-item i {
  color: var(--accent-green);
  font-size: 1.1rem;
}
/* Native CSS Animations - Solves GSAP Fail/Invisible Issues */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
/* Floating Card Effects */
.floating-badge-card {
  position: absolute;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite alternate;
  z-index: 10;
}
.floating-badge-card.delay-1 {
  animation-delay: 1s;
}
.floating-badge-card.delay-2 {
  animation-delay: 2s;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-12px);
  }
}
/* Section Common Layout Utility */
section.py-6 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
.section-header-block {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}
.section-header-block h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-header-block p {
  color: var(--gray);
  font-size: 1.1rem;
}
/* Horizontal Infinite Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.marquee-item:hover {
  opacity: 1;
  color: var(--primary-green);
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
/* Horizontal Auto-Scrolling Course Carousel */
.carousel-infinite-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
}
.carousel-infinite-content {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: infinite-scroll-course 35s linear infinite;
}
.carousel-infinite-content:hover {
  animation-play-state: paused;
}
.course-carousel-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.course-carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}
.benefits-carousel-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.benefits-carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}
@keyframes infinite-scroll-course {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}
@keyframes infinite-scroll-reverse {
  0% {
    transform: translateX(calc(-50% - 0.75rem));
  }
  100% {
    transform: translateX(0);
  }
}
.scroll-slower {
  animation-duration: 48s;
}
.scroll-faster {
  animation-duration: 28s;
}
.scroll-reverse {
  animation-name: infinite-scroll-reverse;
}
/* Horizontal Scroll Expert Learning Cards */
.horizontal-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.horizontal-scroll-container::-webkit-scrollbar {
  height: 8px;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--primary-green);
  border-radius: 999px;
}
.expert-category-card {
  flex: 0 0 280px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 0;
  text-align: left;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.expert-category-card:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-5px);
}
.expert-category-card:hover h4,
.expert-category-card:hover p {
  color: var(--white) !important;
}
.instructor-scroll-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
/* Founder Message Component */
.founder-video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--white);
  cursor: pointer;
}
.founder-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 78, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.founder-video-container:hover .founder-video-overlay {
  background: rgba(6, 78, 59, 0.55);
}
.play-btn-glow {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-glow 2s infinite;
  transition: transform 0.3s ease;
}
.founder-video-container:hover .play-btn-glow {
  transform: scale(1.1);
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
/* Price Psychology Block */
.price-psychology-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .price-psychology-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .price-psychology-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.price-psychology-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}
.price-psychology-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}
.price-psychology-card.active {
  border: 2px solid var(--primary-green);
  background-color: var(--light-green);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}
.price-bubble {
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
  position: relative;
}
.price-psychology-card.active .price-bubble {
  background: var(--primary-green);
}
/* Instructor Grid */
.instructor-card {
  border-radius: 24px !important;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.instructor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}
.instructor-avatar {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
/* Testimonial Slider */
.testimonial-slider-container {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  padding: 3rem;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}
.testimonial-slide.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  border: none;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.testimonial-slider-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}
/* Category Pills */
.category-pill {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  margin: 0.4rem;
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
}
.category-pill:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-2px);
}
/* Timeline components */
.timeline-edu {
  position: relative;
  padding-left: 2.5rem;
  border-left: 3px solid rgba(16, 185, 129, 0.2);
}
.timeline-edu-item {
  position: relative;
  margin-bottom: 3.5rem;
}
.timeline-edu-item:last-child {
  margin-bottom: 0;
}
.timeline-edu-marker {
  position: absolute;
  left: calc(-2.5rem - 11px);
  top: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.timeline-edu-item:hover .timeline-edu-marker {
  background: var(--accent-green);
  transform: scale(1.2);
  box-shadow: 0 0 20px var(--primary-green);
}
/* Interactive Jobs Portal Widget */
.jobs-drop-zone {
  border: 2px dashed rgba(16, 185, 129, 0.3);
  background: var(--light-green);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}
.jobs-drop-zone.dragover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary-green);
}
.jobs-match-item {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.jobs-match-item:hover {
  border-color: var(--primary-green);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.05);
}
/* Bottom Persistent Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 120px);
  width: 92%;
  max-width: 1000px;
  background: linear-gradient(
    90deg,
    rgba(235, 238, 255, 0.92) 0%,
    rgba(243, 246, 255, 0.92) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 999px;
  color: #1e1b4b;
  padding: 0.8rem 2rem;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}
.sticky-cta-bar.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.sticky-cta-bar .btn-sticky-blue {
  background-color: #4f46e5;
  color: var(--white) !important;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 999px !important;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
}
.sticky-cta-bar .btn-sticky-blue:hover {
  background-color: #3730a3;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}
@media (max-width: 768px) {
  .sticky-cta-bar {
    bottom: 12px;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    width: 95%;
    transform: translate(-50%, 150px);
  }
  .sticky-cta-bar.visible {
    transform: translate(-50%, 0);
  }
}
/* Graph Mockups */
.mock-bar {
  height: 24px;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.15);
  overflow: hidden;
  position: relative;
}
.mock-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--dark-green) 0%,
    var(--primary-green) 100%
  );
  border-radius: 12px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}
/* Accordion modifications */
.accordion-button:not(.collapsed) {
  background-color: var(--light-green);
  color: var(--dark-green);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(16, 185, 129, 0.2);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--dark-green);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}
/* Hero Skills Page Custom Styles */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 100px 0;
  color: var(--white) !important;
}
.hero-skills-img {
  background-image: url("../assets/imgs/homecard2.png");
}
.hero-skills::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-skills-content {
  position: relative;
  z-index: 2;
}
.hero-skills h1 {
  color: var(--white) !important;
}
.hero-skills p {
  color: rgba(255, 255, 255, 0.8) !important;
}
/* Skills Page Filter Buttons & Navigation Pills */
.nav-pills-edu {
  gap: 12px;
  margin-top: 1.5rem;
}
.skills-filter-btn {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  color: var(--dark) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.skills-filter-btn:hover {
  background-color: var(--light-green) !important;
  color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.1);
}
.skills-filter-btn.active {
  background-color: var(--primary-green) !important;
  color: var(--white) !important;
  border-color: var(--primary-green) !important;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25) !important;
}
/* Card Zoom and Image Scaling */
.zoom-grid-container {
  overflow: hidden;
  border-radius: 24px;
}
.zoom-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.zoom-grid-container:hover .zoom-grid-img {
  transform: scale(1.06);
}
/* Premium Curved Footer Style */
.premium-footer {
  background: var(--emerald-gradient) !important;
  border-top-left-radius: 40px !important;
  border-top-right-radius: 40px !important;
  border-top: none !important;
  padding-top: 5rem !important;
  padding-bottom: 2rem !important;
  position: relative;
  overflow: hidden;
}
/* ==========================================
   COMMUNITY PAGE CUSTOM WIDGETS
   ========================================== */
.hero-community-img {
  background-image: url("../assets/imgs/bgcard.png");
}
/* Avatar Bubble Grid Visual */
.avatar-bubble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: max-content;
}
.avatar-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.avatar-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-bubble:hover {
  transform: scale(1.1);
  border-color: var(--accent-green);
}
/* Map background overlay card */
.card-world-map {
  background-color: var(--dark-green);
  position: relative;
  overflow: hidden;
}
.map-dot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.6) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
}
.map-pin-glow {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fbbf24;
  /* yellow/orange glow */
  border-radius: 50%;
  box-shadow:
    0 0 10px #fbbf24,
    0 0 20px #fbbf24;
  animation: pulse-glow-yellow 2s infinite alternate;
}
@keyframes pulse-glow-yellow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 1;
  }
}
/* Radial Progress Indicator using conic gradients */
.radial-progress-widget {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.radial-progress-widget::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background-color: var(--white);
  border-radius: 50%;
  z-index: 1;
}
.radial-progress-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.radial-progress-content i {
  font-size: 1.15rem;
  margin-bottom: -2px;
}
/* Community Feature square icons */
.icon-box-square-green {
  width: 54px;
  height: 54px;
  background-color: var(--light-green);
  color: var(--primary-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    color 0.3s ease;
}
.icon-box-square-green:hover {
  transform: translateY(-2px);
  background-color: var(--primary-green);
  color: var(--white);
}
/* Testimonial styling matching image 5 */
.testimonial-panel-bg {
  background-color: #042c20 !important;
  /* Extremely dark forest green background */
  color: var(--white);
  border-radius: 32px !important;
}
.student-photo-card {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
}
.student-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(4, 44, 32, 0.95) 0%,
    rgba(4, 44, 32, 0.4) 60%,
    transparent 100%
  );
  color: var(--white);
}
.student-text-card {
  background-color: #0b3d2e !important;
  /* Slightly lighter forest green card */
  border-radius: 24px !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}
.student-meta-badge {
  background-color: #114e3c !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 16px !important;
  padding: 1rem 1.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}
/* 1. Global Learning Section Enhancements */
.stats-number-premium {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}
.stats-card-premium {
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  background: linear-gradient(135deg, #042c20 0%, #064e3b 100%) !important;
  box-shadow: 0 15px 35px rgba(4, 44, 32, 0.25) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.stats-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.2) !important;
}
.radial-label-premium {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--dark-green) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* 2. Premium Testimonial Carousel Controls & Watermarks */
.testimonial-carousel-control {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green) !important;
  border-radius: 50%;
  opacity: 0.95 !important;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  z-index: 5;
}
.testimonial-carousel-control:hover {
  background-color: var(--accent-green) !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}
.testimonial-carousel-control-prev {
  left: -25px;
}
.testimonial-carousel-control-next {
  right: -25px;
}
@media (max-width: 991px) {
  .testimonial-carousel-control-prev {
    left: -10px;
  }
  .testimonial-carousel-control-next {
    right: -10px;
  }
}
.student-text-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3d2e 0%, #062c20 100%) !important;
}
/* Diagonal chevron vector watermark matching image background */
.student-text-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(16, 185, 129, 0.04)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 17 18 12 13 7'/%3E%3Cpolyline points='6 17 11 12 6 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
/* 3. Founder 1-on-1 Section */
.founder-card-premium {
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  background: linear-gradient(135deg, #053b2c 0%, #032017 100%) !important;
  border-radius: 28px !important;
  color: var(--white) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
  overflow: hidden;
}
.founder-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.founder-tag-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.booking-panel-premium {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.feature-pill-green {
  background-color: var(--light-green);
  color: var(--dark-green);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.feature-pill-green:hover {
  transform: translateY(-2px);
  background-color: #d1fae5;
}
/* 4. Monthly Workshops Section */
.workshop-card-premium {
  border: 1px solid var(--border-color) !important;
  border-radius: 24px !important;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  background-color: #ffffff;
}
.workshop-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25) !important;
}
.workshop-badge-neon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  text-transform: uppercase;
}
/* 5. CountryEdu Community Features Section (Section 2) */
.community-feature-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.community-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}
.community-feature-card:hover .icon-box-square-green {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}
/* 6. Hero Community Layout & Avatar Network */
.hero-community {
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px 0 !important;
}
/* Wavy background overlays matching hero layout image */
.hero-community::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(rgba(16, 185, 129, 0.08) 1.5px, transparent 1.5px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' fill='none'%3E%3Cpath d='M0,96L120,112C240,128,480,160,720,160C960,160,1200,128,1320,112L1440,96L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z' fill='none' stroke='rgba(16, 185, 129, 0.08)' stroke-width='2'/%3E%3Cpath d='M0,192L120,176C240,160,480,128,720,144C960,160,1200,224,1320,256L1440,288' fill='none' stroke='rgba(16, 185, 129, 0.05)' stroke-width='3'/%3E%3C/svg%3E");
  background-size:
    24px 24px,
    cover;
  background-position:
    top left,
    center;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
.hero-network-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.network-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.orbit-inner {
  width: 240px;
  height: 240px;
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.05);
  animation: rotate-orbit-clockwise 50s linear infinite;
}
.orbit-outer {
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(16, 185, 129, 0.18);
  animation: rotate-orbit-counter 80s linear infinite;
}
@keyframes rotate-orbit-clockwise {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate-orbit-counter {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.network-center-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.22) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.network-avatar-node {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  overflow: hidden;
  background-color: var(--dark-green);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.network-avatar-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.network-avatar-node:hover {
  transform: scale(1.2) !important;
  border-color: var(--accent-green) !important;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.8) !important;
}
.network-glow-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  z-index: 2;
}
/* 7. Jobs Page Redesign Custom Styles */
.hero-jobs{
  background-image: url("../assets/imgs/jobs-Bg.png");
}


.jobs-step-card-premium {
  background: linear-gradient(135deg, #053b2c 0%, #032017 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 28px !important;
  color: var(--white) !important;
  padding: 3rem !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
.jobs-step-card-premium:hover {
  transform: translateY(-4px);
}
.jobs-step-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-green);
  opacity: 0.6;
  line-height: 1;
  font-style: italic;
}
/* Visual mocks on the right side of step cards */
.jobs-step-visual-box {
  width: 100%;
  min-height: 180px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Jobs Scroller (Image 3) */
.jobs-scroller-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
}
.jobs-scroller-container::before,
.jobs-scroller-container::after {
  content: "";
  height: 100%;
  width: 120px;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.jobs-scroller-container::before {
  left: 0;
  background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}
.jobs-scroller-container::after {
  right: 0;
  background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}
.jobs-scroller-track {
  display: flex;
  width: max-content;
  animation: jobs-marquee-scroll 35s linear infinite;
  gap: 20px;
}
.jobs-scroller-container:hover .jobs-scroller-track {
  animation-play-state: paused;
}
@keyframes jobs-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.jobs-scroller-card {
  width: 320px;
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.jobs-scroller-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.08);
}
.job-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}
.job-company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* How We Choose Jobs for You (Image 4) */
.choose-jobs-card {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 2.25rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.choose-jobs-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.06);
}
/* Highlighted dark cards like "Experience Level" and "Location" */
.choose-jobs-card-dark {
  background: linear-gradient(135deg, #053b2c 0%, #032017 100%) !important;
  color: var(--white) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
.choose-jobs-card-dark h4,
.choose-jobs-card-dark h5,
.choose-jobs-card-dark p {
  color: var(--white) !important;
}
.choose-jobs-card-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: var(--white) !important;
  border: none !important;
}
.choose-jobs-card-blue h4,
.choose-jobs-card-blue h5,
.choose-jobs-card-blue p {
  color: var(--white) !important;
}
/* What You Get Section (Image 5) */
.get-card-premium {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.get-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}
/* FAQ accordion custom styling */
.faq-accordion-edu .accordion-item {
  border: 1.5px solid var(--border-color) !important;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--white);
}
.faq-accordion-edu .accordion-button {
  background-color: var(--white);
  color: var(--dark-green);
  font-weight: 700;
  padding: 1.25rem 1.5rem;
}
.faq-accordion-edu .accordion-button:not(.collapsed) {
  background-color: var(--light-green);
  color: var(--dark-green);
  box-shadow: none;
}
.faq-accordion-edu .accordion-button::after {
  filter: sepia(100%) hue-rotate(100deg) saturate(300%);
}
/* 8. Earn Page Redesign Custom Styles */
.hero-earn {
  background-image: url("../assets/imgs/Referral.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 120px 0 !important;
  position: relative;
  overflow: hidden;
  background-color: #0a0a23;
}
.hero-earn-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}
.earn-avatar-capsule {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  animation: float-slow 6s ease-in-out infinite alternate;
}
.earn-avatar-capsule img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--primary-green);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  object-fit: cover;
  background-color: var(--white);
  transition: all 0.3s ease;
}
.earn-avatar-capsule:hover img {
  transform: scale(1.1);
  border-color: var(--accent-green);
}
.earn-payout-pill {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--dark-green);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}
@keyframes float-slow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
/* Earn Asymmetric Grid */
.earn-grid-card {
  border-radius: 28px !important;
  padding: 2.5rem !important;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.earn-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.earn-card-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: var(--white) !important;
  border: none !important;
}
.earn-card-blue h3,
.earn-card-blue h4,
.earn-card-blue p {
  color: var(--white) !important;
}
.earn-card-dark {
  background: linear-gradient(135deg, #064e3b 0%, #032017 100%) !important;
  color: var(--white) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
.earn-card-dark h3,
.earn-card-dark h4,
.earn-card-dark p {
  color: var(--white) !important;
}
.earn-card-light {
  background: var(--white) !important;
  border: 1.5px solid var(--border-color) !important;
  color: var(--dark) !important;
}
.earn-card-light-gray {
  background: #f1f5f9 !important;
  border: none !important;
  color: var(--dark) !important;
}
/* Earn Parameters */
.earn-parameter-card {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.earn-parameter-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.05);
}
.earn-parameter-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.earn-banner-callout {
  background: var(--emerald-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  color: var(--white);
}
/* Stacked cards for How It Works */
.earn-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.earn-stack-card {
  position: sticky;
  top: 150px;
  width: 100%;
  border-radius: 28px !important;
  padding: 3rem 2.5rem !important;
  margin-bottom: 50px;
  transform-origin: center top;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04) !important;
  transition: box-shadow 0.3s ease;
}
.earn-stack-card:last-child {
  margin-bottom: 0;
}
.earn-stack-card-1 {
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  color: var(--dark);
  z-index: 1;
}
.earn-stack-card-2 {
  background: #f1f5f9;
  border: 1.5px solid var(--border-color);
  color: var(--dark);
  z-index: 2;
}
.earn-stack-card-3 {
  background: #e2e8f0;
  border: 1.5px solid var(--border-color);
  color: var(--dark);
  z-index: 3;
}
.earn-stack-card-4 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  border: none;
  z-index: 4;
}
.earn-stack-card-5 {
  background: linear-gradient(135deg, #064e3b 0%, #032017 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}
.earn-stack-card-4 h3,
.earn-stack-card-4 p,
.earn-stack-card-5 h3,
.earn-stack-card-5 p {
  color: var(--white) !important;
}
.earn-stack-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  opacity: 0.2;
  line-height: 1;
}
@media (max-width: 768px) {
  .earn-stack-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 20px !important;
    padding: 2rem 1.5rem !important;
  }

  .earn-avatar-capsule {
    transform: scale(0.7) !important;
  }
}
/* 9. Teach Page Redesign Custom Styles */
.hero-teach {
  background: radial-gradient(
    circle at 80% 20%,
    #032d20 0%,
    #01130d 100%
  ) !important;
  padding: 180px 0 120px 0 !important;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.btn-teach-hero {
  background-color: var(--white);
  color: var(--dark-green) !important;
  border: none;
  border-radius: 99px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-teach-hero:hover {
  background-color: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}
.teach-quote-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 28px !important;
  padding: 3rem !important;
  color: var(--white) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  min-height: 380px;
}
.teach-quote-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.35rem;
  line-height: 1.6;
}
.teach-quote-photo-wrapper {
  width: 160px;
  height: 180px;
  position: absolute;
  bottom: 0;
  right: 25px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 3;
}
.teach-quote-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 -5px 12px rgba(0, 0, 0, 0.2));
}
.teach-challenge-card {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.teach-challenge-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}
.teach-challenge-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem auto;
}
.teach-bottom-banner {
  background: var(--emerald-gradient);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15);
}
.btn-banner-cta {
  background-color: var(--white);
  color: var(--dark-green) !important;
  border: none;
  border-radius: 99px;
  padding: 0.75rem 2rem !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-banner-cta:hover {
  background-color: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}
.teach-metric-card {
  background-color: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: border-color 0.3s ease;
}
.teach-metric-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
}
.teach-chart-banner {
  background: linear-gradient(135deg, #092c20 0%, #031c14 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.2);
  min-height: 140px;
  display: flex;
  align-items: center;
}
.teach-chart-graphic-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  opacity: 0.6;
  pointer-events: none;
}
@keyframes pulse {
  0% {
    r: 5px;
    opacity: 1;
  }
  50% {
    r: 9px;
    opacity: 0.6;
  }
  100% {
    r: 13px;
    opacity: 0;
  }
}
.chart-pulse-point {
  animation: pulse 2s infinite ease-out;
}
.teach-brand-card {
  background: linear-gradient(135deg, #064e3b 0%, #032017 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 28px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.teach-brand-card h4,
.teach-brand-card p {
  color: var(--white) !important;
}
.teach-brand-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.teach-brand-img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 -8px 15px rgba(0, 0, 0, 0.25));
}
/* Bento Grid */
.teach-bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.3fr;
  grid-gap: 1.5rem;
  margin-top: 2rem;
}
.teach-bento-card {
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teach-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.teach-bento-card-tall-left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 480px;
}
.teach-bento-card-mid-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-content: center;
}
.teach-bento-card-right-top {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  color: var(--white);
}
.teach-bento-card-mid-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  color: var(--white);
}
.teach-bento-card-right-bottom {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.teach-bento-card-light {
  background-color: #f8fafc;
  border: 1.5px solid var(--border-color);
}
.teach-bento-card-dark {
  background: radial-gradient(
    circle at 10% 10%,
    #032017 0%,
    #01130d 100%
  ) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
.teach-bento-card-primary {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  border: none !important;
}
.teach-bento-card-accent {
  background: linear-gradient(135deg, #064e3b 0%, #04382a 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.1) !important;
}
/* Checkerboard logo grid in Card 1 */
.bento-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.75rem;
  margin-top: 1.5rem;
  opacity: 0.85;
}
.bento-logo-item {
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.bento-logo-item.empty {
  background-color: transparent;
  box-shadow: none;
  border: 1px dashed rgba(0, 0, 0, 0.08);
}
.bento-logo-item:not(.empty):hover {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}
.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.bento-logo-graphy {
  background-color: #1a1a2e;
  color: #fff !important;
}
.bento-logo-instagram {
  background-color: #fccc63;
  color: #e1306c !important;
}
.bento-logo-youtube {
  background-color: #ff0000;
  color: #fff !important;
}
.bento-logo-udemy {
  background-color: #ec5252;
  color: #fff !important;
}
.bento-logo-canva {
  background-color: #00c4cc;
  color: #fff !important;
}
/* Mobile Earnings mockup in Card 3 */
.bento-mobile-mockup-wrapper {
  position: absolute;
  right: -10px;
  bottom: -35px;
  width: 165px;
  transform: rotate(-10deg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.teach-bento-card-primary:hover .bento-mobile-mockup-wrapper {
  transform: rotate(-4deg) translateY(-5px);
}
.bento-mobile-phone {
  background-color: #0d0d0d;
  border: 4px solid #222;
  border-radius: 24px;
  height: 210px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: "Inter", sans-serif;
}
.bento-phone-notch {
  width: 50px;
  height: 8px;
  background-color: #222;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 10;
}
.bento-phone-content {
  padding: 12px 10px;
  font-size: 0.6rem;
}
.phone-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
}
.phone-title {
  font-weight: 700;
  font-size: 0.55rem;
}
.phone-stat-box {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.phone-stat-box .lbl {
  display: block;
  font-size: 0.45rem;
  opacity: 0.6;
}
.phone-stat-box .val {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin: 1px 0;
  color: var(--accent-green);
}
.btn-phone-withdraw {
  display: inline-block;
  background-color: var(--white);
  color: var(--dark-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.45rem;
  font-weight: 700;
  margin-top: 2px;
}
.phone-list-item {
  font-size: 0.5rem;
  opacity: 0.8;
  margin-bottom: 2px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 2px;
}
/* File index tabs in Card 4 */
.bento-file-tabs {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.bento-tab {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.3s ease;
}
.bento-tab-1 {
  margin-left: 0;
  z-index: 1;
  transform: translateY(0);
}
.bento-tab-2 {
  margin-left: 20px;
  z-index: 2;
  transform: translateY(-15px);
  background-color: rgba(255, 255, 255, 0.08);
}
.bento-tab-3 {
  margin-left: 40px;
  z-index: 3;
  transform: translateY(-30px);
  background-color: rgba(255, 255, 255, 0.12);
}
.bento-tab-4 {
  margin-left: 60px;
  z-index: 4;
  transform: translateY(-45px);
  background-color: rgba(255, 255, 255, 0.16);
  color: var(--accent-green);
  border-color: rgba(52, 211, 153, 0.2);
}
.teach-bento-card-accent:hover .bento-tab {
  transform: translateY(var(--hover-y, 0));
}
.teach-bento-card-accent:hover .bento-tab-1 {
  --hover-y: -5px;
}
.teach-bento-card-accent:hover .bento-tab-2 {
  --hover-y: -18px;
}
.teach-bento-card-accent:hover .bento-tab-3 {
  --hover-y: -31px;
}
.teach-bento-card-accent:hover .bento-tab-4 {
  --hover-y: -44px;
  color: var(--accent-green);
}
/* Stacked cards for How It Works */
.teach-stacked-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.teach-stacked-card {
  position: sticky;
  top: 150px;
  width: 100%;
  border-radius: 28px !important;
  padding: 3.5rem 3rem !important;
  margin-bottom: 30px;
  transform-origin: center top;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}
.teach-stacked-card:last-child {
  margin-bottom: 0;
}
.teach-stacked-card-dark {
  background: linear-gradient(135deg, #064e3b 0%, #032017 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
.teach-stacked-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-green);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
/* Step 1 Graphic: Form mockup */
.stacked-graphic-form-wrapper {
  display: inline-block;
  text-align: left;
  width: 280px;
}
.graphic-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
}
.graphic-form-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  position: relative;
}
.graphic-form-item:last-child {
  margin-bottom: 0;
}
.graphic-form-item.active {
  background-color: var(--white);
  color: var(--dark-green);
  border-color: var(--primary-green);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}
.graphic-cursor-badge {
  position: absolute;
  right: -10px;
  bottom: -15px;
  background-color: #fbbf24;
  color: #78350f;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
  transform: rotate(5deg);
}
/* Step 2 Graphic: Shortlist review card */
.stacked-graphic-review-wrapper {
  display: inline-block;
  position: relative;
  width: 200px;
}
.graphic-review-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1rem;
  width: 100%;
  position: relative;
}
.graphic-review-avatar-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background-color: var(--dark-green);
  overflow: hidden;
  position: relative;
}
.graphic-review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-pending {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f59e0b;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.badge-shortlisted {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}
.badge-hash {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #78350f;
  font-size: 0.65rem;
  font-weight: 800;
}
.badge-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
}
/* Step 3 Graphic: Video onboarding call mockup */
.stacked-graphic-connect-wrapper {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 180px;
}
.graphic-connect-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.graphic-video-card {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 130px;
  height: 130px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.graphic-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-connect {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #ef4444;
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.floating-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}
.icon-mail {
  top: 0px;
  right: 100px;
  color: #ea4335;
  font-size: 1.1rem;
}
.icon-meet {
  bottom: 20px;
  left: 140px;
  color: #0f9d58;
  font-size: 1.1rem;
}
.support-chat-bubble {
  position: absolute;
  top: 45px;
  right: 20px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
  max-width: 140px;
  text-align: left;
  line-height: 1.4;
}
/* Responsive adjustments for Teach Redesign */
@media (max-width: 991px) {
  .hero-teach {
    padding: 120px 0 80px 0 !important;
  }
  .teach-quote-card {
    min-height: auto;
    padding: 2rem !important;
  }
  .teach-quote-photo-wrapper {
    position: relative;
    bottom: -20px;
    right: 0;
    margin-top: 1.5rem;
    margin-bottom: -32px;
  }
  .teach-bento-grid {
    grid-template-columns: 1fr;
    grid-gap: 1.25rem;
  }
  .teach-bento-card-tall-left,
  .teach-bento-card-mid-top,
  .teach-bento-card-right-top,
  .teach-bento-card-mid-bottom,
  .teach-bento-card-right-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }
  .bento-mobile-mockup-wrapper {
    position: relative;
    right: 0;
    bottom: 0;
    transform: none;
    margin-top: 1.5rem;
    width: 150px;
    align-self: center;
  }
  .teach-bento-card-primary:hover .bento-mobile-mockup-wrapper {
    transform: none;
  }
  .bento-file-tabs {
    margin-top: 1rem;
  }
  .bento-tab-2 {
    transform: translateY(-5px);
  }
  .bento-tab-3 {
    transform: translateY(-10px);
  }
  .bento-tab-4 {
    transform: translateY(-15px);
  }
  .teach-bento-card-accent:hover .bento-tab {
    transform: translateY(0);
  }
  .teach-bento-card-accent:hover .bento-tab-2 {
    transform: translateY(-5px);
  }
  .teach-bento-card-accent:hover .bento-tab-3 {
    transform: translateY(-10px);
  }
  .teach-bento-card-accent:hover .bento-tab-4 {
    transform: translateY(-15px);
  }

  .teach-stacked-card {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 20px !important;
    padding: 2.5rem 2rem !important;
  }
  .stacked-graphic-connect-wrapper {
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .hero-teach h2 {
    font-size: 2.5rem !important;
  }
  .teach-stacked-card {
    padding: 2rem 1.5rem !important;
  }
  .teach-stacked-number {
    font-size: 2.5rem;
  }
  .stacked-graphic-form-wrapper,
  .stacked-graphic-review-wrapper,
  .stacked-graphic-connect-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stacked-graphic-connect-wrapper {
    height: 180px;
  }
}
/* 10. Workshop Page Redesign Custom Styles */
.workshop-hero {
  background: url('../assets/imgs/homecard2.png');
  padding: 180px 0 120px 0 !important;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-repeat: no-repeat;
    background-size: cover;
}
.workshop-timeline-card {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.workshop-timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}
.timeline-step-badge {
  display: inline-block;
  background-color: var(--light-green);
  color: var(--primary-green);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}
.workshop-feature-panel {
  background: linear-gradient(135deg, #092c20 0%, #031c14 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  border-radius: 28px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.workshop-feature-panel h3,
.workshop-feature-panel p {
  color: var(--white) !important;
}
.workshop-calendar-card {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.workshop-calendar-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.08);
}
.badge-month {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--primary-green);
}
.workshop-reference-card {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.workshop-reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}
.ref-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .workshop-hero {
    padding: 120px 0 80px 0 !important;
  }
  .workshop-feature-panel {
    padding: 2rem !important;
  }
  .workshop-calendar-card,
  .workshop-reference-card {
    padding: 2rem 1.5rem !important;
  }
}

/* 11. Mentors Page Redesign Custom Styles */
.mentors-hero {
  background: linear-gradient(135deg, #064e3b 0%, #03281e 100%);
  padding: 170px 0 100px 0 !important;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.mentors-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--accent-green);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-uppercase: uppercase;
}
.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
}

.mentor-stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mentor-stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.4);
}
.mentor-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.mentor-card-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mentor-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}
.mentor-photo-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.15);
  margin: 0 0 1.25rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}
.mentor-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.mentor-card-item:hover .mentor-photo-wrapper img {
  transform: scale(1.08);
}
.mentor-exp-badge {
  display: inline-block;
  background-color: var(--light-green);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.mentor-spec-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
}

.domain-icon-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
.domain-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-green);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}
.domain-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.domain-icon-card:hover .domain-icon-box {
  background-color: var(--primary-green);
  color: var(--white);
}

.timeline-flow-wrapper {
  position: relative;
}
.timeline-flow-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}
.timeline-flow-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}
.timeline-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-gradient);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 6px 15px rgba(6, 78, 59, 0.2);
}

.mentor-dark-box {
  background: linear-gradient(135deg, #064e3b 0%, #0f291e 100%);
  border-radius: 32px;
  padding: 4rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mentor-dark-box h2, .mentor-dark-box h3 {
  color: var(--white) !important;
}
.benefit-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}
.benefit-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.accordion-mentor .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.accordion-mentor .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
}
.accordion-mentor .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background-color: var(--light-green);
  box-shadow: none;
}
.accordion-mentor .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .mentors-hero {
    padding: 130px 0 70px 0 !important;
  }
  .mentor-dark-box {
    padding: 2.5rem 1.5rem;
  }
}

/* Mentorship Stacked Cards (Horizontal Overlapping Stack) */
.mentorship-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.mentorship-stack-card {
  position: sticky;
  top: 180px;
  width: 100%;
  background: var(--white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 28px !important;
  color: var(--dark) !important;
  padding: 3rem 3.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 45px;
  transform-origin: center top;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mentorship-stack-card:hover {
  border-color: var(--primary-green) !important;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.12) !important;
}
.mentorship-stack-card:last-child {
  margin-bottom: 0;
}
.mentorship-stack-card:nth-child(1) { z-index: 1; }
.mentorship-stack-card:nth-child(2) { z-index: 2; }
.mentorship-stack-card:nth-child(3) { z-index: 3; }
.mentorship-stack-card:nth-child(4) { z-index: 4; }
.mentorship-stack-card:nth-child(5) { z-index: 5; }
.mentorship-stack-card:nth-child(6) { z-index: 6; }

.mentorship-step-num-lg {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--emerald-gradient);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(6, 78, 59, 0.25);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mentorship-stack-card {
    top: 130px;
    padding: 2rem 1.5rem !important;
    margin-bottom: 30px;
  }
  .mentorship-step-num-lg {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    border-radius: 14px;
  }
}

/* 12. Community Impact Page Custom Styles */
.impact-hero {
  background: linear-gradient(135deg, #064e3b 0%, #03281e 100%);
  padding: 170px 0 100px 0 !important;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.impact-hero::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.initiative-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.initiative-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}
.initiative-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.initiative-card:hover .initiative-icon-box {
  background-color: var(--primary-green);
  color: var(--white);
}

.gallery-card-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 260px;
}
.gallery-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 40, 30, 0.95) 0%, rgba(6, 78, 59, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white) !important;
  transition: opacity 0.3s ease;
}
.gallery-overlay h5 {
  color: var(--white) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.event-card-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 18px 35px rgba(16, 185, 129, 0.1);
}
.event-date-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-green);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Recent Activities Stacked Horizontal Cards */
.activity-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.activity-stack-card {
  position: sticky;
  top: 180px;
  width: 100%;
  background: var(--white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 28px !important;
  color: var(--dark) !important;
  padding: 3rem 3.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 45px;
  transform-origin: center top;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.activity-stack-card:hover {
  border-color: var(--primary-green) !important;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.12) !important;
}
.activity-stack-card:last-child {
  margin-bottom: 0;
}
.activity-stack-card:nth-child(1) { z-index: 1; }
.activity-stack-card:nth-child(2) { z-index: 2; }
.activity-stack-card:nth-child(3) { z-index: 3; }
.activity-stack-card:nth-child(4) { z-index: 4; }
.activity-stack-card:nth-child(5) { z-index: 5; }
.activity-stack-card:nth-child(6) { z-index: 6; }

@media (max-width: 768px) {
  .activity-stack-card {
    top: 130px;
    padding: 2rem 1.5rem !important;
    margin-bottom: 30px;
  }
}



