:root {
  /* Simplified Blue Palette */
  --color-primary: #0066ff;
  --color-secondary: #3388ff;
  --color-accent: #1a75ff;
  --color-dark: #000000;

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.5);

  /* Blue Glow Effects */
  --glow-blue: rgba(0, 102, 255, 0.5);
  --glow-blue-soft: rgba(0, 102, 255, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: #00050c;
}

/* ========================================
   DARKVEIL FIXED BACKGROUND
   ======================================== */
#darkveil-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#darkveil-background canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
   TRANSPARENT SECTIONS BASE
   ======================================== */
section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* ========================================
   FLOATING GLASS PILL NAVBAR
   ======================================== */

.pill-navbar {
  position: fixed;
  top: 2rem;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 999;
  transition: all var(--transition-normal);
  width: 100%;
  /* max-width: 2800px; */
  padding: 0 1rem;
}

.pill-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 4px 20px rgba(0, 102, 255, 0.25);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  /* gap: 1.5rem; */
  transition: all var(--transition-normal);
}

.pill-navbar.scrolled .pill-container {
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05),
    0 4px 35px rgba(0, 102, 255, 0.4);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
}

.navbar-logo {
  height: 50px;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px var(--glow-blue));
  transition: var(--transition-normal);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.07);
  filter: drop-shadow(0 0 18px var(--color-primary));
}

/* Navigation Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-normal);
  padding: 0.4rem 0.8rem !important;
  border-radius: 20px;
}

.navbar-nav .nav-link::before {
  display: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary) !important;
  box-shadow: 0 0 8px var(--glow-blue) inset;
}

/* Login Button */
.login-link {
  background: rgba(0, 102, 255, 0.1) !important;
  border: 1px solid rgba(0, 102, 255, 0.3) !important;
  border-radius: 30px;
  padding: 0.65rem 1.6rem !important;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  margin-left: 0.5rem;
}

.login-link:hover {
  background: rgba(0, 102, 255, 0.2) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

/* Get Started Button */
.btn-get-started {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2.2rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-get-started:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
  color: #ffffff;
}

/* Mobile Toggle */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-normal);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 102, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 2rem;
  text-align: center;
}

.split-text {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.split-text:first-child {
  animation-delay: 0.2s;
}

.split-text:last-child {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  min-width: 150px;
}

.stat-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 102, 255, 0.5),
    transparent
  );
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
  padding: 80px 0;
}

.mission-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent);
  border-radius: 50%;
}

.mission-icon {
  width: 100px;
  height: 100px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-secondary);
  margin: 0 auto 2rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 1;
}

.mission-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.mission-text {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-secondary);
  /* font-style: italic; */
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.quote-icon {
  color: rgba(0, 102, 255, 0.4);
  font-size: 1.5rem;
  vertical-align: middle;
}

.quote-icon-end {
  transform: scaleX(-1);
  display: inline-block;
}

.philosophy-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.philosophy-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-secondary);
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  transition: all var(--transition-normal);
}

.philosophy-card:hover .philosophy-icon {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.philosophy-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.philosophy-card-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.philosophy-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-normal);
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.philosophy-card:hover .feature-item {
  color: var(--color-text-primary);
  transform: translateX(5px);
}

/* ========================================
   APPROACH SECTION
   ======================================== */
.approach-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.approach-timeline {
  position: relative;
  padding-left: 0;
}

.approach-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.approach-step:last-child {
  margin-bottom: 0;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid rgba(0, 102, 255, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.approach-step:hover .step-number {
  transform: scale(1.1);
  background: rgba(0, 102, 255, 0.3);
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 102, 255, 0.5),
    rgba(0, 102, 255, 0.1)
  );
  margin-top: 1rem;
  min-height: 60px;
}

.approach-step:last-child .step-line {
  display: none;
}

