/* Projects */
.project-item {
  margin-bottom: 30px;
}

.project-item h3 {
  font-size: 1.4em;
  color: #e63946;
}

.featured-projects a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #333;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.featured-projects a:hover {
  color: #555;
  border-color: #555;
}
.portfolio-section h3 {
  color: #80caff;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  margin: 0;
  color: #333;
}

h1,
h2 {
  text-align: center;
}
header h1 {
  font-size: 1.8rem;
  color: #2196f3;
}
.intro-summary {
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  max-width: 800px;
  background: #333;
  border-left: 4px solid #0077cc;
  border-radius: 6px;
  color: #2196f3;
  ul {
    list-style-type: none;
  }
}
.intro-summary h3 {
  margin-top: 0;
}

.section {
  margin: 3rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 6px 1px rgba(33, 150, 243, 0.2); /* Light blue shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px 2px rgba(33, 150, 243, 0.3);
}

.project-card a {
  text-decoration: none;
  color: #2196f3;
  font-weight: bold;
}

.project-card p {
  font-size: 0.9rem;
  color: #555;
}
