.main-container {
  min-height: 100vh;
}

.project-overview-section {
  padding: 5rem 0;
}

.project-title {
  color: var(--text-title);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.project-title .sun-icon {
  font-size:1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-color);
  margin-right:5px;
}

.content-text {
  color: var(--text-description);
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* RTL Support */

.arabic-version .sun-icon {
  margin-left: 0.75rem;
  margin-right: 0;
}



.video-player {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-lg);
  transition: transform 0.5s ease;
}

.video-player:hover {
  transform: scale(1.02);
}


.video-player:hover .video-thumbnail {
  transform: scale(1.05);
}



.video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.video-player:hover .video-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.play-button {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-player:hover .play-button {
  transform: scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 1rem solid var(--primary-color);
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
}


.sound-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.fancybox__content {
    width: 100% !important;
    height: 100% !important;
}
