.container-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.hero {
  /* margin-top: 70px; */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-two-button {
  margin-left: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

.process-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  margin-bottom: 1rem;
  color: #333;
}

.tech-stack {
  background: #1a1a2e;
  color: white;
  padding: 4rem 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #667eea;
  transform: translateY(-5px);
}

.tech-item svg {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stats-section {
  background: #1a1a2e;
  color: white;
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  color: #ccc;
}

.portfolio-section {
  background: #1a1a2e;
  color: white;
  padding: 4rem 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 22px;
}

.portfolio-content p {
  color: #ccc;
  font-size: 0.9rem;
}

.tech-stack {
  background: #1a1a2e;
  color: white;
  padding: 4rem 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #667eea;
  transform: translateY(-5px);
}

.tech-item .tech-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech-item h4 {
  font-size: 1.1rem;
  color: white;
}

.platforms-section {
  background: #1a1a2e;
  color: white;
  padding: 4rem 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #667eea;
  transform: translateY(-10px);
}

.platform-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.platform-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.platform-card p {
  color: #ccc;
  line-height: 1.8;
}

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

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }
  .cta-button {
    padding: 0.5rem 2rem;
    font-size: 0.95rem;
  }

  .cta-two-button {
    margin-left: 0;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}

/* 🌙 DARK MODE STYLES */

.dark-mode .section-title {
  color: #ffffff;
}

.dark-mode .section-subtitle {
  color: #b0b0b0;
}

/* Feature Cards - Dark Mode */
.dark-mode .feature-card {
  background: #1a1a2e;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode .feature-card:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.dark-mode .feature-card h3 {
  color: #ffffff;
}

.dark-mode .feature-card p {
  color: #b0b0b0;
  color: white;
}

/* Process Section - Dark Mode */
.dark-mode .process-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
}

.dark-mode .process-step {
  background: #252538;
}

.dark-mode .process-step h3 {
  color: #ffffff;
}

.dark-mode .process-step p {
  color: #b0b0b0;
}

/* Stats Section - Dark Mode */
.dark-mode .stats-section {
  background: #0a0a15;
}

.dark-mode .stat-item p {
  color: #a0a0a0;
}

/* Portfolio Section - Dark Mode */
.dark-mode .portfolio-section {
  background: #0a0a15;
}

.dark-mode .portfolio-item {
  background: rgba(255, 255, 255, 0.03);
}

.dark-mode .portfolio-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dark-mode .portfolio-content p {
  color: #a0a0a0;
}

/* Tech Stack - Dark Mode */
.dark-mode .tech-stack {
  background: #0a0a15;
}

.dark-mode .tech-item {
  background: rgba(255, 255, 255, 0.03);
}

.dark-mode .tech-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Platforms Section - Dark Mode */
.dark-mode .platforms-section {
  background: #0a0a15;
}

.dark-mode .platform-card {
  background: rgba(255, 255, 255, 0.03);
}

.dark-mode .platform-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dark-mode .platform-card p {
  color: #a0a0a0;
}

/* Pricing Section - Dark Mode */
.dark-mode .pricing-section {
  background: #0f0f1e;
}

.dark-mode .pricing-card {
  background: #1a1a2e;
  border-color: #2a2a3e;
}

.dark-mode .pricing-card:hover {
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.dark-mode .pricing-card h3 {
  color: #ffffff;
}

.dark-mode .pricing-card p {
  color: #b0b0b0;
}

.dark-mode .pricing-features li {
  color: #b0b0b0;
}

/* Featured pricing card stays the same in dark mode */
.dark-mode .pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.dark-mode .pricing-card.featured h3 {
  color: white;
}

.dark-mode .pricing-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.dark-mode .pricing-card.featured .pricing-features li {
  color: white;
}
