* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: url('images bg.png') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.section-title {
  text-align: center;
  margin: 5rem 1rem 3rem;
}
.section-title h1 {
  font-size: 3rem;
  text-shadow: 0 0 15px #fff;
}
.section-title p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.3rem;
  color: #ccc;
}

/* Project Cards */
.project-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.project-card {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ffffff25;
  box-shadow: 0 0 25px 5px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.015);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.project-img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.project-content {
  padding: 2rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

.project-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  text-align: justify;
  line-height: 1.6;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.badges span {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 10px #ffffff10;
}

/* Buttons */
.explore-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ffffff30;
  text-align: center;
}

.explore-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  box-shadow: 0 0 20px #ffffff70;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-card {
    flex-direction: column;
  }

  .project-img,
  .project-content {
    width: 100%;
  }

  .project-img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .section-title h1 {
    font-size: 2.2rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .project-content h2 {
    font-size: 1.5rem;
  }

  .project-content p {
    font-size: 1rem;
  }

  .badges span {
    font-size: 0.85rem;
  }

  .explore-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}