.step-content-wrapper {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.approach-step:hover .step-content-wrapper {
  border-color: var(--color-primary);
  background: rgba(0, 0, 0, 0.6);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-secondary);
  border: 1px solid rgba(0, 102, 255, 0.3);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.step-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.step-tag {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.approach-step:hover .step-tag {
  background: rgba(0, 102, 255, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ========================================
   ORIGIN SECTION
   ======================================== */
.origin-section {
  /* padding: 10px 0; */
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}
.origin-content {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.origin-timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 3rem;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.2);
  border: 2px solid rgba(0, 102, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.timeline-text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.origin-quote {
  background: rgba(0, 102, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  position: relative;
}

.origin-quote .bi-quote {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: rgba(0, 102, 255, 0.2);
}

.quote-text {
  font-size: 1.2rem;
  /* font-style: italic; */
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.quote-author {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-align: right;
  margin: 0;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
  /* padding: 80px 0; */
  margin-top: 5rem;
}

.value-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-secondary);
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
  transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.35);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.value-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-secondary);
  margin: 0 auto 2rem;
  border: 1px solid rgba(0, 102, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 102, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-secondary);
  border: 2px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand:hover {
  color: var(--color-secondary);
}

.footer-brand i {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(0, 102, 255, 0.3);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 102, 255, 0.3),
    transparent
  );
  margin: 3rem 0;
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
}

.footer-copyright i.bi-heart-fill {
  color: var(--color-primary);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1);
  }
  20%,
  40% {
    transform: scale(1);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  opacity: 1;
}

.animate-on-scroll.fade-up {
  animation: fadeUpAnimation 0.8s ease-out forwards;
}

.animate-on-scroll.slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes fadeUpAnimation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
  .pill-navbar {
    top: 1rem;
  }

  .pill-container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.7rem 1.2rem;
  }

  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse {
    width: 100%;
  }

  .navbar-nav {
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    gap: 0;
  }

  .navbar-collapse.show .navbar-nav {
    max-height: 400px;
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 1rem !important;
  }

  .hero-section {
    min-height: 70vh;
    padding-top: 120px;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .mission-card,
  .philosophy-card,
  .origin-content {
    padding: 2.5rem 2rem;
  }

  .approach-step {
    flex-direction: column;
    gap: 1.5rem;
  }

  .step-indicator {
    flex-direction: row;
    gap: 1rem;
  }

  .step-line {
    width: 100%;
    height: 2px;
    min-height: auto;
    margin-top: 0;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-item {
    width: 100%;
  }

  .mission-icon,
  .cta-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .philosophy-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step-content-wrapper {
    flex-direction: column;
    padding: 1.5rem;
  }

  .step-tags {
    gap: 0.5rem;
  }

  .step-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .origin-quote {
    padding: 1.5rem;
  }

  .quote-text {
    font-size: 1.1rem;
    padding-left: 1rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Selection color */
::selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

::-moz-selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-accent)
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--color-secondary),
    var(--color-primary)
  );
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

#darkveil-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#darkveil-background canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #00050c;
  color: #fff;
  overflow-x: hidden;
  padding: 0px 0;
}

/* Section Wrapper with Curved Background */
.section-wrapper {
  position: relative;
  margin: 60px 0;
}

/* Curved Background Container */
.curved-bg {
  background: #000;
  border-radius: 80px;
  padding: 100px 0px;
  margin: 0 0px;
  position: relative;
  overflow: hidden;
}

.curved-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Origin Section Background */
.origin-bg {
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
}

/* Values Section Background */
.values-bg {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

/* Section Titles */
.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Origin Timeline */
.origin-timeline {
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px;
}

.origin-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -50px;
  top: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.timeline-marker i {
  font-size: 18px;
  color: #fff;
}

.timeline-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.timeline-text {
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.8;
}

/* Origin Quote */
.origin-quote {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  margin-top: 60px;
}

.origin-quote i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 30px;
  left: 30px;
}

.quote-text {
  font-size: 1.4rem;
  /* font-style: italic; */
  color: #fff;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 60px;
}

