/* crane.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #4ae1ff, #eaf6ff, #72e7ff, #003366);
  color: #0a004d;
  position: relative;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.crane-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.crane-lottie {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0f0044;
}

.subtitle {
  font-size: 1.1rem;
  color: #002446;
  margin-bottom: 40px;
}

.crane-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature {
  background: rgba(255, 255, 255, 0.147);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #000000;
}

.feature p {
  font-size: 1rem;
  color: #002848;
}

.crane-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  margin: auto;
}

.crane-form input {
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  color: #333;
}

.crane-form input[readonly] {
  background-color: #eeeeee;
  color: #888;
}

.cta-btn {
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: #020066;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ff8800, #ff5500);
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.4);
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .feature h3 {
    font-size: 1.2rem;
  }

  .crane-form input, .cta-btn {
    font-size: 0.95rem;
  }
}
