/* CTA Section */
.cta {
  background: #e5e6e9;;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta h2 span {
  color: #38bdf8;
}
.cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 50px;
  opacity: 0.9;
  color: black;
}

/* Contact Row */
.contact-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* makes it responsive */
}

.contact-card {
  background: #ffffff;
  color: #111827;
  border-radius: 14px;
  padding: 25px 20px;
  flex: 1 1 280px; /* equal widths but flexible */
  max-width: 320px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #2563eb;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-card span {
  display: block;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Social Section */
.social-section {
  margin-top: 50px;
}

.social-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-link {
  background: #ffffff;
  color: #111827;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.social-link i {
  font-size: 1.2rem;
  color: #2563eb;
}

.social-link:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-3px);
}
.social-link:hover i {
  color: #fff;
}
