.enroll-btn .elementor-button {
    background-color: #eeeee2 !important;
    border: 3px solid #7f947b !important;
    color: #7f947b !important;
    font-family: "Safira March", sans-serif;
    position: relative;
    overflow: hidden;
}

.enroll-btn .elementor-button:after {
    content: '';
    position: absolute;
    bottom: 12px;           /* line ki height adjust karo */
    left: 20%;
    width: 60%;
    height: 3px;            /* line ki thickness */
    background-color: #7f947b;
}

/* Simple & Working Double Stroke Text */
.double-stroke .elementor-heading-title {
    font-family: "Safira March", sans-serif !important;
    font-size: 48px !important;        /* size yahan se badhao */
    font-weight: 700 !important;
    color: #7f947b !important;         /* main dark green color */
    
    -webkit-text-stroke: 4px #eeeee2;  /* light cream outer stroke */
    text-stroke: 4px #eeeee2;
    
    paint-order: stroke fill;
}

/* Extra dark outline ke liye (double effect) */
.double-stroke .elementor-heading-title {
    text-shadow: 
        -3px -3px 0 #7f947b,
         3px -3px 0 #7f947b,
        -3px  3px 0 #7f947b,
         3px  3px 0 #7f947b;
}


.event-left, .event-right {
    background-color: #b6c6b3 !important;
    padding: 40px 35px !important;
    color: #ffffff !important;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%) !important;
}


.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-col {
  width: 50%;
}

.form-full {
  width: 100%;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #b6c6b3;
  border-radius: 6px;
}

.wpcf7 textarea {
  height: 130px;
}

.wpcf7 input[type="submit"] {
  background: #7f947b;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
}

.wpcf7 input[type="submit"]:hover {
  background: #6e846a;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-col {
    width: 100%;
  }
}

