.elementor-4506 .elementor-element.elementor-element-e7c6d4a > .elementor-widget-container{margin:140px 0px 0px 0px;}@media(max-width:767px){.elementor-4506 .elementor-element.elementor-element-e7c6d4a > .elementor-widget-container{margin:-60px 0px 0px 0px;}}/* Start custom CSS for shortcode, class: .elementor-element-e7c6d4a *//* -------------------------------
   SVSJ Infra + T-Hub Workshop Form
   Contact Form 7 – Final Professional Design
---------------------------------- */

/* === Entrance Animation === */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Soft Heading Glow Animation === */
@keyframes glowHeading {
  0% {
    text-shadow: 0 0 2px #ff6900;
  }
  100% {
    text-shadow: 0 0 2px #ff6900;
  }
}

/* === Form Wrapper with T-Hub Logo === */
.wpcf7 {
  max-width: 640px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.96);
  background-image: url('https://t-hub.co/wp-content/uploads/2025/04/t-hub-logo-1-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 180px;
  background-blend-mode: lighten;
  backdrop-filter: blur(1px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  animation: fadeUp 0.8s ease-out;
}

/* === Heading Styling === */
.wpcf7 h3 {
  font-size: 26px;
  color: #ff6900;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  animation: glowHeading 1.5s ease-in-out infinite alternate;
  text-shadow: 0 0 3px rgba(255, 105, 0, 0.3);
}

/* === Description Styling === */
.wpcf7 p {
  text-align: center;
  color: #444;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeUp 1.2s ease-out;
}

/* === Label Styling === */
.wpcf7 label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0d234f;
  font-size: 15px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

/* === Input & Textarea Styling (Semi-transparent to show logo) === */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  font-family: inherit;
  backdrop-filter: blur(1px);
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

/* === Focused Input Animation === */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #ff6900;
  box-shadow: 0 0 10px rgba(255, 105, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.95);
  transform: scale(1.01);
  outline: none;
}

/* === Submit Button Styling === */
.wpcf7 input[type="submit"] {
  background-color: #ff6900;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

/* === Button Shine on Hover === */
.wpcf7 input[type="submit"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: all 0.4s ease;
}

.wpcf7 input[type="submit"]:hover::after {
  left: 130%;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #e65d00;
  box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

/* === Responsive Design === */
@media (max-width: 480px) {
  .wpcf7 {
    padding: 25px;
    background-size: 120px;
  }

  .wpcf7 h3 {
    font-size: 22px;
  }

  .wpcf7 input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */