body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.qloud_footer_container_2025 {
  position: relative;
  background: #3489d8;
  color: #ffffff;
  overflow: hidden;
}

/* Wave Animation Top (Fixed Position) */
.qloud_footer_wave_wrapper_2025 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 0;
  z-index: 2;
}

.qloud_footer_wave_wrapper_2025 svg {
  display: block;
  width: calc(150% + 1px);
  height: 100px;
}

.qloud_footer_wave_1_2025 {
  animation: wave1 10s linear infinite;
}

.qloud_footer_wave_2_2025 {
  animation: wave2 15s linear infinite;
  margin-top: -40px;
}

@keyframes wave1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes wave2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* Footer Main Content (No Top Padding) */
.qloud_footer_content_wrapper_2025 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 40px 10px; /* reduced top padding */
  z-index: 3;
  position: relative;
}

.qloud_footer_column_2025 {
  flex: 1 1 300px;
  margin: 20px;
}

.qloud_footer_column_2025 img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.qloud_footer_column_2025 h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.qloud_footer_column_2025 p,
.qloud_footer_column_2025 a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.8;
}

.qloud_footer_column_2025 a:hover {
  color: #1d1d1d;
}

.qloud_footer_bottom_bar_2025 {
  text-align: center;
  background: #091521;
  color: #ccc;
  padding: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .qloud_footer_content_wrapper_2025 {
    flex-direction: column;
    padding: 50px 20px 30px;
    text-align: center;
  }

  .qloud_footer_column_2025 {
    flex: 1 1 100px;
  }
}