#project-contact {
  padding: 10px 5%;
  background-color: white;
}

.project-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: var(--card-spacing);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.project-contact-heading {
  text-align: center;
  margin-bottom: 40px;
}

.project-contact-heading h1 {
  word-wrap: break-word;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 15px;
}

.project-contact-heading p {
  color: var(--light-slate);
  max-width: 600px;
  margin: 0 auto;
}

.project-contact-content {
  display: flex;
  /* gap: 50px; */
}
.contact-info {
  flex: 1;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info img {
  background-color: #1e3a8a;
  height: 450px !important;
  width: 80%;
  /* height: auto; */
  border-radius: 12px;
  /* margin-bottom: 20px; */
}

.contact-method {
  margin-bottom: 25px;
}

.contact-method h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-method p {
  color: var(--light-slate);
}

.project-contact-form {
  flex: 1;
  padding:  20px;
}

.form-group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  float: left;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
  min-height: 30px !important;
  resize: vertical;
}

.submit-request-btn {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-request-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .project-contact-content {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
  }

  .project-contact-form {
    width: 100%;
  }
  .project-contact-heading h1{
    font-size: 26px;
  }
}
@media (max-width : 468px){
  .project-contact-container{
    padding: 10px 0 0 0 ;
  }
}