.quote-author {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 600;
  padding-left: 60px;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 18px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.value-icon i {
  font-size: 32px;
  color: #fff;
}

.value-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.value-text {
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.row > div:nth-child(1) .value-card {
  animation-delay: 0.1s;
}
.row > div:nth-child(2) .value-card {
  animation-delay: 0.2s;
}
.row > div:nth-child(3) .value-card {
  animation-delay: 0.3s;
}
.row > div:nth-child(4) .value-card {
  animation-delay: 0.4s;
}
.row > div:nth-child(5) .value-card {
  animation-delay: 0.5s;
}
.row > div:nth-child(6) .value-card {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1200px) {
  .curved-bg {
    border-radius: 60px;
    margin: 0 0px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }

  .curved-bg {
    border-radius: 50px;
    padding: 80px 30px;
  }

  .origin-timeline {
    padding-left: 50px;
  }
}

@media (max-width: 768px) {
  .curved-bg {
    border-radius: 40px;
    margin: 0 0px;
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .origin-timeline {
    padding-left: 40px;
  }

  .timeline-marker {
    left: -40px;
    width: 35px;
    height: 35px;
  }

  .quote-text {
    font-size: 1.2rem;
    padding-left: 50px;
  }

  .quote-author {
    padding-left: 50px;
  }
}

@media (max-width: 576px) {
  .curved-bg {
    border-radius: 30px;
    margin: 0 0px;
  }

  .origin-quote {
    padding: 30px 20px;
  }

  .origin-quote i {
    font-size: 2rem;
    left: 20px;
  }

  .quote-text {
    font-size: 1.1rem;
    padding-left: 40px;
  }

  .quote-author {
    padding-left: 40px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  /* background: linear-gradient(135deg, #0066ff 0%, #000000 100%); */
  /* background: linear-gradient(135deg, #3388ff 0%, #0066ff 100%); */
  /* background: linear-gradient(180deg, #0066ff 0%, #001a4d 100%); */
  background: linear-gradient(135deg, #1a75ff 0%, #0033cc 50%, #000000 100%);
  /* background: linear-gradient(135deg, #3399ff 0%, #0052cc 100%); */
  overflow: hidden;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-section .glow-effect {
  position: absolute;
  z-index: 1;
}
/* Gradient Background for Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.15) 25%,
    rgba(236, 72, 153, 0.15) 50%,
    rgba(59, 130, 246, 0.15) 75%,
    rgba(99, 102, 241, 0.15) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Enhance with additional glow layers */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, 
    rgba(37, 65, 177, 0.576) 0%,
    transparent 70%);
  pointer-events: none;
}






.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
}


.origin-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 40px;
  bottom: 0px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
.time1::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 40px;
  bottom: 0px;
  width: 0px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

@media (max-width: 768px) {
  .curved-bg {
    border-radius: 40px;
    margin: 0 0px;
    padding: 60px 50px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .origin-timeline {
    padding-left: 40px;
  }

  .timeline-marker {
    left: -40px;
    width: 35px;
    height: 35px;
  }

  .quote-text {
    font-size: 1.2rem;
    padding-left: 50px;
  }

  .quote-author {
    padding-left: 50px;
  }
  .origin-timeline::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: 0px;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
  }
}
@media (max-width: 576px) {
  .curved-bg {
    border-radius: 30px;
    margin: 0 0px;
    padding: 40px 5px;
  }

  .origin-quote {
    padding: 30px 20px;
  }

  .origin-quote i {
    font-size: 2rem;
    left: 20px;
  }

  .quote-text {
    font-size: 1.1rem;
    padding-left: 40px;
  }

  .quote-author {
    padding-left: 40px;
  }
}



/* Gradient Background for Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.15) 25%,
    rgba(236, 72, 153, 0.15) 50%,
    rgba(59, 130, 246, 0.15) 75%,
    rgba(99, 102, 241, 0.15) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Enhance with additional glow layers */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(37, 65, 177, 0.576) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Origin Timeline */
.origin-timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 60px;
}







