.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  color: #333;
  padding: 30px 5%;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;

}

.contact-item i {
  /* background-color: #28a745;   green background */
  color: #fff;                 /* white icon */
  font-size: 1.3rem;
}
.contact-item .icon-cont{
    width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #008080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item span {
  font-size: 1rem;
  font-weight: 500;
}





.project-form {
  /* max-width: ; */
  width: 100%;
  height: max-content;
  margin: 0 auto;
  padding:20px 5%;
  background: #f9f9f9;
  border-radius: 8px;
}

.project-form h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size:2.3rem ;
}

.project-form p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #008080;
  border-radius: 5px;
  font-size: 1rem;
}

.budget-options {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
}

.budget-choice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.budget-choice input[type="radio"] {
  display: none; /* hide default radio */
}

.budget-choice label {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.budget-choice input[type="radio"]:checked + label {
  background-color: #008080;
  color: #fff;
  border-color: #008080;
}

.submit-btn {
  background-color: #008080;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #006666;
}





