 /* ================= SMOOTH SCROLL CSS (LENIS) ================= */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ================= ISOLATED NAVBAR STYLES (rmn-) ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Navbar Reset */
.rmn-navbar, .rmn-mega-menu, .rmn-mobile-drawer, .rmn-overlay {
  font-family: 'Inter', system-ui, sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.rmn-navbar *, .rmn-mega-menu *, .rmn-mobile-drawer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* NAVBAR - FIXED POSITIONING */
.rmn-navbar {
  position: fixed; /* FIXED ON ALL SCREENS */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0 40px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* LEFT */
.rmn-nav-left { display: flex; align-items: center; gap: 32px; }
.rmn-logo { display: flex; align-items: center; text-decoration: none; }
.rmn-logo:hover { opacity: 0.9; }
.rmn-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.rmn-nav-link { text-decoration: none; color: #64748b; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.rmn-nav-link:hover { color: #7c3aed; }

/* LEARN BUTTON */
.rmn-learn-btn {
  padding: 10px 20px;
  border-radius: 100px; 
  border: 1px solid #e2e8f0;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 14px;
  transition: all 0.2s ease;
}
.rmn-learn-btn:hover, .rmn-learn-btn.rmn-active {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}
.rmn-learn-btn svg { transition: transform 0.2s; }
.rmn-learn-btn.rmn-active svg { transform: rotate(180deg); }

/* RIGHT */
.rmn-nav-right { display: flex; align-items: center; }
.rmn-btn-outline {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  color: #0f172a;
}
.rmn-btn-outline:hover {
  border-color: #7c3aed;
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* HAMBURGER */
.rmn-hamburger { display: none; font-size: 24px; cursor: pointer; user-select: none; color: #0f172a; }
.rmn-close-btn {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  background: #f1f5f9; border-radius: 50%; border: none; font-size: 24px;
  display: none; align-items: center; justify-content: center; cursor: pointer;
  z-index: 10002; color: #64748b; transition: all 0.2s;
}
.rmn-close-btn:hover { background: #e2e8f0; color: #0f172a; }

/* MEGA MENU */
.rmn-mega-menu {
  position: fixed; top: 80px; left: 0; width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0; padding: 48px 40px 64px;
  display: none; grid-template-columns: repeat(4, 1fr); gap: 40px;
  z-index: 9998; animation: rmnSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}
@keyframes rmnSlideDown { from { opacity: 0; transform: translateY(-12px) scaleY(0.98); } to { opacity: 1; transform: translateY(0) scaleY(1); } }
.rmn-mega-menu.rmn-active { display: grid; }
.rmn-mega-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; color: #64748b; font-weight: 700; }
.rmn-menu-item {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 16px;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none; color: inherit;
  background: transparent; margin-bottom: 8px; border: 1px solid transparent;
}
.rmn-menu-item:hover { background: #f8fafc; border-color: #f1f5f9; transform: translateY(-2px); }
.rmn-menu-item img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); display: block; }
.rmn-menu-item div { flex: 1; }
.rmn-menu-item strong { display: block; font-size: 16px; color: #0f172a; margin-bottom: 4px; font-weight: 600; }
.rmn-menu-item small { display: block; font-size: 14px; color: #64748b; font-weight: 500; }

/* OVERLAY */
.rmn-overlay {
  position: fixed; inset: 0; top: 80px; background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(8px); z-index: 9997; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.rmn-overlay.rmn-active { opacity: 1; pointer-events: all; }

/* MOBILE DRAWER */
.rmn-mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100%;
  background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.1); padding: 100px 30px 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10001; display: flex; flex-direction: column;
}
.rmn-mobile-drawer.rmn-active { right: 0; }
.rmn-mobile-drawer a, .rmn-mobile-drawer button {
  display: block; width: 100%; text-align: left; margin-bottom: 12px; font-size: 18px;
  font-weight: 600; border: none; background: none; cursor: pointer; text-decoration: none;
  color: #0f172a; padding: 12px; border-radius: 12px; transition: background 0.2s;
}
.rmn-mobile-drawer a:hover, .rmn-mobile-drawer button:not(.rmn-btn-outline):hover { background: #f1f5f9; }
.rmn-mobile-drawer .rmn-btn-outline { border: 1px solid #e2e8f0; text-align: center; margin-top: 20px; font-size: 16px; }

/* NAVBAR RESPONSIVE */
@media (max-width: 900px) {
  .rmn-navbar { padding: 0 20px; height: 60px; }
  .rmn-logo-img { height: 22px; }
  .rmn-nav-right, .rmn-nav-link { display: none; }
  .rmn-hamburger { display: block; }
  .rmn-close-btn { display: flex; }
  .rmn-mega-menu { position: fixed; top: 60px; left: 0; width: 100%; height: calc(100vh - 60px); padding: 30px 24px 80px; display: flex; flex-direction: column; overflow-y: auto; z-index: 9998; transform: translateX(100%); transition: transform 0.3s ease; animation: none; opacity: 1; background: #fff; }
  .rmn-mega-menu.rmn-active { display: flex; transform: translateX(0); }
  .rmn-overlay { top: 60px; }
}

/* ================= ISOLATED HERO STYLES (ed-) ================= */
.ed-section { 
  font-family: 'Inter', system-ui, sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.ed-section * { box-sizing: border-box; margin: 0; padding: 0; }

body { background: #f8fafc; margin: 0; color: #0f172a; }

/* MAIN HERO SECTION CONTAINER */
.ed-section {
  /* PADDING-TOP INCREASED for Fixed Navbar (80px + 40px spacing) */
  padding: 12px 20px 40px 20px;
  
  min-height: 85vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f8fafc; 
  margin-top: 0;
}

@media(max-width: 900px) {
  /* Mobile padding adjustment (60px header + 30px spacing) */
  .ed-section { padding-top: 0px; } 
}

/* ================= HERO INNER CARD ================= */
.ed-hero-inner {
  width: 100%;
  /* max-width: 1280px; */
  position: relative;
  
  /* BACKGROUND IMAGE WITH PARALLAX (Fixed Attachment) */
  background-color: #ffffff;
  background-image: 
    /* Gradient overlay */
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%),
    /* Professional Tech/Workspace Image */
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000');
    
  background-size: cover;
  background-position: center;
  
  /* PARALLAX EFFECT: Keeps image still while content scrolls */
  background-attachment: fixed;
  /* ---------------------------------------------------- */

  border-radius: 4px;
  padding: 40px 40px 0 40px; 
  
  display: flex;
  flex-direction: column; 
  gap: 30px;
  
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden; 
}

/* Mesh Gradient Animation */
.ed-hero-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.05), transparent 60%);
  animation: edRotate 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes edRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================= TOP CONTENT GRID ================= */
.ed-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr; 
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

/* ================= LEFT SIDE ================= */
.ed-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* FLOATING ICONS */
.ed-float-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 8px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: grid;
  place-items: center;
  font-size: 22px;
  animation: edFloat 4s ease-in-out infinite;
  z-index: -1; 
  border: 1px solid #e2e8f0;
}
.ed-float-icon.python { top: -20px; right: 20%; animation-delay: 0s; color: #306998; }
.ed-float-icon.brain { bottom: 20%; right: -20px; animation-delay: 2s; font-size: 24px; }

@keyframes edFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* LOGO ROW */
.ed-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ed-brand-logo { width: 49px; height: 42px; border-radius: 6px; background: linear-gradient(135deg, #5b2dd8 0%, #db2777 100%); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.ed-brand-name { font-weight: 700; font-size: 16px; color: #334155; }
.ed-main-brand-logo { height: 100px; width: auto; object-fit: contain; }

/* BADGES */
.ed-badges { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.ed-badge { padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; border: 1px solid transparent; }
.ed-badge.primary { background: #f3e8ff; color: #7c3aed; border-color: rgba(124, 58, 237, 0.15); }
.ed-badge.gold { background: #fff7ed; color: #d97706; border-color: rgba(217, 119, 6, 0.15); }

/* HEADLINE */
.ed-hero-left h1 {
  font-size: clamp(32px, 4vw, 48px); 
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #0f172a;
  letter-spacing: -1px;
}
/* .ed-hero-left h1 strong {
  background: linear-gradient(135deg, #28bece 0%, #150a8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.grcp-color {
  background: linear-gradient(135deg, #00d0e6 0%, #011fde 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cfi-color {
  background: linear-gradient(135deg, #c10000 0%, #0019ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cdpo-color {
  background: linear-gradient(135deg, #a300d6 0%, #0d00a1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ccmp-color {
  background: linear-gradient(135deg, #ff0000 0%, #110089 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cclp-color {
  background: linear-gradient(135deg, #7d7d7d 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* FEATURES LIST */
.ed-points { list-style: none; margin-bottom: 24px; }
.ed-points li { position: relative; padding-left: 28px; margin-bottom: 12px; line-height: 1.4; color: #475569; font-weight: 500; font-size: 15px; }
.ed-points li::before { content: "✓"; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; background: #000dff; color: white; border-radius: 4px; display: grid; place-items: center; font-size: 10px; font-weight: 800; }

/* SOCIAL PROOF */
.ed-rating { display: flex; align-items: center; gap: 16px; padding: 12px; background: rgba(248, 250, 252, 0.8); border-radius: 6px; width: fit-content; border: 1px solid #e2e8f0; }
.ed-avatars { display: flex; }
.ed-avatars div { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background-color: #cbd5e1; background-size: cover; }
.ed-avatars div:first-child { margin-left: 0; background-image: url('https://i.pravatar.cc/100?img=33'); }
.ed-avatars div:nth-child(2) { background-image: url('https://i.pravatar.cc/100?img=47'); }
.ed-avatars div:nth-child(3) { background-image: url('https://i.pravatar.cc/100?img=12'); }
.ed-rating-text { display: flex; flex-direction: column; }
.ed-rating-text strong { font-size: 13px; color: #0f172a; }
.ed-rating-text span { font-size: 11px; color: #64748b; }

/* ================= RIGHT SIDE (TICKET CARD) ================= */
.ed-hero-right {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  height: fit-content;
  align-self: center;
}
.ed-hero-right::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #5b2dd8, #db2777); }
.ed-card-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #0f172a; display: flex; align-items: center; justify-content: space-between; }
.ed-blink { display: inline-block; width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: edPulse 1.5s infinite; }
@keyframes edPulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

/* INFO GRID */
.ed-info-grid { display: grid; gap: 16px; margin-bottom: 24px; }
.ed-info-item { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px dashed #e2e8f0; }
.ed-info-icon { font-size: 18px; width: 36px; height: 36px; background: #f1f5f9; border-radius: 6px; display: grid; place-items: center; }
.ed-info-detail span { font-size: 12px; color: #64748b; display: block; }
.ed-info-detail strong { font-size: 14px; color: #0f172a; }

/* CTAS */
.ed-ctas { display: flex; flex-direction: column; gap: 10px; }
.ed-btn { width: 100%; padding: 14px; border-radius: 6px; font-weight: 600; font-size: 15px; cursor: pointer; border: none; display: flex; justify-content: center; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; }
.ed-btn:active { transform: scale(0.98); }
.ed-btn-primary { background: linear-gradient(135deg, #5b2dd8 0%, #db2777 100%); color: #fff; box-shadow: 0 4px 12px rgba(91, 45, 216, 0.3); }
.ed-btn-primary:hover { box-shadow: 0 8px 20px rgba(91, 45, 216, 0.4); }
.ed-btn-secondary { background: #fff; border: 1px solid #cbd5e1; color: #334155; }
.ed-btn-secondary:hover { background: #f8fafc; border-color: #94a3b8; }

/* ================= SCROLLING MARQUEE ================= */
.ed-marquee-section {
  width: 100%; padding: 32px 0; /* INCREASED PADDING */
  background: linear-gradient(90deg, rgba(248,250,252,0.8) 0%, rgba(255,255,255,0.8) 50%, rgba(248,250,252,0.8) 100%);
  border-top: 1px solid #e2e8f0;
  margin: 0 -40px; width: calc(100% + 80px); position: relative;
}
.ed-marquee-title { text-align: center; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: #64748b; font-weight: 700; margin-bottom: 24px; }
.ed-marquee-track { 
  display: flex; 
  gap: 60px; /* INCREASED GAP */
  width: max-content; 
  /* 40s duration for smoother, slower loop with larger items */
  animation: edScroll 40s linear infinite; 
  align-items: center; 
}
/* INCREASED SIZE OF LOGOS */
.ed-logo-item { height: 60px; opacity: 0.9; filter: none; transition: transform 0.3s, opacity 0.3s; object-fit: contain; }
.ed-logo-item:hover { transform: scale(1.1); opacity: 1; }

/* Infinite Scroll Keyframes: 
   We have two sets of items. We translate -50% to move exactly one set's width,
   then it snaps back to 0 instantly, creating the loop. */
@keyframes edScroll { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .ed-content-grid { grid-template-columns: 1fr; gap: 30px; }
  .ed-hero-left h1 { font-size: 36px; }
  .ed-float-icon { display: none; }
  .ed-hero-right { width: 100%; max-width: 500px; }
}
@media (max-width: 600px) {
  .ed-section { padding: 20px 10px; padding-top: 0.2px; } /* Corrected mobile padding */
  .ed-hero-inner { padding: 30px 20px 0 20px; border-radius: 4px; }
  .ed-marquee-section { margin: 0 -20px; width: calc(100% + 40px); }
  .ed-hero-left h1 { font-size: 28px; }
  .ed-badges { display: none; }
  .ed-rating { width: 100%; justify-content: center; }
  .ed-logo-item { height: 40px; } /* Slightly smaller on mobile but still bigger than before */
}