* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #fff;
  background: linear-gradient(-45deg, #000428, #004e92, #0f2027, #203a43, #2c5364);
  background-size: 400% 400%;
  animation: moveGradient 15s ease infinite;
  overflow-x: hidden;
}

/* Header Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 2s ease;
}

.hero h1 span {
  color: #00ffcc;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 2s ease;
}

.btn {
  display: inline-block;
  background: #00ffcc;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 0 15px #00ffcc;
}

.btn:hover {
  background: #fff;
  box-shadow: 0 0 30px #00ffcc;
  transform: scale(1.05);
}

/* Blog Section */
.blog-section {
  padding: 5rem 10%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.blog-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ffcc;
}

.blog-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
}

.blog-card h3 {
  margin-bottom: 1rem;
  color: #00ffcc;
}

.blog-card p {
  line-height: 1.6;
  color: #e0e0e0;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(0, 255, 204, 0.1);
  backdrop-filter: blur(5px);
}

.cta h2 {
  font-size: 2.2rem;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  color: #ddd;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: #aaa;
}

/* Animations */
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
