html {
  scroll-behavior: smooth;
}

/* Hero Section Gradient */
.hero-section {
  background: linear-gradient(to right, #1e3a8a, #6d28d9, #db2777);
}

/* Profile Image Styling */
.profile-img {
  width: 16rem;
  border-radius: 9999px;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.profile-img:hover {
  transform: scale(1.05);
}

/* About Section */
.about-img {
  width: 14rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}
.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.section-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1f2937;
  border-bottom: 4px solid #3b82f6;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: #facc15;
  color: #1f2937;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #fde047;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.btn-gradient:hover {
  background: linear-gradient(to right, #2563eb, #7e22ce);
}
