.hosting-section {
  background:white ;
  padding: 60px 20px;
  text-align: center;
  color:black;
}

.hosting-container {
  max-width: 1200px;
  margin: auto;
}

.hosting-heading {
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  color:black;
}

.hosting-heading.animate {
  opacity: 1;
  transform: translateY(0);
}


.hosting-subheading {
  font-size: 1rem;
  color:rgba(0, 0, 0, 0.904);
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.hosting-subheading.animate {
  opacity: 1;
  transform: translateY(0);
}

.hosting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.hosting-card {
  background: #f3f7fd;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
  color: #000;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.hosting-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.hosting-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.hosting-card-title {
  font-size: 1rem;
}

.hosting-cta-button {
  background: #ff00ff;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.4s;
}

.hosting-cta-button.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hosting-heading {
    font-size: 1.5rem;
  }

  .hosting-subheading {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .hosting-card img {
    height: 150px;
  }

  .hosting-card-title {
    font-size: 0.95rem;
  }

  .hosting-cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}