.banner-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 5%;
}

.banner-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.63);
  z-index: 2;
}

.banner-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  text-align: center;
  z-index: 3;
}

.course-logo {
  width: 250px;
  height: auto;
  margin-bottom: 100px;
  margin-top: 15%;
}

.company-logo {
  position: absolute;
  bottom: 10%;
  left: 27%;
  width: 120px;
  height: auto;
}

.banner-footer {
  background-color: #c45225;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  z-index: 4;
}

.banner-footer .course-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.banner-footer-decoration {
  position: absolute;
  width: 90%;
  height: 2px;
  background-color: #ffd001;
  z-index: 5;
  left: 5%;
}

.decoration-top {
  top: -10px;
}

.decoration-bottom {
  bottom: 10px;
  width: 90%;
  height: 3px;
}

.text-section {
  text-align: center;
  padding: 20px 10px;
  background-color: #fff;
  margin-bottom: 5%;
  max-width: 890px;
  margin: 0 auto 5%;
  line-height: 1.8;
}

.main-text {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.secondary-text {
  font-size: 1rem;
  margin-bottom: 5px;
}

.carousel-section {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 5%;
}

.infinite-carousel {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.carousel-images {
  display: flex;
  width: max-content;
  animation: scrollInfinite 10s linear infinite;
}

.carousel-images img {
  width: clamp(140px, 24vw, 300px);
  height: auto;
  object-fit: contain;
  margin-right: 10px;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.carousel-images::after {
  content: '';
  display: block;
  width: 100%;
}

.requirements-video-section {
  padding: 40px 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.requirement-item i {
  color: #f7941e;
  margin-right: 10px;
  font-size: 1.5rem;
}

.requirement-text {
  display: flex;
  flex-direction: column;
}

.main-text {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.note-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 5px;
  line-height: 1.4;
}

.requirements-title {
  font-size: 2rem;
  color: #f7941e;
  margin-bottom: 10px;
  margin-left: 160px;
}

.separator {
  width: 80%;
  height: 2px;
  background-color: #f7941e;
  margin-bottom: 20px;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.requirements-list li i {
  color: #f7941e;
  margin-right: 10px;
}

.video-container {
  text-align: center;
}

.video-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

.video-frame {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.video-frame iframe {
  width: 100%;
  border-radius: 10px;
}

.pc-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pc-image:hover {
  transform: scale(1.10);
}

.video-frame {
  position: relative;
  display: inline-block;
}

.youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #ff0000;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.video-link:hover .youtube-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .requirements-title {
    font-size: 2rem;
    color: #f7941e;
    margin-bottom: 10px;
    margin-left: 100px;
  }


  .video-frame iframe {
    height: 200px;
  }
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.requirement-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
}

.requirement-item i {
  color: #f7941e;
  margin-right: 10px;
}

.evaluation-button-container {
  text-align: center;
  margin: 30px auto;
}

.evaluation-button {
  display: inline-block;
  position: relative;
  background-color: #c45225;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.evaluation-button i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.3;
}

.evaluation-button:hover {
  transform: scale(1.05);
  background-color: #a6411c;
}

.evaluation-button:hover i {
  opacity: 0.5;
}

.evaluation-button span {
  position: relative;
  z-index: 2;
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
  font-size: 20px;
  margin-right: 10px;
}

.whatsapp-options {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 250px;
}

.whatsapp-options h4 {
  margin: 0 0 10px;
  color: #25d366;
  font-size: 14px;
}

.whatsapp-options .option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.whatsapp-options .option img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.whatsapp-options .option span {
  font-size: 14px;
  color: #333;
}

.whatsapp-options .option:hover {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 5px;
}