body {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
}

h1{
  font-weight: 600;
  margin: 0;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}




#projects {
  text-align: center;
  margin: 60px 0 20px;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 2rem;
  color: #222;
  width: 70%;
  margin-left: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.project-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: #f9f9f9;
}

.project-card h3 {
  margin: 12px 0 6px;
  font-size: 1.25rem;
}

.project-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.project-card a {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #0077ff, #00ccff);
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.3s ease;
}

.project-card a:hover {
  background: linear-gradient(90deg, #005ecc, #0099cc);
  transform: translateY(-2px);
}

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






