/* === Image Styles === */
.img-fluid {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* === Dancing Text === */
@keyframes textDance {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.header-text h2,
.header-text p,
.section-title {
  animation: textDance 2.5s ease-in-out infinite;
}

/* Optional for smoother feel */
li {
  transition: transform 0.3s ease;
}
li:hover {
  transform: translateX(5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .img-fluid:hover {
    transform: none;
    box-shadow: none;
  }

  .header-text h2,
  .header-text p {
    animation: none;
  }
}

.contact-section {
  background-color: #fff;
}

.submit-btn {
  background-color: #d65c3d;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #b9482f;
}

.form-label {
  font-size: 0.95rem;
}

.form-control::placeholder {
  color: #ccc;
  font-style: italic;
}
