body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #4a91e2a7, #695acd90);
  color: #fff;
  text-align: center;
}

/* Header */
.header {
  padding: 60px 20px;
}

.header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.floatImg {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Agents Grid */
.agents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* Card */
.card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 10px 0;
}

.card p {
  font-size: 14px;
  color: #fff;
}

/* Footer */
.footer {
  padding: 20px;
  font-size: 14px;
  opacity: 0.8;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  text-align: center;

  /* ChatNex Style Gradient */
  background: linear-gradient(135deg, #2777fc, #6a5acd, #00c9ff, #4facfe);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

/* Smooth animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(39, 119, 252, 0.3);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(39, 119, 252, 0.5);
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 20px;
  width: 400px;
}

.hero-image img {
  width: 100%;
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-image img {
  filter: drop-shadow(0 20px 40px rgba(39, 119, 252, 0.4));
}

@media (max-width: 768px) {
  .hero-image {
    width: 250px;
    margin: 20px auto;
    right: -100px;
    top: 140px;
    z-index: -1;
  }

  .header {
    padding: 10px 20px;
  }
}