/* Project Sharing Styles */

/* Share Container Styles */
.share-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

/* Share Button Label */
.share-label {
  font-size: 0.9rem;
  color: #666;
}

/* Share Buttons */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.whatsapp {
  background-color: #25d366;
}

.share-btn.copy {
  background-color: #666;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.share-btn i {
  font-size: 1.2rem;
}

/* Copy Link Notification */
.project-link-copied {
  display: none;
  background-color: #4CAF50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  animation: fadeIn 0.3s ease-in-out;
}

/* Link copied notification */
.copy-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.copy-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Project Direct Link */
.project-direct-link {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #333;
  font-size: 14px;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.project-direct-link:hover {
  background: #e5e5e5;
}

.project-direct-link::after {
  content: "Click to copy";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  opacity: 0.7;
}

/* Project QR Code */
.project-qr-container {
  display: none;
  margin: 1rem 0;
  text-align: center;
}

.project-qr-container img {
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.project-qr {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.project-qr-container p {
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.qr-toggle {
  display: inline-block;
  padding: 8px 16px;
  background: #666;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.qr-toggle:hover {
  background: #555;
  transform: translateY(-1px);
}

/* Responsive adaptations */
@media (max-width: 767px) {
  .share-container {
    justify-content: center;
  }
  
  .project-direct-link {
    font-size: 12px;
  }
  
  .project-direct-link::after {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Skillbar Responsive Fix */
.skillbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  height: auto;
  min-height: 3.4rem;
}

.skillbar-title {
  position: static;
  flex: 1;
  min-width: 0;
  height: auto;
  font-size: 2rem;
  line-height: 1.3;
  padding-bottom: 1rem;
}

.skill-bar-percent {
  position: static;
  flex-shrink: 0;
  height: auto;
  font-size: 2rem;
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .skillbar-title,
  .skill-bar-percent {
    font-size: 1.6rem;
  }
}

/* Features Icons */
.features__image.fa {
  display: block;
  font-size: 7.5rem;
  line-height: 1;
  width: auto;
  height: auto;
}

@media (max-width: 575px) {
  .features__image.fa {
    font-size: 6rem;
  }
}

.features__image.whatsapp {
  color: #25d366;
}

.features__image.automation {
  color: #9854c5;
}

.features__image.wordpress {
  color: #21759b;
}

.features__image.ai {
  color: #7c3aed;
}

.features__image.chat {
  color: #4f9cf9;
}

.features__image.code {
  color: #0ea5a4;
}

/* Works - Clean Project Cards & Details */

.project-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 991px) {
  .project-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .project-links,
  .project-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .project-links .btn,
  .project-panel-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.project-gallery {
  display: block;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 2rem;
}

.demo-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.demo-list a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.demo-list small {
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.85em;
}

@media (max-width: 767px) {
  .demo-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Works - Portfolio Cards (Interest Select + Start Chatting) */

.interest-select {
  flex: 1;
  min-width: 180px;
  padding: 1.1rem 1.4rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-family: inherit;
  cursor: pointer;
}

.interest-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.shot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.shot-strip img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.btn-inline {
  display: inline-block;
  margin: 1rem 0 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1rem 0;
}

.store-links a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.store-links a:hover {
  text-decoration: underline;
}

.project-split .project-details {
  min-width: 0;
}

@media (max-width: 767px) {
  .interest-select {
    width: 100%;
  }
  .store-links {
    gap: 0.5rem 1rem;
  }
}

/* Works - Clean Professional Cards */

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.work-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 4, 38, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 4, 38, 0.14);
}

.work-card__media {
  position: relative;
  background: #0c0426;
}

.work-card__main {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-card__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: #0c0426;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}

.work-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.2rem;
}

.work-card__body h3 {
  color: #0c0426;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.work-card__sub {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.work-card__text {
  color: #555;
  line-height: 1.7;
}

.work-card__shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.6rem 0 1rem;
}

.work-card__shots--two {
  grid-template-columns: 1fr 1fr;
}

.work-card__shots img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.work-card__demo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  margin-top: 0.6rem;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.work-card__demo:hover {
  gap: 1rem;
}

.work-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.4rem;
}

.work-card__chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  color: #333;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.work-card__chips a:hover {
  background: #0c0426;
  border-color: #0c0426;
  color: #fff;
}

.work-card__actions {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  gap: 1rem;
}

.work-card__actions .interest-select {
  flex: 1;
  min-width: 0;
  padding: 1.1rem 1.4rem;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-family: inherit;
  cursor: pointer;
}

.work-card__actions .interest-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

@media (max-width: 767px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .work-card__actions {
    flex-direction: column;
  }
  .work-card__actions .interest-select,
  .work-card__actions .btn {
    width: 100%;
  }
  .work-card__actions .btn {
    text-align: center;
  }
  .work-card__shots--two {
    grid-template-columns: 1fr;
  }
}

/* Works - Full Width Project Blocks */

.project-full {
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-full:last-child {
  border-bottom: none;
}

.project-full__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 5%;
}

.project-full__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.project-full h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.project-full__sub {
  color: #c9b8ff;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.project-full__text {
  max-width: 75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.project-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 38vh, 420px);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 2rem;
}

