/*Styling the Footer Menu*/
.buckles-stacked-menu {
    list-style: none !important;
    padding-left: 0;
    margin: 0;
}
.buckles-stacked-menu li {
    margin-bottom: 10px;
}
.buckles-stacked-menu a {
    text-decoration: none !important;
    color: #fff;
    font-size: 20px;
}
.buckles-stacked-menu a:hover {
    color: #F16722;
}
/*Contact Form 7*/
/* Form Wrapper */
.custom-form {
  display: flex;
  flex-direction: column;
}

/* Input and Textarea Fields */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #F16722;
  border-radius: 25px;
  font-size: 16px;
  font-family: inherit;
  background-color: white;
  margin-bottom: 20px; /* <-- Vertical spacing added */
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-form textarea {
  min-height: 150px;
  border-radius: 20px;
}

/* Focus State */
.custom-form input:focus,
.custom-form textarea:focus {
  outline: none;
  border-color: #F16722;
  box-shadow: 0 0 0 3px rgba(241, 103, 34, 0.2);
}

/* Submit Button */
.custom-button {
  background-color: #202530;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Button Hover Effect */
.custom-button:hover {
  background-color: #F16722;
  color: #fff;
  transform: translateY(-2px);
}
