/* ============================================
   PROJECT PAGE SPECIFIC STYLES
============================================ */

.domain-hero {
  background: linear-gradient(135deg, #3a0ca3, #7209b7);
  padding: 5em 2em 3em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.domain-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.hero-icon {
  font-size: 4em;
  margin-bottom: 0.3em;
  position: relative;
  z-index: 1;
}

.domain-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  margin-bottom: 0.3em;
}

.domain-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 1em auto 2em;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.back-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 0.7em 1.5em;
  border: 2px solid #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.back-btn:hover {
  background: #fff;
  color: #3a0ca3;
  transform: translateY(-2px);
}

/* ============================================
   TECHNOLOGIES SECTION
============================================ */
.technologies {
  padding: 4em 2em;
  background: var(--bg-card);
}

.technologies h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1.5em;
  color: var(--primary-color);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;
}

.tech-tag {
  background: var(--bg-lighter);
  padding: 0.7em 1.3em;
  border-radius: 25px;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-tag:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* ============================================
   PROJECTS SHOWCASE
============================================ */
.projects-showcase {
  padding: 4em 2em;
  background: var(--bg-dark);
}

.projects-showcase h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 2em;
  color: var(--primary-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.project-card {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 2em;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 37, 133, 0.1), transparent);
  transition: left 0.5s ease;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  gap: 1em;
}

.project-header h3 {
  font-size: 1.3em;
  color: var(--text-light);
  flex: 1;
}

.project-status {
  background: var(--primary-color);
  padding: 0.3em 0.8em;
  border-radius: 12px;
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
}

.project-description {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5em;
  font-size: 0.95em;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1.5em;
}

.project-tech span {
  background: var(--bg-lighter);
  padding: 0.4em 0.9em;
  border-radius: 15px;
  font-size: 0.85em;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.project-tech span:hover {
  background: var(--accent-color);
  color: var(--text-light);
}

.project-links {
  display: flex;
  gap: 1em;
}

.link-btn {
  flex: 1;
  text-align: center;
  padding: 0.7em;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.link-btn:hover {
  background: #d01d6d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--bg-card);
  padding: 5em 2em;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0.5em;
  font-size: 2em;
  color: var(--text-light);
}

.cta-section p {
  color: var(--text-gray);
  margin-bottom: 2em;
  font-size: 1.1em;
}

/* ============================================
   RESPONSIVE DESIGN FOR PROJECT PAGES
============================================ */
@media (max-width: 768px) {
  .domain-hero {
    padding: 4em 1em 2em;
  }
  
  .hero-icon {
    font-size: 3em;
  }
  
  .domain-hero h1 {
    font-size: 1.8em;
  }
  
  .domain-description {
    font-size: 1em;
  }
  
  .technologies, .projects-showcase, .cta-section {
    padding: 3em 1em;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .project-status {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-icon {
    font-size: 2.5em;
  }
  
  .domain-hero h1 {
    font-size: 1.5em;
  }
  
  .project-links {
    flex-direction: column;
  }
  
  .link-btn {
    width: 100%;
  }
}

// ...existing code...

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

// ...existing code...