.contact-wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info,
.contact-form {
  flex: 1 1 48%;
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.contact-item i {
  font-size: 2rem;
  color: #ff7b00;
}

.contact-item h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #222;
}

.contact-item p {
  margin: 5px 0 0;
  color: #555;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #222;
}

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

.contact-form input,
.contact-form textarea {
  flex: 1 1 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  background-color: white; /* 👈 Add this line */
  transition: 0.3s ease;
}



.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 5px rgba(255, 123, 0, 0.2);
}

.contact-submit-btn {
  background-color: #ff7b00;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #e66f00;
}

.form-message {
  margin-top: 10px;
  color: green;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

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
















 .confirmation-box {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #e6f9f1;
  border-left: 6px solid #2ecc71;
  color: #2c3e50;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 9999;
  font-family: Arial, sans-serif;
  max-width: 300px;
  animation: fadeIn 0.5s ease;
}

.confirmation-box p {
  margin: 0;
  font-size: 14px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; top: 0px; }
  to { opacity: 1; top: 20px; }
}

@keyframes fadeOut {
  from { opacity: 1; top: 20px; }
  to { opacity: 0; top: 0px; }
}
