
:root {
  --neon-blue: #00f7ff;
  --deep-blue: #2196f3;
  --dark-bg: #0a0a12;
  --card-bg: rgba(16, 18, 27, 0.95);
}

body {
  background: var(--dark-bg);
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}
/* Particles.js Background */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #0a0a0a; */
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, #00bcd4 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, #2196f3 0%, transparent 35%);
  opacity: 0.15;
  animation: glowPulse 8s infinite alternate;
  z-index: 1;
}
@keyframes glowPulse {
  0% {
    opacity: 0.1;
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}
.hero-content {
  max-width: 1200px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  animation: contentFade 1.2s ease-out;
}
@keyframes contentFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-size: 4.5rem; /* Reduced size */
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(45deg, #ffffff 20%, #00bcd4 50%, #2196f3 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  letter-spacing: -3px;
  animation: gradientFlow 8s linear infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-subtitle {
  font-size: 1.2rem; /* Reduced size */
  font-weight: 500;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  position: relative;
  padding-left: 2.5rem;
  border-left: 4px solid #00bcd4;
  animation: subtitleSlide 1s ease-out 0.5s backwards;
  text-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}
@keyframes subtitleSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.highlight {
  color: #2000d4;
  position: relative;
  display: inline-block;
  animation: highlightFade 1.5s ease-out 1s backwards;
}
@keyframes highlightFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3100d4, #2f21f3);
  transform: scaleX(0);
  transform-origin: right;
  animation: highlightAnim 1s ease-out 1.5s forwards;
}
@keyframes highlightAnim {
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* Added text selection styling */
::selection {
  background: #00bcd4;
  color: #fff;
}
/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 1.4rem;
    padding-left: 1.5rem;
    margin-top: 2rem;
  }
  .hero-content {
    padding: 0 20px;
  }
}
/* .hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
} */

/* Your existing CSS here */

/* Enhanced Futuristic Arrow */
.cyber-arrow-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 80px;
  cursor: pointer;
  z-index: 10;
}

.cyber-arrow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main Arrow Structure */
.arrow-body {
  position: absolute;
  width: 3px;
  height: 50px;
  background: #00bcd4;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px #00bcd4;
}

.arrow-head {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}

.arrow-head::before,
.arrow-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: #00bcd4;
  box-shadow: 0 0 20px #00bcd4;
}

.arrow-head::before {
  left: 50%;
  transform: rotate(45deg);
  transform-origin: left bottom;
}

.arrow-head::after {
  right: 50%;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}

/* Glowing Effects */
.glow-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: #00bcd4;
  opacity: 0;
  filter: blur(1px);
  animation: glowMove 2s infinite;
}

.cyber-circles {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.circle {
  position: absolute;
  border: 1px solid #00bcd4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.circle:nth-child(1) {
  width: 20px;
  height: 20px;
  animation: circleExpand 2s infinite;
}

.circle:nth-child(2) {
  width: 20px;
  height: 20px;
  animation: circleExpand 2s infinite 0.5s;
}

.circle:nth-child(3) {
  width: 20px;
  height: 20px;
  animation: circleExpand 2s infinite 1s;
}

/* Side Lines */
.side-lines::before,
.side-lines::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #00bcd4, transparent);
  opacity: 0.5;
}

.side-lines::before {
  left: -10px;
  animation: lineFlicker 3s infinite;
}

.side-lines::after {
  right: -10px;
  animation: lineFlicker 3s infinite 1.5s;
}

@keyframes glowMove {
  0% {
    top: -10%;
    opacity: 1;
    height: 15px;
  }
  100% {
    top: 100%;
    opacity: 0;
    height: 5px;
  }
}

@keyframes circleExpand {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}

