
 html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #0f0f23;
  color: #f0f0f0;
  overflow-x: hidden;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}





/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}











/* Floating Fixed Header */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(15, 15, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
header:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(139, 92, 246, 0.3);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
}











/* Navigation Menu */
nav {
  flex: 1;
  text-align: center;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
}
.nav-menu li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-menu li a:hover {
  color: #8B5CF6;
}
.nav-menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;

}





/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 28px;
  background: #f0f0f0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}












/* Call-to-Action Button */
.cta {
  padding: 12px 28px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(99, 102, 241, 0.6);
}
.cta:hover::before {
  left: 100%;
}
.cta:active {
  transform: translateY(0);
}




@keyframes downloadBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.download-icon {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s ease;
}
.cta:hover .download-icon {
  animation: downloadBounce 1s infinite;
}



.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}




.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  perspective: 1000px;
  overflow: hidden;
}
.grid {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  transform-style: preserve-3d;
  transform: rotateX(60deg) rotateZ(0deg);
  animation: gridRotate 60s linear infinite;
}
@keyframes gridRotate {
  0% {
    transform: rotateX(60deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(60deg) rotateZ(360deg);
  }
}




.grid-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(99, 102, 241, 0.2);
}
.grid-line-vertical {
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(99, 102, 241, 0.2);
}


.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.5);
  filter: blur(3px);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}














/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8B5CF6;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  background: linear-gradient(to right, #6366F1, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s 0.2s ease forwards, gradientFlow 8s ease infinite;
  background-size: 200% auto;
  opacity: 0;
  transform: translateY(20px);
  letter-spacing: -1px;
}

.hero-section-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  
  margin: 15px 20px 15px 20px;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.7), rgba(138, 43, 226, 0.7));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-section-logo img {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0px 2px 5px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.hero-section-logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.5));
}

.hero-section-logo:hover {
  transform: perspective(800px) rotateX(10deg) rotateY(0deg) scale(1.05);
  animation: float 1s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-10px);
  }
}


.hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 30px;
}
.hero-cta {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.primary-cta {
  background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
  background-size: 200% auto;
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  animation: gradientFlow 8s ease infinite;
}
.primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.7);
}
.secondary-cta {
  background: transparent;
  color: white;
  border: 2px solid rgba(99, 102, 241, 0.5);
}
.secondary-cta:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-5px);
}


/* Section Styles*/
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: -1;
}
.section-title {
  text-align: left;
  margin-bottom: 60px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(to right, #6366F1, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
  background-size: 200% auto;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 2px;
}
.section-description {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}




/* ABOUT SECTION*/
.about {
  background: linear-gradient(to bottom, #0f0f23, #141432);
}
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}



.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #8B5CF6;
}
.about-text p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B5CF6;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}



@media (max-width: 768px) {
  .about-content h3 {
    font-size: 1.5rem;
  }
  .about-content p {
    font-size: 1rem;
  }

}





/* FEATURS SECTION */
.features {
  background: linear-gradient(to bottom, #141432, #191942);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-card {
  background: rgba(15, 15, 35, 0.5);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.feature-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon-large {
  width: 70px;
  height: 70px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #8B5CF6;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-large {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.1) translateZ(20px);
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f0f0f0;
  transition: all 0.3s ease;
}
.feature-card:hover h3 {
  color: #8B5CF6;
  transform: translateZ(15px);
}
.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  transition: all 0.3s ease;
}
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
  transform: translateZ(10px);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 15px;
  }
  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }
  .feature-card p {
    display: none;
  }
  .feature-icon-large {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
    margin: 0;
  }
}







/* PLATFORS SECTION */
.platforms {
  background: linear-gradient(to bottom, #191942, #1e1e4f);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.platform-card {
  background: rgba(91, 91, 194, 0.5);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2), transparent 70%);
  transition: all 0.5s ease;
  z-index: -1;
}
.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}
.platform-card:hover::before {
  top: -50%;
  left: -50%;
}
.platform-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  object-fit: contain;
}
.platform-card:hover .platform-icon {
  transform: scale(1.1);
}
.platform-card h3 {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 10px;
}
.platform-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #8B5CF6;
  font-weight: 600;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}



@media (max-width: 768px) {
 
  .section-description {
    display: none;
  }
  
  
 
  .platform-card p {
    display: none;
  }
  
 
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /
  }
  
  
  .platform-card {
    padding: 10px;
  }
  
  
  .platform-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
}












/* PRICING SECTION */
.pricing {
  background: linear-gradient(to bottom, #1e1e4f, #23235c);
}
.pricing-card {
  background: rgba(15, 15, 35, 0.5);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: -1;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.3);
}
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.pricing-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 2px;
}
.pricing-title {
  font-size: 2rem;
  color: #f0f0f0;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.pricing-card:hover .pricing-title {
  transform: scale(1.05);
  color: #8B5CF6;
}
.pricing-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #6366F1, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 30px 0;
  text-align: center;
  animation: gradientFlow 8s ease infinite;
  background-size: 200% auto;
  transition: all 0.5s ease;
  position: relative;
}
.pricing-price::before {
  content: attr(data-original);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #6366F1, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}
.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 30px;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B5CF6;
  font-weight: bold;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 15px 0;
  background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
  background-size: 200% auto;
  animation: gradientFlow 8s ease infinite;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  transition: all 0.3s ease;
}
.pricing-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.7);
}



















/* FAQ SECTION */
.faq {
  background: linear-gradient(to bottom, #23235c, #282869);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(15, 15, 35, 0.5);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(99, 102, 241, 0.2);
}
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #f0f0f0;
  transition: all 0.3s ease;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #8B5CF6;
  transition: all 0.3s ease;
}
.faq-question.active {
  background: rgba(99, 102, 241, 0.1);
}
.faq-question.active::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  padding: 0 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.faq-answer.active {
  max-height: 1000px;
  padding: 0 25px 20px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}










/* FEEDBACK SECTION */
.feedback {
  background: linear-gradient(to bottom, #282869, #2d2d76);
  text-align: center;
}

.feedback-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6, #EC4899);
  background-size: 200% auto;
  animation: gradientFlow 8s ease infinite;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.feedback-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.7);
}

















/* FOOTER */
footer {
  background: #0f0f23;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: -1;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-column h3 {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}
.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #8B5CF6;
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: #8B5CF6;
}
.footer-links a:hover::before {
  width: 100%;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  color: #8B5CF6;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}










/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(20px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  .about-image {
    margin-bottom: 40px;
  }
  .about-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .cta-to-chrome{
    display: none;
  }
}


@media (max-width: 800px) {
  .header-content {
    padding: 15px 20px;
  }
  .nav-menu {
    position: fixed;
    top: -80vh; 
    right: 0;
    width: 100%;
    height: 80vh;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: top 0.5s ease; 
    z-index: 1000;
    border-radius: 5%;
}


.nav-menu.active {
    top: 0; 
}


  .hamburger {
    display: flex;
  }
  .hero {
    padding: 120px 20px 80px;
  }
  .hero-cta-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta {
    width: 100%;
    max-width: 300px;
  }
  section {
    padding: 80px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  header {
    top: 10px;
    width: 95%;
  }
  .header-content {
    padding: 12px 15px;
  }
  .cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}