/* floating-style.css */
/* Styles to create a floating, non-flat effect for content */

.floating-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  max-width: 800px;
  margin: 40px auto;
}

.floating-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.floating-image {
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px auto;
}

.floating-image:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}
