

.contact-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  min-width: 250px;
}

.contact-box i {
  font-size: 40px;
  color: #6a1b9a; /* Purple */
  margin-bottom: 10px;
}

.contact-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.contact-box a  {
  color: #080808;
  text-decoration: none;
}

.contact-box p  {
  color: #080808;
  text-decoration: none;
}

.contact-box p a:hover {
  color: #6a1b9a; /* Purple hover */
}

.contact-main {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form, .contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #6a1b9a; /* Purple heading */
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f3e5f5; /* Light purple background */
}

.contact-form form button {
  width: 100%;
  padding: 12px;
  background: #6a1b9a; /* Purple button */
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form form button:hover {
  background: #4a148c; /* Dark purple on hover */
}

.contact-map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-box:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-box:hover i {
  color: #ff5722;
}