/* Project Filter Section */
.project-filter-section {
  padding: 60px 0 40px;
  background: var(--dark-bg);
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.filter-group h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.filter-btn,
.status-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 193, 7, 0.2);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

.filter-btn:hover,
.status-btn:hover {
  border-color: var(--primary-color);
  background: rgba(255, 193, 7, 0.1);
}

.filter-btn.active,
.status-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

/* Featured Projects Section */
.featured-projects-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.featured-project-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.featured-project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(255, 193, 7, 0.3);
  border-color: var(--primary-color);
}

.featured-project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.project-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-badge,
.status-badge {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-badge {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.status-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-bg);
}

.status-ongoing {
  background: rgba(76, 175, 80, 0.95);
  color: white;
}

.status-completed {
  background: rgba(33, 150, 243, 0.95);
  color: white;
}

.status-upcoming {
  background: rgba(255, 152, 0, 0.95);
  color: white;
}

.featured-project-content {
  padding: 30px;
}

.featured-project-content h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-project-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
}

.meta-item .icon {
  font-size: 18px;
}

/* Projects Grid Section */
.projects-grid-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
  border-color: var(--primary-color);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.project-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.project-content {
  padding: 25px;
}

.category-tag {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.project-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.project-content p {
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.project-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 18px;
}

.stat-value {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}

.view-project-btn {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.view-project-btn:hover {
  gap: 8px;
  padding-left: 5px;
}

/* Project CTA Section */
.project-cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.15) 0%,
    rgba(255, 193, 7, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.project-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content-center h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content-center p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .featured-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .filter-buttons {
    justify-content: center;
  }

  .featured-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .filter-btn,
  .status-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
