/* Circular Image */
.premium-image img {
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Orange Curve Shape */
.premium-image::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #f97316;
    border-radius: 60% 40% 50% 70%;
    top: -20px;
    left: -20px;
    z-index: 1;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Small Label */
.small-label {
    color: #f97316;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Main Heading */
.main-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

/* Icon Box Styling */
.elementor-icon-box-icon {
    color: #f97316;
}

/* Spacing */
.elementor-widget {
    margin-bottom: 20px;
}


/* Contact Form 7 fancy submit button */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  background: linear-gradient(135deg, #0b6f98, #0a5f85);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 34px;
  min-width: 320px; /* button wide feel */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(10, 95, 133, 0.28);
}

/* Hover effect */
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 95, 133, 0.38);
  background: linear-gradient(135deg, #0c7aa8, #0b6f98);
}

/* Click effect */
.wpcf7-form input[type="submit"]:active,
.wpcf7-submit:active {
  transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .wpcf7-form input[type="submit"],
  .wpcf7-submit {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 14px 20px;
  }
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col label {
  flex: 1 1 calc(50% - 8px);
  margin: 0;
}

.two-col .wpcf7-form-control {
  width: 100%;
}

/* Mobile pe stack ho jayega */
@media (max-width: 767px) {
  .two-col label {
    flex: 1 1 100%;
  }
}

.wpcf7-form textarea {
  height: 120px;      /* apne हिसाब se 90/100/120 */
  resize: vertical;   /* user ko sirf up-down resize allowed */
}

/* Sticky header */
.my-sticky-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  transition: all .3s ease;
}

/* WP admin bar offset */
body.admin-bar .my-sticky-header{
  top: 32px;
}
@media (max-width: 782px){
  body.admin-bar .my-sticky-header{
    top: 46px;
  }
}

/* Page content push down */
body{
  padding-top: var(--sticky-h, 90px);
}

/* checkbox ke baad space */
.wpcf7-form .submit-wrap {
  margin-top: 24px; /* 16, 20, 24 as needed */
}