 *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }
 
 html {
  scroll-behavior: smooth;
}
 body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }
  
  /* PREMIUM TEXT GLOW */
.hero-animate span {
  text-shadow: 0 10px 40px rgba(206,255,0,0.15);
}
#main-header {
  min-height: 72px;
}
#main-header button, nav button,
#main-header [type="button"],
#main-header [type="submit"] {
  color: inherit !important;
  border: none !important;
  background: transparent !important;
}
#backToTop{
  border: 0 !important;
}
.elementor-post__card{
  padding: 16px;
}
.elementor-2412 .elementor-element.elementor-element-7749b54 {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),   
        0 0 0 1px rgba(255, 255, 255, 0.05) !important; 
    overflow: visible;
}
nav a, nav button{
  font-size: 20px;
}

@media (min-width: 768px) {
  #main-header {
    min-height: 88px;
  }
}
.main-logo {
    width: 80px;
    height: auto;
}
button, a {
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* PREMIUM HOVER */
button:hover {
  transform: translateY(-2px);
}
/* Hero Smooth Entrance */
.hero-animate {
  transition: all 1s ease;
}

/* Parallax Background Smoothness */
.hero-bg {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* Improve Button Interaction Depth */
button {
  will-change: transform;
}
/* ===== Section Label with Bottom Border ===== */
.section-label {
  display: inline-block;          /* shrink to content width */
  position: relative;             
  padding-bottom: 4px;            /* space for the border */
  font-weight: 500;               
  text-transform: uppercase;
  letter-spacing: 0.15em;         
  color: inherit;                 
}

.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #FCA55E; /* Light accent */
  transform-origin: left;
  transition: transform 0.5s ease;
}
.dark .section-label::after {
  background: #FCFCFB;
}

/* Animate the border in */
.section-label.show-border::after {
  transform: scaleX(1);
}
/* Optional: Slight cinematic glow */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(198,168,92,0.08), transparent 70%);
  pointer-events: none;
}
 .hide-scrollbar::-webkit-scrollbar { display: none; }
    .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    /* ===== HEADER SCROLL STATE ===== */
.header-scrolled {
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
/* ===== HERO SLIDER ===== */

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Buttons */
.slider-btn {
  width: 0;
  height: 0;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #CEFF00;
  color: black;
  transform: scale(1.1);
}

/* Dark mode refinement */
.dark .slider-btn {
  background: rgba(255,255,255,0.08);
}

/* Light mode refinement */
body:not(.dark) .slider-btn {
  background: rgba(0,0,0,0.2);
  color: white;
}
.identity-glow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* Smooth underline hover */
nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: rgb(252 165 94 / var(--tw-text-opacity, 1));
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}

nav a:hover::after {
  width: 100%;
}
/* ===== PREMIUM LINE REVEAL ===== */
.about-animated {
  overflow: hidden;
}

.about-animated .line {
    overflow: hidden;
    line-height: 46px;
}


.about-animated .line span {
  display: block;
}

.about-animated .line {
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1),
              opacity 0.8s ease;
}

.about-animated.show .line {
  transform: translateY(0%);
  opacity: 1;
}
/* ===== ORIGIN STORY (FULLY FIXED: LIGHT + DARK) ===== */
#origin-story {
  position: relative;
}
/* ===== ORIGIN STORY HERO TITLE ANIMATION ===== */

.origin-title {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.16,1,0.3,1);
}

.origin-hero-title.show .origin-title {
  opacity: 1;
  transform: translateY(0);
}

/* Emphasis line (I Built It) */
.origin-emphasis {
  display: inline-block;
  position: relative;
  animation: subtleWave 3s ease-in-out infinite;
  text-shadow: 0 10px 40px rgba(252,165,94,0.15);
}

/* wave motion */
@keyframes subtleWave {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-0.5deg);
  }
}

/* optional glow pulse */
.origin-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #FCA55E;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1.4s ease forwards;
  animation-delay: 0.6s;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

/* ===== TIMELINE LINE ===== */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);

  /* LIGHT MODE */
  background: rgba(0,0,0,0.1);
}

/* DARK MODE */
.dark .timeline::before {
  background: rgba(255,255,255,0.1);
}

/* ===== TIMELINE ITEM ===== */
.timeline-item {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ===== CARD ===== */
.timeline-card {
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 20px;
  /* LIGHT MODE (FIXED) */
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  color: #111;
  backdrop-filter: blur(12px);
  /* PREMIUM DEPTH */
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  opacity: 0;
  transition: all 1s cubic-bezier(0.16,1,0.3,1);
}

/* DARK MODE CARD */
.dark .timeline-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;

  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.timeline-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.02);
}
.dark .timeline-card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(206,255,0,0.18);
}

/* TEXT */
.timeline-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: inherit;
}

.timeline-card p {
  color: rgba(0,0,0,0.7);
}

.dark .timeline-card p {
  color: rgba(255,255,255,0.7);
}


/* ===== ACTIVE STATE ===== */
.timeline-card.show {
  opacity: 1;
}

/* ===== OXYGEN OBJECT ===== */

.oxygen-object {
  width: 220px;
  height: 220px;
  border-radius: 50%;

  /* LIGHT MODE (FIXED VISIBILITY) */
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%);

  filter: blur(40px);
  animation: floatRotate 12s linear infinite;
  opacity: 0.5;
}

/* DARK MODE GLOW */
.dark .oxygen-object {
  background: radial-gradient(circle, rgba(206,255,0,0.15), transparent 70%);
}

/* FLOAT ANIMATION */
@keyframes floatRotate {
  0% { transform: rotate(0deg) translateY(0px); }
  50% { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0px); }
}

/* ===== MORPH INTO MARKET (CANDLESTICKS) ===== */
.oxygen-object.morph {
  border-radius: 6px;
  width: 40px;
  height: 160px;

  background: #CEFF00;
  filter: blur(0px);
  animation: none;

  /* Candlestick bars */
  box-shadow:
    60px -40px 0 #CEFF00,
    120px 20px 0 #CEFF00,
    180px -60px 0 #CEFF00;
}
.timeline-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);

  transition: all 0.4s ease;
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
}

/* DARK MODE */
.dark .timeline-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT */
.timeline-card:hover .timeline-icon {
  transform: scale(1.1);
  background: #FCA55E;
  color: #111;
}

/* ===== EXPANDABLE CONTENT ===== */
.timeline-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.timeline-card.active .timeline-more {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* ===== BUTTON ===== */
.timeline-toggle {
  margin-top: 12px;
  font-size: 14px;
  color: #FCA55E;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.timeline-toggle:hover {
  text-decoration: underline;
}
.wallstreet-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* VIDEO WRAPPER */
.wallstreet-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wallstreet-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.75);
}

/* DARK OVERLAY (VERY IMPORTANT FOR TEXT READABILITY) */
.wallstreet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
}

/* CONTENT LAYER */
.wallstreet-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}

/* ICON OVER VIDEO */
.wallstreet-video-card .timeline-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

/* TEXT TWEAKS */
.wallstreet-video-card h3,
.wallstreet-video-card p {
  color: white;
}

/* BUTTON OVER VIDEO */
.wallstreet-video-card .timeline-toggle {
  margin-top: 15px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

/* HOVER DEPTH */
.wallstreet-video-card:hover {
  transform: translateY(-6px) scale(1.01);
  transition: all 0.4s ease;
}
/* ===== HEADING WORD REVEAL ===== */
.heading-line {
    overflow: hidden;
    line-height: 40px;
}

.heading-line .word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1),
              opacity 0.8s ease;
}

.heading-line .word.show {
  transform: translateY(0%);
  opacity: 1;
}
/* ===== FEATURED TYPEWRITER ===== */

#featured-typewriter::after {
    content: "|";
    margin-left: 6px;
    animation: blink 1s infinite;
    color: #FCA55E;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
/* ===== WHAT WE OFFER ATMOSPHERE ===== */
#what-we-offer {
  position: relative;
}

#what-we-offer::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(206,255,0,0.07), transparent 70%);
  filter: blur(120px);
  z-index: -1;
}
.offer-label {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.16,1,0.3,1);
}

.offer-label.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== OFFER WORD ANIMATION ===== */
.offer-word-wrapper {
  display: inline-block;
  overflow: hidden;
}

.offer-word {
  display: inline-block;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1),
              opacity 0.6s ease;
}

.offer-word.show {
  transform: translateY(0%);
  opacity: 1;
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@media (min-width: 768px) {

  .services-wrapper {
    display: flex;
    gap: 24px;
  }

  .service-card {
    flex: 1;
    transition: flex 0.5s cubic-bezier(.4,0,.2,1);
  }

  .service-card.active {
    flex: 3;
  }

  .services-wrapper.has-active .service-card:not(.active) {
    flex: 0.8;
  }
}

/* Hide h4 + p by default */
.service-card .details {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Reveal when active */
.service-card.active .details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* CTA BUTTON */
.toggle-btn {
  color: #FCA55E;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  opacity: 0.7;
}

/* Rotate arrow when active */
.service-card.active .toggle-icon {
  transform: rotate(180deg);
}

/* Optional underline on hover */
.toggle-text {
  position: relative;
}

.toggle-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #FCA55E;
  transition: width 0.3s ease;
}

.toggle-btn:hover .toggle-text::after {
  width: 100%;
}
.myborder{
  border-color: #afafb6;
}
.help{
  font-size: 20px;
}
/* ===== LOGO SLIDER ===== */

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Gradient fade edges (premium touch) */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Dark mode fades */
.dark .logo-slider::before {
  background: linear-gradient(to right, #000, transparent);
}

.dark .logo-slider::after {
  background: linear-gradient(to left, #000, transparent);
}

/* Track */
.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Logo items */
.logo-item {
  height: 60px;
  margin: 0 50px;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Hover effect */
.logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===== 3D DISCIPLINE GRID ===== */
.perspective-3d {
  perspective: 1500px;
}

/* Container grid */
.bullet-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  transform-style: preserve-3d;
}

/* Each bullet */
.bullet-item-grid {
  font-size: 2xl;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  dark:bg-white/10;
  border-radius: 0.75rem;
  padding: 1.2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: rotateX(45deg) translateZ(-80px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Active state when snapping */
.bullet-item-grid.active {
  opacity: 1;
  transform: rotateX(0deg) translateZ(0px);
}

/* Light/Dark colors */
.bullet-item-grid {
  color: #111;
  background-color: rgba(255,255,255,0.05);
}
.dark .bullet-item-grid {
  color: #fff;
  background-color: rgba(255,255,255,0.1);
}

/* Visual animation bob */
.discipline-visual img {
  max-height: 450px;
  object-fit: cover;
  border-radius: 1rem;
  animation: bob 4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Optional hover scale for bullets */
.bullet-item-grid:hover {
  transform: scale(1.05) rotateX(0deg) translateZ(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
/* ===== Join the Program Button ===== */
.join-btn {
  background: linear-gradient(135deg, #CEFF00, #00FFA3);
  color: #111;
  border: none;
  text-align: center;
  transform: translateZ(0);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.dark .join-btn {
  background: linear-gradient(135deg, #00FFA3, #CEFF00);
  color: #111;
}

.join-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.join-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
/* ===== CTA Button Light/Dark ===== */
#program-cta .inline-flex {
  transform: translateZ(0);
}

#program-cta .inline-flex:hover {
  transform: translateY(-3px) scale(1.05);
}

#program-cta .inline-flex:active {
  transform: translateY(0) scale(0.98);
}

/* SVG Fill/Stroke Adaptation */
#program-cta svg rect.fill-black {
  fill: black;
}
#program-cta svg path.stroke-white {
  stroke: white;
}

.dark #program-cta svg rect.fill-black {
  fill: white;
}
.dark #program-cta svg path.stroke-white {
  stroke: black;
}

/* Pulse Bar Animation */
@keyframes pulseBar {
  0% { opacity: 0.3; transform: scaleX(0.95); }
  50% { opacity: 1; transform: scaleX(1.05); }
  100% { opacity: 0.3; transform: scaleX(0.95); }
}

#program-cta .animate-pulse {
  animation: pulseBar 2s ease-in-out infinite;
}
/* SOCIAL ICON STYLE */
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hover */
.social-icon:hover {
  background: #FCA55E;
  color: black;
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
}

/* Dark Mode */
.dark .social-icon {
  border-color: rgba(255,255,255,0.2);
}
#backToTop {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#backToTop:hover {
  box-shadow: 0 15px 40px rgba(206,255,0,0.4);
}