#contact-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #ddd;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  
}

.contact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eaeaea;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.contact-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 300px;
}

.map-overlay h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: bold;
  color: #2563eb;
}

.map-overlay p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* .info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
} */

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.info-card h4 {
  margin: 12px 0;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.info-card p {
  margin: 4px 0;
  color: #555;
  font-size: 14px;
}