.project-preview img {
  max-width: 100%;
  max-height: clamp(220px, 36vh, 400px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.project-extra {
  display: none;
}

.project-extra.open {
  display: block;
}

.project-extra h4 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.4rem 0 1.2rem;
}

.project-extra p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.project-features {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-features li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.project-full-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.8rem;
}

.project-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  color: #c9b8ff;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.project-demo:hover {
  gap: 1rem;
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.project-chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.project-chips a:hover {
  background: #fff;
  color: #0c0426;
  border-color: #fff;
}

.project-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
  align-items: center;
}

.project-full__actions .interest-select {
  flex: 1;
  min-width: 200px;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(12, 4, 38, 0.85);
  color: #fff;
  font-size: 1.4rem;
  font-family: inherit;
  cursor: pointer;
}

.project-full__actions .interest-select:focus {
  outline: none;
  border-color: #c9b8ff;
}

.project-full__actions .interest-select option {
  background: #0c0426;
  color: #fff;
}

@media (max-width: 767px) {
  .project-full__inner {
    padding: 3rem 5%;
  }
  .project-full h3 {
    font-size: 2.4rem;
  }
  .project-features {
    grid-template-columns: 1fr;
  }
  .project-preview {
    min-height: 0;
  }
  .project-preview img {
    max-height: 240px;
  }
  .project-full__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .project-full__actions .interest-select,
  .project-full__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Works - Clean Portfolio Showcase */

.work-showcase {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.work-showcase:last-child {
  border-bottom: none;
}

.work-showcase__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4.5rem 5%;
}

.work-showcase__badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #0c0426;
  color: #fff;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.work-showcase h3 {
  color: #0c0426;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.work-showcase__sub {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.work-showcase__text {
  max-width: 78rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.work-showcase__preview {
  display: block;
  position: relative;
  width: 100%;
  height: clamp(320px, 58vh, 480px);
  background: #1a1430;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.work-showcase__preview:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.work-showcase__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.work-showcase__preview:hover img {
  transform: scale(1.02);
}

.work-showcase__demo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.work-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.work-showcase__chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.work-showcase__chips a:hover {
  background: #0c0426;
  border-color: #0c0426;
  color: #fff;
}

.work-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  align-items: center;
}

.work-showcase__actions .interest-select {
  flex: 1;
  min-width: 200px;
  padding: 1.1rem 1.4rem;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-family: inherit;
  cursor: pointer;
}

.work-showcase__actions .interest-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Works - Video Player */

.work-showcase__video {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-player__video {
  width: 100%;
  max-height: 560px;
  display: block;
  background: #000;
}

.video-player__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  background: #0c0426;
}

