.project-main {
  margin-top: 100px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

.project-hero {
  text-align: center;
  padding: 60px 20px 60px;
  position: relative;
  overflow: hidden;
}

.project-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C300,300 700,0 1000,100 L1000,300 L0,300 Z" fill="%2327aae1" opacity="0.08"/></svg>') center/cover no-repeat;
  z-index: 0;
}

.project-hero h1 {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(90deg, #262262 0%, #27aae1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.project-hero .hero-subtitle {
  font-size: 20px;
  color: #555;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* No Projects Message */
.project-listings {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.no-projects-message {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.no-projects-message h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.no-projects-message p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}

/* Future project grid & cards (ready for when you add real projects) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(38, 34, 98, 0.1);
  border: 1px solid rgba(39, 170, 225, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #27aae1, #262262);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(38, 34, 98, 0.18);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .project-hero h1 {
    font-size: 52px;
  }
  .project-hero .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 60px 20px 50px;
  }
  .project-hero h1 {
    font-size: 44px;
  }
  .project-hero .hero-subtitle {
    font-size: 17px;
  }
  .project-listings {
    padding: 60px 20px;
  }
  .no-projects-message h2 {
    font-size: 2.2rem;
  }
  .no-projects-message p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .project-hero {
    padding: 50px 20px 40px;
  }
  .project-hero h1 {
    font-size: 36px;
  }
  .project-hero .hero-subtitle {
    font-size: 16px;
  }
  .no-projects-message {
    padding: 30px 15px;
  }
  .no-projects-message h2 {
    font-size: 1.9rem;
  }
  .no-projects-message p {
    font-size: 1rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-card {
    padding: 30px 24px;
  }
}