/* Contact Section Styling */
.contact-section {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: 60px auto;
  font-family: 'Poppins', sans-serif;
}

/* Headings */
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Paragraphs */
.contact-section p {
  font-size: 1.1rem;
  margin: 8px 0 20px;
  opacity: 0.9;
}

/* Email Button */
.email-btn {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.social-links {
  margin-top: 25px;
}

.social-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .email-btn {
    padding: 10px 25px;
  }
}

