* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  overflow-x: hidden;
}

.hero-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  padding: 2rem;
  overflow: hidden;
}

.background-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: particle-float 10s infinite alternate;
}

@keyframes particle-float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-50px) rotate(360deg); }
}

.hero-wrapper {
  position: relative;
  max-width: 1300px;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(50px) rotateX(-20deg);
  animation: heroReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4fd1c5, #3b82f6, #8b5cf6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  perspective: 1000px;
}

.service-card {
  background: rgba(31, 41, 55, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transform: rotateX(10deg) rotateY(15deg) translateZ(-100px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, 
      rgba(45, 212, 191, 0.2) 0%, 
      transparent 70%);
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover {
  transform: scale(1.05) rotateX(0) rotateY(0) translateZ(50px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: #4fd1c5;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4fd1c5, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover h3::after {
  transform: scaleX(1);
}

.service-card ul {
  list-style-type: none;
}

.service-card ul li {
  color: #e5e7eb;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #4fd1c5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card ul li:hover {
  transform: translateX(10px);
}

.service-card ul li:hover::before {
  opacity: 1;
}

@keyframes heroReveal {
  to {
      opacity: 1;
      transform: translateY(0) rotateX(0);
  }
}

.service-card {
  animation: cardReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: calc(0.2s * var(--delay));
}

@keyframes cardReveal {
  from {
      opacity: 0;
      transform: rotateX(10deg) rotateY(15deg) translateZ(-100px) scale(0.8);
  }
  to {
      opacity: 1;
      transform: rotateX(10deg) rotateY(15deg) translateZ(-100px) scale(1);
  }
}

@media (max-width: 1024px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
      font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .services-grid {
      grid-template-columns: 1fr;
  }
  .hero-title {
      font-size: 2.5rem;
  }
} 

/* ABOUT SECTION */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  gap: 4rem;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-title {
  font-size: 3rem;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-text {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-point:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.key-point-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.key-point-text {
  flex: 1;
}

.about-image-container {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 30px;
  z-index: -1;
  opacity: 0.7;
}

.about-image:hover {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 1024px) {
  .about-section {
      flex-direction: column;
      text-align: center;
  }

  .about-content, .about-image-container {
      max-width: 100%;
  }

  .key-points {
      grid-template-columns: 1fr;
  }
}

/* REST 3 SECTIONS */
.feature-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.feature-section:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  max-width: 600px;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.section-1 .feature-title {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-2 .feature-title {
  background: linear-gradient(90deg, #4ade80, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-3 .feature-title {
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-text {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.section-1 .feature-point:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateX(10px);
}

.section-2 .feature-point:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateY(-10px);
}

.section-3 .feature-point:hover {
  background: rgba(244, 63, 94, 0.1);
  transform: rotate(3deg);
}

.feature-point-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}

.section-1 .feature-point-icon {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
}

.section-2 .feature-point-icon {
  background: linear-gradient(135deg, #4ade80, #10b981);
}

.section-3 .feature-point-icon {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.feature-point-text {
  flex: 1;
  color: #e5e7eb;
}

.feature-image-container {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.feature-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  opacity: 0.7;
  border-radius: 30px;
  z-index: -1;
}

.section-1 .feature-image-container::before {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
}

.section-2 .feature-image-container::before {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(16, 185, 129, 0.1));
}

.section-3 .feature-image-container::before {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(236, 72, 153, 0.1));
}

.feature-image:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .feature-section {
      flex-direction: column;
      text-align: center;
  }

  .feature-section:nth-child(even) {
      flex-direction: column;
  }

  .feature-content, .feature-image-container {
      max-width: 100%;
  }

  .feature-points {
      grid-template-columns: 1fr;
  }
}