body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: gold;
  color: #333;
}

header {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

h2 {
  border-bottom: 2px solid #00b4d8;
  padding-bottom: 0.5rem;
}

.justified {
  text-align: justify;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.project-card:hover {
  transform: scale(1.03);
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-height: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.project-card h3 {
  margin-top: 0;
}

.project-card p {
  flex-grow: 1;
}

.project-card a {
  margin-top: 1rem;
  display: inline-block;
  font-weight: bold;
  color: #0077b6;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #0077b6;
  color: white;
  margin-top: 2rem;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}


.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.button-blue-gradient {
  margin-top: 1rem;
  margin-left: 5%;
  margin-right: 5%;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.button-blue-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

.about-right {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left {
    flex: none;
  }

  .about-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}