/* make Elementor columns responsive */
@media (min-width: 1025px) {
  .elementor-column { flex: 1; max-width: 50%; }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .elementor-column { flex: 1; max-width: 100%; }
}
@media (max-width: 767px) {
  .elementor-column { flex: 1; max-width: 100%; }
}
/* Make the custom header/menu sticky on all pages */
.site-sticky-menu {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Optional: make sure the header has a solid background while scrolling */
.site-sticky-menu {
  background-color: #ffffff; /* change to your header color if needed */
}
/* Wrapper background */
.wpforms-form {
    background: #EFF2F1;
    padding: 20px;
    border-radius: 8px;
}

/* Labels */
.wpforms-field-label {
    color: #381D2A;
    font-weight: 600;
}

/* Input fields */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea,
.wpforms-form select {
    background: #ffffff;
    border: 2px solid #5D675B;
    padding: 10px;
    border-radius: 6px;
    color: #381D2A;
}

/* Field focus */
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
    border-color: #4CB963;
    box-shadow: 0 0 5px rgba(76, 185, 99, 0.4);
}

/* Submit button */
.wpforms-submit {
    background: #4CB963 !important;
    color: #ffffff !important;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wpforms-submit:hover {
    background: #5D675B !important;
    cursor: pointer;
}

/* Errors */
.wpforms-error {
    color: #381D2A !important;
}
.case-scroll-hover {
  width: 100%;
  max-width: 900px;
  height: 550px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.case-scroll-hover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 10s ease;
}

.case-scroll-hover:hover img {
  transform: translateY(calc(-100% + 550px));
}

