/* Hero Section */
.hero-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  /* height: 100vh; */
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  text-align: center;
  padding: 9%;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111a3abf;
}
.hero-content {
  z-index: 1;
}
.hero-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn-watch {
  background-color: #ff3c00;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.btn-watch:hover {
  background-color: #e63600;
  color: #fff;
}

/* Experience Section */
.experience-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 20px;
  color: #fff;
  position: relative; /* Keeps it within normal flow */
  margin-top: -80px; /* Moves it up inside the Hero Section */
  width: 70%; /* Optimized width */
  border-radius: 8px; /* Adds a smooth border */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 2; /* Ensures it stays above the Hero Section */
  margin-left: auto;
  margin-right: auto;
}
.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(16 15 15 / 88%);
  border-radius: 8px; /* Matches the experience section */
}
.experience-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.experience-section h5 {
  text-transform: uppercase;
  color: #ff3c00;
  font-size: 1rem;
  margin-bottom: 10px;
}
.experience-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.experience-section h2 span {
  color: #ff3c00;
}
/* Progress Bars */
.progress-containers {
  margin-bottom: 30px;
  position: relative;
  text-align: left;
}

.progress-containers h5 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.progress-containers .progress-percentage {
  position: absolute;
  right: 0;
  top: 0px;
  color: #ff3c00;
  font-size: 1.2rem;
  font-weight: bold;
}

.progress-containers .progress {
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-containers .progress-bar {
  background-color: #ff3c00;
  height: 100%;
  transition: width 2s ease-in-out;
}

@media (max-width: 1200px) {
  .experience-section {
    width: 95%;
  }
  .hero-content h2 {
    font-size: 35px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (max-width: 991px) {
  .experience-section h2 {
    font-size: 24px;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 25px;
  }
  .hero-content p {
    font-size: 17px;
  }
  .btn-watch {
    font-size: 13px;
  }
  .experience-section h2 {
    font-size: 22px;
  }
  .experience-section h5 {
    font-size: 14px;
  }
  .experience-section {
    margin-top: unset;
    width: 100%;
  }
}
@media (max-width: 374px) {
}

@media (max-width: 1200px) {
  .experience-section {
    margin-top: unset;
    width: 100%;
  }
}
