/* Start custom CSS for wpforms, class: .elementor-element-b196a4b *//* 2 Column wrapper */
.zudio-two-col {
  display: flex;
  gap: 24px;
  align-items: stretch;   /* ✅ equal height ke liye */
  flex-wrap: wrap;
}

/* Form column */
.zudio-form {
  flex: 1 1 60%;
  min-width: 280px;
  background: #fff;       /* optional */
  border-radius: 12px;    /* optional */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); /* optional */
  padding: 16px;          /* WP form ko andar spacing dene ke liye */
  display: flex;          /* ✅ equal height ke liye */
  flex-direction: column; /* content stretch ke liye */
}

/* Contact card column */
.zudio-ctc-card {
  flex: 1 1 35%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;          /* ✅ image + content ko vertical stack fix */
  flex-direction: column;
}

/* Image */
.zudio-img img {
  width: 100%;
  height: 200px;          /* fixed image height */
  object-fit: cover;
  display: block;
}

/* Content */
.zudio-content {
  padding: 16px;
  flex: 1;                /* ✅ content stretch karega equal height ke liye */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically balance */
}
.zudio-content h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #0b2447;
}
.zudio-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .95rem;
  color: #374151;
}
.zudio-content ul li {
  margin-bottom: 8px;
}
.zudio-content a {
  color: #0b5fff;
  text-decoration: none;
}
.zudio-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .zudio-two-col {
    flex-direction: column;
  }
  .zudio-form,
  .zudio-ctc-card {
    flex: 1 1 100%;
    height: auto; /* mobile par auto height */
  }
  .zudio-img img {
    height: 220px;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-42fd167 *//* ========== GLOBAL COLUMN WRAPPER ========== */
.zudio-two-col {
  display: flex;
  gap: 30px;
  align-items: stretch;   /* ✅ equal height */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ========== FORM COLUMN ========== */
.zudio-form {
  flex: 1 1 60%;
  min-width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}
.zudio-form:hover {
  transform: translateY(-4px);
}

/* WPForms Fields (Generic Styling) */
.zudio-form input[type="text"],
.zudio-form input[type="email"],
.zudio-form input[type="tel"],
.zudio-form input[type="number"],
.zudio-form select,
.zudio-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.zudio-form input:focus,
.zudio-form select:focus,
.zudio-form textarea:focus {
  border-color: #0073e6;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,115,230,0.2);
  outline: none;
}

/* Submit Button */
.zudio-form button,
.zudio-form input[type="submit"] {
  background: linear-gradient(135deg, #0073e6, #005bb5);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.zudio-form button:hover,
.zudio-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #005bb5, #004494);
  transform: translateY(-2px);
}

/* ========== CONTACT CARD COLUMN ========== */
.zudio-ctc-card {
  flex: 1 1 35%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.zudio-ctc-card:hover {
  transform: translateY(-4px);
}

/* Image Styling */
.zudio-ctc-card .zudio-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Content Styling */
.zudio-ctc-card .zudio-content {
  padding: 22px;
}

.zudio-ctc-card .zudio-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #222;
  border-left: 4px solid #0073e6;
  padding-left: 10px;
}

.zudio-ctc-card .zudio-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zudio-ctc-card .zudio-content ul li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #555;
}

.zudio-ctc-card .zudio-content ul li strong {
  color: #111;
}

.zudio-ctc-card .zudio-content ul li a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
}

.zudio-ctc-card .zudio-content ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .zudio-two-col {
    flex-direction: column;
  }
  .zudio-ctc-card .zudio-img img {
    height: 200px;
  }
}/* End custom CSS */