* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #f8f9fa;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 195, 74, 0.05) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.energy-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: #8bc34a;
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 15s infinite ease-in;
}

.particle:nth-child(1) {
  width: 8px;
  height: 8px;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 10px;
  height: 10px;
  left: 40%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 60%;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 9px;
  height: 9px;
  left: 75%;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  width: 5px;
  height: 5px;
  left: 90%;
  animation-delay: 5s;
}

@keyframes rise {
  0% {
    bottom: -10%;
    transform: translateX(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    bottom: 110%;
    transform: translateX(100px) scale(0.5);
    opacity: 0;
  }
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  animation: fadeInUp 1s ease;
}

.logo-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  animation: slideDown 1s ease;
  border: 2px solid #f0f0f0;
}

.logo {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.tagline {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.3s both;
}

.highlight {
  color: #e31e24;
  font-weight: 800;
}

.description {
  font-size: 1.3rem;
  color: #5a6c7d;
  margin-bottom: 20px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.5s both;
}

/* .domainUsed {
            font-size: 1.2rem;
            color: #5a6c7d;
            animation: fadeInUp 1s ease 0.7s both;
        } */

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.7s both;
}

.feature-item {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 15px;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #8bc34a;
  box-shadow: 0 15px 35px rgba(139, 195, 74, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.feature-text {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-container {
  animation: fadeInUp 1s ease 0.9s both;
}

.cta-btn {
  display: inline-block;
  padding: 20px 60px;
  background: #e31e24;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #e31e24;
}

.cta-btn:hover {
  background: #8bc34a;
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.4);
  border-color: #8bc34a;
}

.website-link {
  display: block;
  margin-top: 30px;
  color: #5a6c7d;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.website-link:hover {
  color: #e31e24;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .logo-container {
    padding: 30px 40px;
  }

  .logo {
    max-width: 350px;
  }

  .tagline {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .features {
    gap: 20px;
  }

  .feature-item {
    min-width: 150px;
    padding: 20px 25px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-text {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    padding: 20px 30px;
  }

  .logo {
    max-width: 280px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .feature-item {
    min-width: 130px;
  }

  .cta-btn {
    padding: 14px 35px;
    font-size: 0.95rem;
  }

  .website-link {
    font-size: 1rem;
  }
}
