.heading-with-line {
  display: flex;
  align-items: center;   /* keeps line and text aligned */
  gap: 10px;             /* space between line and text */
  padding:10px 0px;
}

.heading-with-line .line {
  width: 60px;           /* line length */
  height: 2px;           /* line thickness */
  background-color: #000; /* line color */
  font-weight:bold;
}

.heading-with-line h5 {
font-size: 25px;
font-weight:bold;
}
.aboutbox
{
    background-color: #efefef;
    border-radius: 50px;
    /* margin: 20px; */
    padding: 35px;
}

.custom-box {
  background-color: #DCDDDB;   /* background color */
  border-top-left-radius: 12px;  /* round top-left corner */
  border-top-right-radius: 12px; /* round top-right corner */
  border-bottom-left-radius: 0;  /* keep bottom corners square */
  border-bottom-right-radius: 0;
  padding: 20px;                /* optional spacing inside */
}

.partner-box {
    border: 1px solid #000;
    margin: 10px;
    padding: 10px;
}

.tick-div > div {
  position: relative;
  padding-left: 24px; /* space for tick */
}

.tick-div > div {
margin-top:30px;
  position: relative;
  padding-left: 28px; /* space for tick */
}

.tick-div > div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;              /* aligns with top of the block */
  color: #ff6b35 !important; /* force orange shade */
  font-size: 1.6em;    /* adjust to match heading size */
  line-height: 1;      /* keeps it tight */
}
.div-line {
	border-bottom: #ff6b35 2px solid;
    padding-top: 20px;
}

form {
      max-width: 400px;
      margin: 20px auto;
      font-family: Arial, sans-serif;
    }
    label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
    }
    input, textarea {
      width: 100%;
      padding: 8px;
      margin-bottom: 6px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .error {
  display: none;       /* hidden by default */
  color: red;
  font-size: 0.9em;
  margin-top: 4px;     /* space below input */
  margin-bottom: 12px; /* space before next row */
}
    }
    button {
      padding: 8px 16px;
      background: #ff6b35;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }