 .storage-card {
      position: relative;
      overflow: hidden;
      height: 400px;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .storage-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
      color: white;
    }

    .storage-overlay h5 {
      font-weight: bold;
    }

    .learn-more {
      font-weight: bold;
      color: white;
      text-decoration: none;
    }

    .learn-more:hover {
      text-decoration: underline;
    }

 .testimonial-slider {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.testimonial {
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
  width: 100%;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.testimonial h4 {
  text-align: right;
  font-weight: normal;
  color: #666;
}
 .contact-form-one {
        width: 100%;
        background: rgba(247, 247, 247, 0.1);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 50px;
        width: 100%;
    }