.project-details-section {
  padding-top: var(--main-padding-top);
  padding-bottom: var(--main-padding-bottom);
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.details-container {
  display: flex;
  gap: 40px;
  flex-direction: row;
}
.details-image-side {
  flex: 1.2;
}
.details-info-side {
  flex: 1;
}
.main-project-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.3);
  border: 1px solid rgba(108, 92, 231, 0.5);
  margin-bottom: 20px;
}
.project-gallery-thumbs {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.project-gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border: 2px solid transparent;
}
.project-gallery-thumbs img:hover,
.project-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--main-color);
  transform: translateY(-3.1px);
}
.project-title-header h1 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}
.project-desc-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(108, 92, 231, 0.2);
  margin-bottom: 30px;
}
.project-desc-box p {
  color: #b6b8d6;
  line-height: 2;
  font-size: 16px;
}
.access-card {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(30, 30, 60, 0.8) 100%);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(108, 92, 231, 0.4);
  margin-bottom: 30px;
}
.access-card h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
}
.access-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #fff;
}
.access-item i {
  color: var(--main-color);
  font-size: 20px;
}
.copy-btn {
  background: rgba(108, 92, 231, 0.2);
  border: 1px solid rgba(108, 92, 231, 0.5);
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  margin-right: auto;
  transition: 0.3s;
}
.copy-btn:hover {
  background: var(--main-color);
}
.project-actions-btns {
  display: flex;
  gap: 15px;
}
.action-btn {
  flex: 1;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.action-btn.main {
  background: var(--main-color);
  color: white;
}
.action-btn.outline {
  border: 2px solid var(--main-color);
  color: var(--main-color);
}
.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: bold;
  transition: 0.3s;
}
.back-link:hover {
  transform: translateX(10px);
}
@media (max-width: 991px) {
  .details-container {
    flex-direction: column;
  }
}
