.story-container h2 {
  color: transparent;
  background: linear-gradient(90deg, #1a4fff 10%, #00ffc6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
/* Custom bullets for About section */
.custom-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
.custom-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.1em;
}
.custom-bullets .bullet-icon {
  color: #2e7dff;
  font-size: 1.2em;
  margin-right: 0.8em;
  margin-top: 0.2em;
  flex-shrink: 0;
}
.custom-bullets .bullet-content {
  flex: 1;
  font-size: 1.05em;
  line-height: 1.5;
}
.story {
  color: #ddd;
  padding: 5rem 8%;
  line-height: 1.9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.story-container {
  max-width: 900px;
  margin: 0 auto;
}

.story h2 {
  font-size: 2.5rem;
  margin-top: 2.5rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.story p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 300;
}

/* LinkedIn & Resume link buttons */
.about-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  min-width: 120px;
}

.about-link-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.linkedin-btn {
  background: #0a66c2;
  color: #fff;
}

.resume-btn {
  background: transparent;
  color: #00ffc6;
  border: 1.5px solid #00ffc6;
}

.email-btn {
  background: transparent;
  color: #a78bfa;
  border: 1.5px solid #a78bfa;
}

@media (max-width: 600px) {
  .about-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-link-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

