/* General Styles */
.video-editing-page {
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.hero-section {
  position: relative;
  padding: 5rem 2rem;
  background: url("/images/Coverphotos.png") center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  color: white;
}

/* Row should be properly centered */
.hero-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Left Side - Service Description */
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Ensure subtext is properly centered */
.hero-section .sub-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 90%;
  margin-top: 0.5rem;
}

/* Right Side - Quotation Form */
.quote-box {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  text-align: center;
  background: rgba( 48, 48, 48, 0.25 );
box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}

/* Quote Form Title */
.quote-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF007F;
  margin-bottom: 1rem;
}

/* Form Fields */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Labels */
.quote-form label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 4px;
  text-align: left;
}

/* Form Inputs */
.quote-form .form-group {
  margin: 0;
}

.quote-form .form-control {
  width: 100%;
  padding: 8px;
  border: 1px solid #ffffff;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  background: none;
  color: white;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Smaller Textarea */
.quote-form textarea {
  resize: none;
}

/* Submit Button */
.quote-form .form-button {
  background: #FF007F;
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.quote-form .form-button:hover {
  background: white;
  color: #101010;
}

/* CAPTCHA Section */
.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.captcha-container label {
  font-size: 0.9rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
      padding: 4rem 2rem;
  }

  .hero-section .row {
      flex-direction: column;
      text-align: center;
  }

  .quote-box {
      max-width: 100%;
  }

  .hero-section .sub-text {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2rem;
  }

  .hero-section .sub-text {
      font-size: 1rem;
  }

  .quote-form label {
      font-size: 0.8rem;
  }

  .quote-form .form-control {
      font-size: 0.9rem;
      padding: 8px;
  }

  .quote-form .form-button {
      padding: 8px 12px;
      font-size: 0.9rem;
  }
}


.glow-text {
  font-size: 3rem;

  text-transform: uppercase;
  color: #FF007F;
  text-shadow: 0 0 20px #FF007F, 0 0 40px rgba(255, 0, 127, 0.3);
}

.highlight {
  color: #ffffff;
  text-shadow: none;
}

.sub-text {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.cta-button {
  background: #101010;
  color: #FF007F;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 200;
  transition: 0.3s;
}

.cta-button:hover {
  background: white;
  color: #101010;
}

/* Service Offerings */
.service-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.service-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  width: 30%;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
  text-align: center;
}

.service-card video {
  width: 50%;
  max-height: 220px;
  object-fit: contain;
}

.service-card h3 {
  margin-top: 1rem;
  color: #FF007F;
}

.service-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  margin: 6rem 0;
}

.process-title {
  font-size: 2.5rem;
  color: #FF007F;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.process-step {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

.process-step video {
  max-width: 150px;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #FF007F;
}
.video-links {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;
  cursor: pointer;
}

.video-links span {
  color: white;
}
.video-link {
  color: white;
  font-weight: 500;
  text-decoration: none;
  padding: 0 10px;
  z-index: 4;
  cursor: pointer;
}
.video-link:hover {
  color: #FF007F;
}

/* CTA Section */
.cta-section {
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .glow-text {
      font-size: 2.5rem;
  }

  .service-section, .process-steps {
      flex-direction: column;
      align-items: center;
  }

  .process-step {
      width: 90%;
  }
  .service-card {
    width: 45%;
}
}

@media (max-width: 768px) {
  .glow-text {
      font-size: 2rem;
  }

  .sub-text {
      font-size: 1rem;
  }

  .service-card, .process-step {
      width: 80%;
  }

  .process-step video{
    width: 110px;
  }

  .cta-button {
      padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .glow-text {
      font-size: 1.5rem;
  }

  .sub-text {
      font-size: 0.9rem;
  }

  .service-card, .process-step {
      padding: 1.5rem;
  }

  .cta-section {
      padding: 2rem;
  }
}


/* Video Gallery */
.video-gallery {
  text-align: center;
  padding: 4rem 2rem;

  border-radius: 20px;
 
}

.gallery-title {
  font-size: 2.5rem;
  color: #FF007F;
  text-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* Main Video Player */
.main-video-container {
  width: 60%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

.main-video {
  width: 40%;
  border-radius: 12px;
  transition: transform 0.3s;
}

.main-video:hover {
  transform: scale(1.03);
}

#video-title {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

/* Video Playlist */
.video-playlist {
  width: 25%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 500px;
}

.video-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  background: #222;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.video-item:hover {
  background: #FF007F;
  transform: translateY(-5px);
}

.thumbnail {
  width: 80px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

/* Custom Scrollbar */
.video-playlist::-webkit-scrollbar {
  width: 6px;
}

.video-playlist::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

.video-playlist::-webkit-scrollbar-thumb {
  background: #FF007F;
  border-radius: 10px;
}

.video-playlist::-webkit-scrollbar-thumb:hover {
  background: #ff3399;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .main-video-container {
      width: 100%;
  }

  .main-video{
width: 90%;
  }

  .video-playlist {
      width: 100%;
      max-width: 100%;
      flex-direction: row;
      overflow-x: auto;
      max-height: unset;
      padding-bottom: 10px;
  }

  .video-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 220px;
  }

  .thumbnail {
      width: 100%;
      height: auto;
  }
}

@media (max-width: 576px) {
  .gallery-title {
      font-size: 1rem;
  }

  #video-title {
      font-size: .7rem;
  }

  .video-item {
      width: 200px;
  }

  .service-card p, .process-step p{
    font-size: .9rem;
  }

  .thumbnail {
      width: 100px;
      height: 150px;
  }
}
