﻿.progress-container {
  position: relative;
  width: 25%;
  height: 50px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 65px 65px 0px 35px;
}

.stage-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: -30px;
}

.stage-label {
  position: absolute;
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

/* Position each stage label at specific percentages */
.stage-label:nth-child(1) {
  left: 0%;
  transform: translateX(-50%);
}

.stage-label:nth-child(2) {
  left: 32%;
  transform: translateX(-50%);
}

.stage-label:nth-child(3) {
  left: 66%;
  transform: translateX(-50%);
}

.stage-label:nth-child(4) {
  left: 100%;
  transform: translateX(-50%);
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 30px;
  background-color: #555; /* Background color for the bar */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-weight: bold;
  color: white;
  font-size: 14px;
  margin-top: 50px;
}

.progress-fills {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #999; /* Color for the progress fill */

  border-radius: 15px;
  z-index: 0;
}

.progress-text {
  position: relative;
  z-index: 1;
}

#progress-percentage {
  margin-left: auto;
}

.stage-line {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: white;
}

.stage-line:nth-child(1) {
  left: 0%;
}

.stage-line:nth-child(2) {
  left: 32%;
}

.stage-line:nth-child(3) {
  left: 66%;
}

.stage-line:nth-child(4) {
  left: 100%;
}

/* Responsive styling */
@media (max-width: 768px) {
  .progress-container {
    height: 40px;
    width: 70%;
  }

  .stage-label {
    font-size: 0.85rem;
  }

  .progress-bar {
    height: 25px;
    font-size: 0.85rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .progress-container {
    height: 35px;
    width: 70%;
    margin: 161px 65px 0px 65px;
  }

  .stage-labels {
    top: -20px;
  }

  .stage-label {
    font-size: 0.75rem;
  }

  .progress-bar {
    height: 20px;
    font-size: 0.75rem;
    padding: 0 5px;
  }

  #progress-number,
  #progress-percentage {
    text-align: center;
  }
}

#faq {
  display: none;
}

.color-white {
  color: white !important;
}

/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
}

.faq-section .title-wrp {
  text-align: center;
  margin-bottom: 40px;
}

.faq-section .accordion .card {
  border: none;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion .card-header {
  padding: 15px 20px;
}

/*  .faq-section .accordion .card-header:hover {
            background-color: #f1f1f1;
        }*/

.faq-section .accordion .btn-link {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  width: 100%; /* Ensure the button takes the full width */
  text-align: left;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  overflow-wrap: break-word; /* Ensure compatibility for modern browsers */
  padding: 0;
}

.faq-section .accordion .btn-link:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.faq-section .accordion .collapse {
  border-top: 1px solid #ddd;
}

.faq-section .accordion .card-body {
  padding: 15px 20px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section .accordion .btn-link {
    font-size: 16px; /* Smaller font size for mobile */
  }

  .faq-section .accordion .card-header {
    padding: 10px 15px; /* Reduce padding for smaller screens */
  }

  .faq-section .accordion .card-body {
    font-size: 14px; /* Smaller font for better readability */
  }
}

/* Modal background */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  position: relative;
  background-color: #000;
  border-radius: 12px;
  width: 85vw; /* 85% of screen width */
  max-width: 1200px; /* Optional: keeps it from stretching too much */
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.video-wrapper {
  width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