@keyframes lineFlicker {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Hover Effects */
.cyber-arrow-container:hover .arrow-body,
.cyber-arrow-container:hover .arrow-head::before,
.cyber-arrow-container:hover .arrow-head::after {
  background: #2196f3;
  box-shadow: 0 0 30px #2196f3;
}

.cyber-arrow-container:hover .circle {
  border-color: #2196f3;
}

.cyber-arrow-container:hover .side-lines::before,
.cyber-arrow-container:hover .side-lines::after {
  background: linear-gradient(to bottom, transparent, #2196f3, transparent);
}

/* Digital Binary Effect */
.binary-effect {
  position: absolute;
  font-family: monospace;
  font-size: 10px;
  color: rgba(0, 188, 212, 0.3);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.binary-effect:nth-child(1) {
  top: 0;
  left: -30px;
  animation: binaryFade 4s infinite;
}

.binary-effect:nth-child(2) {
  bottom: 0;
  right: -30px;
  animation: binaryFade 4s infinite 2s;
}

@keyframes binaryFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.about {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
    border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.3);  */
}

/* Animated Background */
.about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  
  animation: backgroundShift 20s linear infinite;
  z-index: 0;
}

/* Title Styling */
.about-title {
  position: relative;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-title.active {
  opacity: 1;
  transform: translateY(0);
}








/* Paragraph Styling */
.about p {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2rem;
  padding: 0 2rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about p.active {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effects */
.about p:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

/* Custom Selection Color */
.about ::selection {
  background: rgba(0, 168, 255, 0.3);
  color: #ffffff;
}

/* Decorative Elements */
.about::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(0, 168, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes backgroundShift {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-50px, -50px);
  }
}

@keyframes shimmer {
  0% {
      background-position: -200% center;
  }
  100% {
      background-position: 200% center;
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 0.5;
  }
  50% {
      transform: scale(1.1);
      opacity: 0.3;
  }
  100% {
      transform: scale(1);
      opacity: 0.5;
  }
}

/* Add delay to second paragraph animation */
.about p:nth-child(3) {
  transition-delay: 0.2s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about {
      padding: 4rem 1rem;
  }

  .about-title {
      font-size: 2.5rem;
  }

  .about p {
      font-size: 1rem;
      padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .about {
      padding: 3rem 1rem;
  }

  .about-title {
      font-size: 2rem;
  }

  .about p {
      font-size: 0.95rem;
      padding: 0 0.5rem;
  }
}

/* Intersection Observer Animation Classes */
[data-animate] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card-bg);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--glow);
}

/* Service Counter Badge */
.service-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

  /* Tools Container Styling */
  .tools-container {
    padding: 4rem 2rem;
    position: relative;
    background: rgba(10, 10, 18, 0.95);
    overflow: hidden;
  }

  .tools-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 17, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(51, 33, 243, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s infinite alternate;
  }

  .tools-container h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: transparent;
    /* background: linear-gradient(90deg, #fff, #00f7ff, #2196f3, #fff); */
    background-size: 400% auto;
    -webkit-background-clip: text;
    animation: gradientFlow 8s linear infinite;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
      0 0 20px rgba(47, 0, 255, 0.5),
      0 0 40px rgba(30, 0, 255, 0.3);
  }

  .tools-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .tool-card {
    background: rgba(16,18,27,0.8);
    border: 1px solid rgba(43, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg, transparent 40%, rgba(89, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .tool-card:hover {
    transform: translateY(-10px);
    border-color: #00f7ff;
    box-shadow: 
      0 0 30px rgba(34, 0, 255, 0.2),
      inset 0 0 20px rgba(0, 4, 255, 0.1);
  }

  .tool-card:hover::before {
    opacity: 1;
  }

  .tool-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    background: rgba(0,247,255,0.1);
    padding: 15px;
  }

  .tool-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    /* background: linear-gradient(45deg, #00f7ff, #2196f3) border-box; */
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateGradient 4s linear infinite;
  }

  .tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 30, 255, 0.5));
    transition: transform 0.5s ease;
  }

  .tool-card:hover .tool-icon img {
    transform: scale(1.1);
  }

  .tool-card h3 {
    color: #0000ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,247,255,0.3);
  }

  .tool-card p {
    color: #fff;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.9;
  }

  @keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }

  @keyframes bgPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
  }

  @keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media (max-width: 768px) {
    .tools-container h2 {
      font-size: 2.5rem;
      letter-spacing: 2px;
    }
    
    .tool-card {
      padding: 2rem 1.5rem;
    }
    
    .tool-icon {
      width: 70px;
      height: 70px;
    }
  }



  

  .h11 {
    text-align: center;
    font-size: 2.2rem;
    margin: 2rem auto;
    /* max-width: 800px; */
    padding: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    background: linear-gradient(45deg, #ffffff 20%, #00bcd4 50%, #2196f3 80%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    text-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    animation: titleGlow 3s infinite alternate;
  }

  @keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(33, 150, 243, 0.3); }
    100% { text-shadow: 0 0 20px rgba(33, 150, 243, 0.6); }
  }
  /* Bug Bounty Report Section */
  .bug-bounty-report {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: reportFadeIn 1s ease-out;
  }

  .bug-bounty-report::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0235ff, #00bcd4, #2196f3);
    animation: gradientSlide 3s linear infinite;
    background-size: 200% auto;
  }

  .company-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    transform: translateY(-30px);
    opacity: 0;
    animation: slideDown 0.8s ease-out forwards;
  }

  .company-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
  }

  .company-logo:hover {
    transform: scale(1.1) rotate(5deg);
  }

  .bug-bounty-report h1, 
  .bug-bounty-report h2, 
  .bug-bounty-report h3 {
    color: #021a87;
    margin: 2rem 0 1rem;
    position: relative;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideRight 0.6s ease-out forwards;
  }

  .bug-bounty-report h2::after,
  .bug-bounty-report h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #021a87, #2196f3);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.6s ease-out forwards 0.3s;
  }

  .bug-bounty-report p,
  .bug-bounty-report li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
  }

  .bug-bounty-report code {
    background: #f0f8ff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #021a87;
    font-family: monospace;
    border: 1px solid rgba(2, 26, 135, 0.2);
    transition: all 0.3s ease;
  }

  .bug-bounty-report code:hover {
    background: #021a87;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 26, 135, 0.2);
  }

  .impact-assessment {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #021a87;
    transform: scale(0.95);
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
  }

  @keyframes reportFadeIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes gradientSlide {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  @keyframes slideDown {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideRight {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes fadeUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes lineGrow {
    to {
      transform: scaleX(1);
    }
  }

  @keyframes scaleIn {
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .bug-bounty-report {
      padding: 2rem;
      margin: 2rem;
    }

    .company-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .company-logo {
      width: 80px;
    }
  }

  .payment-terms {
    padding: 0; 
    margin: 2rem auto;
    max-width: 1100px;
    background: #0a0a1200;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 0 40px rgba(33, 150, 243, 0.15); */
    /* border: 1px solid rgba(33, 150, 243, 0.1); */
  }
  
  .payment-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #2195f300, transparent);
    animation: gradientMove 8s ease infinite;
  }
  
  .payment-terms h2 {
    color: #2196f3;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
  }
  
  .payment-terms p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease forwards 0.3s;
  }
  
  .payment-terms h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2196f3;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.6s ease forwards 0.6s;
  }
  
  @keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translate(0);
    }
  }
  
  @keyframes lineGrow {
    to {
      transform: scaleX(1);
    }
  }
  
  .payment-terms:hover::before {
    animation: pulseGlow 2s ease infinite;
  }
  
  @keyframes pulseGlow {
    0% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    25% { transform: scale(1.1) rotate(90deg); opacity: 0.2; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
    75% { transform: scale(1.1) rotate(270deg); opacity: 0.2; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.1; }
    }
  
    @media (max-width: 768px) {
      .payment-terms {
        padding: 2rem;
        margin: 1rem;
      }
      
      .payment-terms h2 {
        font-size: 1.8rem;
      }
    }
  
  /* Bug Finding Process Section */
  .bug-finding-process {
    padding: 6rem 2rem;
    background: rgba(10, 10, 18, 0.95);
    position: relative;
    overflow: hidden;
  }

  .bug-finding-process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff 20%, #0e00d4 50%, #212ff3 80%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    animation: titlePulse 3s infinite;
  }

  @keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(33, 61, 243, 0.3); }
    50% { text-shadow: 0 0 40px rgba(33, 150, 243, 0.6); }
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .step {
    background: rgba(16, 18, 27, 0.8);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(33, 150, 243, 0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: stepFadeIn 0.8s ease-out forwards;
  }

  .step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #2f21f3;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
    transition: all 0.4s ease;
  }

  .step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c00d4, #2f21f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
    animation: numberPulse 2s infinite;
  }

  @keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .step h3 {
    color: #2196f3;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }

  .step p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .step ul {
    list-style: none;
    padding: 0;
  }

  .step li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .step li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00bcd4;
    animation: arrowBounce 1s infinite;
  }

  @keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }

  .process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1900d4, #212cf3);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineProgress 2s ease-out forwards;
  }

  .timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
    transform: translateY(30px);
    opacity: 0;
    animation: itemFadeIn 0.6s ease-out forwards;
  }

  .timeline-item .time {
    display: block;
    color: #2521f3;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  .timeline-item p {
    color: #fff;
    font-size: 0.9rem;
  }
  .timeline-note {
    background: rgba(16, 18, 27, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: noteSlideUp 0.8s ease-out forwards;
  }

  .timeline-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1s ease-out forwards 0.5s;
  }

  .timeline-note p {
    color: #fff;
    line-height: 1.8;
    margin: 0;
    padding-left: 2rem;
    position: relative;
  }

  .timeline-note strong {
    color: #2196f3;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
  }

  .timeline-note::after {
    content: '⚡';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00bcd4;
    animation: iconPulse 2s infinite;
  }

  @keyframes noteSlideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes lineExpand {
    to {
      transform: scaleX(1);
    }
  }

  @keyframes iconPulse {
    0%, 100% {
      transform: translateY(-50%) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translateY(-50%) scale(1.2);
      opacity: 1;
    }
  }
  @keyframes stepFadeIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes lineProgress {
    to {
      transform: scaleX(1);
    }
  }

  @keyframes itemFadeIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Staggered animations */
  .step:nth-child(1) { animation-delay: 0.2s; }
  .step:nth-child(2) { animation-delay: 0.4s; }
  .step:nth-child(3) { animation-delay: 0.6s; }
  .step:nth-child(4) { animation-delay: 0.8s; }
  .step:nth-child(5) { animation-delay: 1s; }

  .timeline-item:nth-child(1) { animation-delay: 1.2s; }
  .timeline-item:nth-child(2) { animation-delay: 1.4s; }
  .timeline-item:nth-child(3) { animation-delay: 1.6s; }
  .timeline-item:nth-child(4) { animation-delay: 1.8s; }

  @media (max-width: 768px) {
    .process-timeline {
      flex-direction: column;
      gap: 2rem;
    }
    
    .process-timeline::before {
      width: 2px;
      height: 100%;
      left: 50%;
      top: 0;
      transform: scaleY(0);
    }
    
    @keyframes lineProgress {
      to {
        transform: scaleY(1);
      }
    }
  }


  .core-value-proposition {
    padding: 6rem 2rem;
    /* background: var(--dark-bg); */
    position: relative;
    overflow: hidden;
  }

  .core-value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: 
      radial-gradient(circle at 20% 20%, rgba(0,247,255,0.1) 0%, transparent 40%),
      radial-gradient(circle at 80% 80%, rgba(33,150,243,0.1) 0%, transparent 40%); */
    animation: bgPulse 8s ease infinite alternate;
  }

  .core-value-proposition h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2f00eb;
    background: linear-gradient(135deg, #fff 0%, var(--deep-blue) 50%, var(--deep-blue) 100%);   
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* animation: titleGlow 3s infinite alternate; */
  }

  .core-value-proposition > p {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

  .value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    /* background: rgba(16,18,27,0.8); */
    border-radius: 15px;
    border: 1px solid rgba(0,247,255,0.1);
    backdrop-filter: blur(10px);
    transform: translateX(-50px);
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
  }

  .value-item:nth-child(even) {
    transform: translateX(50px);
  }

  .value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(17, 0, 255, 0.1);
    border-radius: 50%;
    position: relative;
  }

  .value-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    /* background: linear-gradient(45deg, var(--neon-blue), var(--deep-blue)); */
    opacity: 0.5;
    animation: iconGlow 2s infinite alternate;
  }

  .value-icon i {
    /* color: var(--neon-blue); */
    /* filter: drop-shadow(0 0 10px var(--neon-blue)); */
    animation: iconPulse 2s infinite alternate;
  }

  .value-content h3 {
    color: #0012b0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .value-content p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .value-content ul {
    list-style: none;
    padding: 0;
  }

  .value-content li {
    color: #fff;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
  }

  .value-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0012b0;
    animation: arrowPulse 1s infinite alternate;
  }

  .cta {
    text-align: center;
    margin-top: 4rem;
    color: #f2f3ff;
    padding: 3rem;
    /* background: rgba(16,18,27,0.9); */
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
      transparent 0%, 
      rgba(0,247,255,0.1) 45%, 
      rgba(33,150,243,0.1) 55%, 
      transparent 100%);
    animation: ctaGlow 3s infinite alternate;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(45deg, var(--neon-blue), var(--deep-blue));
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      transparent,
      rgba(255,255,255,0.3),
      transparent
    );
    transform: rotate(45deg);
    animation: buttonShine 3s infinite;
  }

  @keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(0,247,255,0.3); }
    100% { text-shadow: 0 0 30px rgba(0,247,255,0.7); }
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes iconGlow {
    to {
      filter: brightness(1.5);
      transform: scale(1.1);
    }
  }

  @keyframes iconPulse {
    to {
      transform: scale(1.1);
    }
  }

  @keyframes arrowPulse {
    to {
      transform: translateX(5px);
    }
  }

  @keyframes ctaGlow {
    to {
      transform: translateX(100%);
    }
  }

  @keyframes buttonShine {
    0% { transform: rotate(45deg) translateX(-200%); }
    100% { transform: rotate(45deg) translateX(200%); }
  }

  @media (max-width: 768px) {
    .core-value-proposition h2 {
      font-size: 2.5rem;
    }

    .value-item {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .value-icon {
      margin: 0 auto;
    }

    .value-content li {
      padding-left: 0;
    }

    .value-content li::before {
      position: static;
      margin-right: 0.5rem;
    }
  }




















































/* Cyberpunk Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0f2d;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.2);
}

::-webkit-scrollbar-thumb {
  background: 
    linear-gradient(45deg,
      rgba(0, 212, 255, 0.2) 0%,
      rgba(0, 212, 255, 0.4) 25%,
      rgba(45, 137, 255, 0.6) 50%,
      rgba(45, 137, 255, 0.4) 75%,
      rgba(45, 137, 255, 0.2) 100%
    );
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 4px;
  position: relative;
  backdrop-filter: blur(5px);
}

::-webkit-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 212, 255, 0.1);
  animation: scrollGlow 2s infinite;
}

::-webkit-scrollbar-thumb:hover {
  background: 
    linear-gradient(45deg,
      rgba(0, 212, 255, 0.4) 0%,
      rgba(0, 212, 255, 0.6) 25%,
      rgba(45, 137, 255, 0.8) 50%,
      rgba(45, 137, 255, 0.6) 75%,
      rgba(45, 137, 255, 0.4) 100%
    );
  box-shadow: 
    0 0 15px rgba(0, 212, 255, 0.5),
    inset 0 0 10px rgba(0, 212, 255, 0.3);
  transform: scaleX(1.2);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(0, 212, 255, 0.8);
  box-shadow: 
    0 0 20px rgba(0, 212, 255, 0.8),
    inset 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  
  ::-webkit-scrollbar-thumb::before {
    display: none;
  }
}



.scroll-container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-container.show {
  opacity: 1;
  visibility: visible;
  animation: emergeAnimation 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(13, 14, 33, 0.85);
  border: 2px solid rgba(88, 199, 250, 0.5);
  border-radius: 15px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.scroll-btn::before,
.scroll-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 15px;
  background: linear-gradient(45deg, 
      #07008b, #0e8ca800, #4ecdc500, #45b7d100,
      #031872, #1d228c, #03113a, #293081
  );
  background-size: 400%;
  animation: borderFlow 20s linear infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-btn:hover {
  transform: translateY(-5px) rotateX(10deg);
  border-color: rgba(88, 199, 250, 0.8);
  box-shadow: 
      0 5px 15px rgba(88, 199, 250, 0.3),
      0 0 30px rgba(88, 199, 250, 0.2),
      inset 0 0 15px rgba(88, 199, 250, 0.2);
}

.scroll-btn:hover::before,
.scroll-btn:hover::after {
  opacity: 1;
}

.arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}

.arrow-path {
  fill: none;
  stroke: #58c7fa;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s;
  filter: drop-shadow(0 0 5px rgba(88, 199, 250, 0.5));
}

.scroll-btn:hover .arrow-path {
  stroke: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.pulse-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(88, 199, 250, 0.3);
  border-radius: 15px;
  animation: pulseEffect 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes pulseEffect {
  0% {
      transform: scale(1);
      opacity: 0.5;
  }
  100% {
      transform: scale(1.2);
      opacity: 0;
  }
}

@keyframes borderFlow {
  0% { background-position: 0 0; }
  100% { background-position: 400% 0; }
}

@keyframes emergeAnimation {
  0% {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
  }
  100% {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .scroll-container {
      right: 20px;
      bottom: 20px;
  }
  .scroll-btn {
      width: 50px;
      height: 50px;
  }
}

