body {
  font-family: 'Poppins', sans-serif;
}

.project-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.project-card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

#projects h2 {
  position: relative;
}

#projects h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin: 0.5rem auto 0;
}
.modern-btn {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.modern-btn:hover {
  background: linear-gradient(135deg, #0069d9, #0099cc);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.modern-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
}
.contact-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  color: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-section p {
  color: #ccc;
  max-width: 500px;
  margin: 0 auto 25px auto;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn i {
  font-size: 1.2em;
}

/* Button Colors */
.email { background: #ea4335; }     /* Gmail red */
.github { background: #333; }       /* GitHub dark gray */
.linkedin { background: #0077b5; }  /* LinkedIn blue */

.social-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


