/* Base Styles */
:root {
  --primary-color: #00E676;
  --secondary-color: #00B0FF;
  --dark-bg: #0A1929;
  --light-bg: #ffffff;
  --text-color: #333333;
  --light-text: #ffffff;
  --gray-text: #666666;
  --border-radius: 10px;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f8f9fa;
  overflow-x: hidden;
  position: relative;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.05), transparent 60%),
              radial-gradient(circle at bottom left, rgba(0, 176, 255, 0.05), transparent 60%);
  z-index: -2;
  pointer-events: none;
}

.noise-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  margin-left: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background: var(--gradient);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: var(--light-text) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 176, 255, 0.3);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 255, 0.4);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  transform: translateY(20px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  margin-top: 30px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: var(--light-text);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 176, 255, 0.3);
  transition: var(--transition);
}

.primary-button svg {
  margin-left: 8px;
  transition: var(--transition);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 176, 255, 0.4);
  color: var(--light-text);
}

.primary-button:hover svg {
  transform: translateX(5px);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: rgba(248, 249, 250, 0.7);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  color: var(--text-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--light-bg);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  margin-bottom: 20px;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 176, 255, 0.1));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--gray-text);
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), rgba(0, 176, 255, 0.05));
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  background: var(--gradient);
  color: var(--light-text);
  font-weight: 700;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.step-content p {
  color: var(--gray-text);
}

.cta-container {
  margin-top: 50px;
  text-align: center;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item.active {
  opacity: 1;
  transform: translateY(0);
}

.gallery-placeholder {
  position: relative;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.gallery-item p {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), rgba(0, 176, 255, 0.05));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-rating {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  text-align: right;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .primary-button {
  background: var(--light-text);
  color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .primary-button:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 70px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo p {
  margin-left: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #aaa;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text,
  .hero-image {
    width: 100%;
    text-align: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.4s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .main-nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-nav li {
    margin: 10px 0;
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 10px 0;
  }
  
  .nav-cta {
    display: inline-block;
    margin-top: 10px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    padding: 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .primary-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s forwards;
}

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

.fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
  animation-delay: 0.6s;
}
