/* Contact Section */

.contact-section {
  padding: 40px 20px;
  background-color: #2A2A2A;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.contact-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  background-color: #fff;
  width: 300px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-social a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: #25d366;
  /* WhatsApp green color */
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .contact-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .contact-card {
    width: 100%;
  }
}