/* Project Image Section */
.portfolio-image-full {
  width: 100%;
  margin: 0 auto;
}

.portfolio-image-full img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 1;
  filter: none;
  display: block;
}

/* Project Details Section */
.project-details-section {
  width: 100%;
  padding: 0;
}

.project-details-container {
  width: 100%;
  padding: 100px 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
}

.project-details-content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.project-overview {
  width: 100%;
  text-align: center;
}

.project-title {
  margin-bottom: 30px;
  text-align: center;
}

.project-short-description {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

.project-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

.project-category-badge {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.category-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

.category-item span {
  font-weight: 500;
}

/* Service Icon Image Support */
.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 968px) {
  .project-details-container {
    padding: 60px 30px;
  }
  
  #details .about > div {
    padding: 60px 30px !important;
  }
  #details .about > div > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #details .about-stats-wrapper {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 640px) {
  .project-details-container {
    padding: 40px 1rem;
  }
  
  #details .about > div {
    padding: 40px 1rem !important;
  }
}

@media (max-width: 480px) {
  .project-details-container {
    padding: 30px 0.75rem;
  }
  
  #details .about > div {
    padding: 30px 0.75rem !important;
  }
}