.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-left: 5px;
  margin-right: 5px;
  padding: 30px;
  background: linear-gradient(to bottom, #800000, #ccc);
  color: #fff;
  clear: both;
  /* Ensures it goes below any floated elements */

  border-radius: 30px;
  /* 👈 sides rounded */
  overflow: hidden;
  /* 👈 background ko curve ke andar clip karega */
}

.contact-info {
  width: 40%;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #fff;
}

.contact-info p {
  line-height: 1.6;
}
.contact-info a {
  text-decoration: none;
  color: #fff;
}
.contact-info i,
.contact-form div > span {
  margin-left: 10px;
}
.contact-form {
  width: 40%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  color: #000;
  margin-left: -3%;
  /* 👈 form ko aur zyada left side par shift karega */
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 25px;
  background: #800000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #a90303;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 30px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-form {
    margin-top: 30px;
  }
}

.contact-info h3 i {
  margin-right: 10px;
  color: #800000;
}
