/* Enhanced Projects Page Styles */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-color: #00eaff;
  --accent-secondary: #0099cc;
  --text-primary: #ffffff;
  --text-secondary: #b8c1ec;
  --text-muted: #8892b0;
  --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-accent: linear-gradient(135deg, #00eaff 0%, #0099cc 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 60px rgba(0, 234, 255, 0.2);
  --shadow-intense: 0 25px 80px rgba(0, 234, 255, 0.3);
  --border-radius: 20px;
  --border-radius-small: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Projects Container */
.projects-container {
  min-height: 100vh;
  background: var(--gradient-primary);
  padding-top: 90px;
  padding-bottom: 80px;
  overflow-x: hidden;
  position: relative;
}

/* Background Elements */
.header-background,
.detail-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

/* Projects Header */
.projects-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.projects-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.1;
  position: relative;
}

.projects-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.projects-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: glow 3s ease-in-out infinite alternate;
}

.projects-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Projects Stats */
.projects-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  animation: slideInUp 1s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 234, 255, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Projects Grid */
.projects-grid { 
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); 
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Project Card */
.project-card { 
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.project-card:hover::before {
  opacity: 0.05;
}

.project-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-intense);
  border-color: rgba(0, 234, 255, 0.4);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  filter: blur(8px);
}

.project-card:hover .card-glow {
  opacity: 0.3;
}

/* Project Image */
.project-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7) saturate(1.2);
}

.project-placeholder {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--primary-color);
  gap: 15px;
}

.project-icon {
  font-size: 3.5rem;
}

.placeholder-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(0, 234, 255, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.project-card:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.overlay-buttons {
  display: flex;
  gap: 15px;
}

.overlay-btn {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.overlay-btn:hover {
  background: var(--gradient-accent);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
}

/* Project Content */
.project-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.project-content h3 {
  margin: 0;
  flex: 1;
}

.project-content h3 a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.project-content h3 a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.project-content h3 a:hover::after {
  width: 100%;
}

.project-content h3 a:hover {
  color: var(--accent-color);
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 15px;
}

/* Tech Stack */
.tech-stack-wrapper {
  margin: 10px 0;
}

.stack { 
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.tech-badge {
  background: rgba(0, 234, 255, 0.15);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 234, 255, 0.3);
  transition: var(--transition-fast);
}

.tech-badge:hover {
  background: rgba(0, 234, 255, 0.25);
  transform: translateY(-2px);
}

.more-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Project Description */
.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

/* Project Footer */
.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-links {
  display: flex;
  gap: 12px;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-link:hover {
  background: var(--gradient-accent);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 234, 255, 0.3);
}

.view-details-btn {
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-details-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 234, 255, 0.4);
}

.view-details-btn i {
  transition: var(--transition);
}

.view-details-btn:hover i {
  transform: translateX(5px);
}

/* PROJECT DETAIL PAGE STYLES */

.project-detail-container {
  min-height: 100vh;
  background: var(--gradient-primary);
  padding-top: 90px;
  padding-bottom: 80px;
  position: relative;
}

/* Back Navigation */
.back-navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  position: relative;
  z-index: 2;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 15px 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.back-btn:hover {
  color: var(--accent-color);
  background: rgba(0, 234, 255, 0.1);
  border-color: rgba(0, 234, 255, 0.3);
  transform: translateX(-8px);
  box-shadow: 0 5px 20px rgba(0, 234, 255, 0.2);
}

/* Project Detail */
.project-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Project Badge */
.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.project-detail-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out;
}

.project-detail h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-meta-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.status-live {
  color: #00ff88;
}

.status-live i {
  animation: pulse 1.5s infinite;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  margin-bottom: 60px;
  animation: slideInUp 1s ease-out 0.3s both;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-intense);
}

.project-detail .hero { 
  width: 100%; 
  max-height: 600px; 
  object-fit: cover;
  display: block;
}

.image-border {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0.6;
  filter: blur(10px);
}

.hero-actions {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
}

.hero-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(15px);
}

.hero-action-btn.primary {
  background: var(--gradient-accent);
  color: var(--primary-color);
}

.hero-action-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-action-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 234, 255, 0.3);
}

/* Project Detail Content */
.project-detail-content {
  display: grid;
  gap: 50px;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.section-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.section-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.section-line {
  flex: 1;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

/* Content Sections */
.tech-section,
.description-section,
.links-section,
.project-stats-section {
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInUp 1s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
}

.tech-section::before,
.description-section::before,
.links-section::before,
.project-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.tech-section { animation-delay: 0.4s; }
.description-section { animation-delay: 0.6s; }
.links-section { animation-delay: 0.8s; }
.project-stats-section { animation-delay: 1s; }

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.tech-item:hover {
  background: rgba(0, 234, 255, 0.1);
  border-color: rgba(0, 234, 255, 0.3);
  transform: translateY(-3px);
}

.tech-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.tech-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Description Content */
.description-content {
  margin-bottom: 30px;
}

.desc {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Project Features */
.project-features h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-features h4 i {
  color: var(--accent-color);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 8px 0;
}

.features-list i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

.link-card:hover::before {
  opacity: 0.05;
}

.link-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 234, 255, 0.4);
}

.link-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.link-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.link-card-content h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.link-card-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 5px;
}

.link-url {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.link-arrow {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.link-card:hover .link-arrow {
  transform: translateX(8px) scale(1.2);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-small);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Pagination */
.pagination-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.pagination-container {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(0, 234, 255, 0.8), 0 0 40px rgba(0, 234, 255, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-container,
  .project-detail-container {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .projects-title,
  .project-detail h1 {
    font-size: 2.8rem;
  }

  .projects-stats {
    gap: 20px;
  }

  .stat-item {
    padding: 15px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .project-content {
    padding: 25px;
    gap: 15px;
  }

  .project-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .project-links {
    justify-content: center;
  }

  .hero-actions {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .tech-section,
  .description-section,
  .links-section,
  .project-stats-section {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .projects-title,
  .project-detail h1 {
    font-size: 2.2rem;
  }

  .project-image,
  .project-placeholder {
    height: 200px;
  }

  .overlay-content h4 {
    font-size: 1.2rem;
  }

  .overlay-buttons {
    gap: 10px;
  }

  .overlay-btn {
    width: 50px;
    height: 50px;
  }

  .section-header h3 {
    font-size: 1.4rem;
  }

  .tech-item {
    padding: 15px;
    gap: 12px;
  }

  .link-card {
    gap: 20px;
    padding: 25px 20px;
  }

  .link-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .projects-container,
  .project-detail-container {
    padding-top: 75px;
  }

  .projects-stats {
    flex-direction: column;
    align-items: center;
  }

  .project-content {
    padding: 20px;
  }

  .tech-section,
  .description-section,
  .links-section,
  .project-stats-section {
    padding: 25px 15px;
  }

  .back-btn {
    padding: 12px 20px;
  }

  .hero-action-btn {
    padding: 12px 20px;
  }
}