.vp-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background 0.25s ease;
}

.vp-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.vp-time {
  color: #ccc;
  font-size: 1.3rem;
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.vp-speed {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 1.2rem;
  font-family: inherit;
  cursor: pointer;
}

.vp-speed option {
  background: #0c0426;
  color: #fff;
}

@media (max-width: 767px) {
  .work-showcase__inner {
    padding: 3rem 5%;
  }
  .work-showcase h3 {
    font-size: 2.2rem;
  }
  .work-showcase__preview {
    height: 260px;
  }
  .work-showcase__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .work-showcase__actions .interest-select,
  .work-showcase__actions .btn {
    width: 100%;
    text-align: center;
  }
  .vp-time {
    width: 100%;
    margin: 0.2rem 0;
  }
}

/* ====== Project Details Popup ====== */
.project-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #ffffff;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.project-popup.is-open {
  display: block;
}

.project-popup__close {
  position: fixed;
  top: 2.6rem;
  right: 6%;
  z-index: 10;
}

.project-popup__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 5.5rem 5% 5.5rem;
}

.project-popup__inner .work-showcase__badge {
  margin-bottom: 1.4rem;
}

.project-popup__inner h2 {
  color: #0c0426;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.project-popup__inner .work-showcase__sub {
  margin-bottom: 1rem;
}

.project-popup__inner .work-showcase__text {
  max-width: 820px;
}

.project-popup__demo {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--primary-color, #8a2be2);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-popup__demo:hover {
  color: #0c0426;
}

.project-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.project-popup__chips a {
  padding: 0.7rem 1.3rem;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  background: #fff;
  color: #333;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.project-popup__chips a:hover {
  background: #0c0426;
  border-color: #0c0426;
  color: #fff;
}

.project-popup__media-title {
  color: #0c0426;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 3.2rem 0 1.4rem;
}

.project-popup__shots img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid #ececec;
  background: #f2f2f2;
  box-shadow: 0 8px 24px rgba(12, 4, 38, 0.08);
  cursor: zoom-in;
}

/* ====== Popup Lightbox (fullscreen screenshot viewer) ====== */
.popup-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3100;
  background: rgba(8, 8, 12, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup-lightbox.is-open {
  display: flex;
}

.popup-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.6);
}

.popup-lightbox__close {
  position: fixed;
  top: 2.6rem;
  right: 6%;
  z-index: 10;
}

.popup-lightbox__nav {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease;
}

.popup-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.popup-lightbox__prev {
  left: 5%;
}

.popup-lightbox__next {
  right: 5%;
}

@media (max-width: 767px) {
  .popup-lightbox__close {
    top: 1.6rem;
    right: 5%;
  }
  .popup-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }
  .popup-lightbox__prev {
    left: 3%;
  }
  .popup-lightbox__next {
    right: 3%;
  }
}

.project-popup__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
  margin: 0 0 0.6rem;
  padding: 0;
}

.project-popup__features li {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: #333;
  font-size: 1.05rem;
}

.project-popup__features li::before {
  content: '\2713  ';
  color: var(--primary-color, #8a2be2);
  font-weight: 700;
}

.project-popup__actions {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.project-popup__actions .interest-select {
  flex: 1;
  min-width: 220px;
  padding: 1.1rem 1.4rem;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 1.4rem;
  font-family: inherit;
  cursor: pointer;
}

.project-popup__actions .interest-select:focus {
  outline: none;
  border-color: var(--primary-color, #8a2be2);
}

.project-popup .video-player {
  margin-bottom: 0.6rem;
}

@media (max-width: 767px) {
  .project-popup__close {
    top: 1.6rem;
    right: 5%;
  }
  .project-popup__inner {
    padding: 4.2rem 5% 4.5rem;
  }
  .project-popup__inner h2 {
    font-size: 2.4rem;
  }
  .project-popup__actions .interest-select,
  .project-popup__actions .btn {
    width: 100%;
    text-align: center;
  }
}