/* 📞 Contact Section */
.contact-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 30px 20px;
  font-family: "Exo 2", sans-serif;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-intro {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* responsive */
  text-align: left;
}

.contact-info,
.contact-social {
  flex: 1;
  min-width: 280px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-info h3,
.contact-social h3 {
  margin-bottom: 15px;
  color: #0077cc;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
  color: #333;
}

.contact-social ul {
  list-style: none;
  padding: 0;
}

.contact-social li {
  margin-bottom: 12px;
}

.contact-social a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #48aef8;
  transition: color 0.2s;
}

.contact-social a:hover {
  color: #1f3fe3;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-social {
    width: 100%;
    max-width: 500px;
  }
}


.contact-section img {
  width: 100%;          /* Make it span full width */
  height: auto;         /* Keep aspect ratio */
  max-height: 300px;    /* Optional: limit height */
  object-fit: cover;    /* Crop nicely if too tall */
  border-radius: 10px;  /* Optional: rounded corners */
  margin-bottom: 20px;  /* Space below the banner */
  display: block;
}


.contact-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social li {
  margin-bottom: 12px;
}

.contact-social a {
  display: flex;
  align-items: center;   /* align icon + text vertically */
  gap: 10px;             /* spacing between icon and text */
  text-decoration: none;
  font-size: 1.2rem;
  color: #0077cc;
  transition: color 0.2s;
}

.contact-social a:hover {
  color: #005fa3;
}

/* Your custom icons */
.contact-social img {
  width: 30px;      /* adjust size */
  object-fit: contain;
  border-radius: 6px; /* optional: rounded look */
}
