body{
  background-color: #10121A;
  scroll-behavior: smooth;
}

.nav-link {
  transition: color 0.3s;
}

.nav-link.active,
.nav-link:hover {
  color: #FB8822 !important;
}

.nav-link.active{
  font-weight: bold;
}
.orange-color{
  color:#FB8822;
}
.orange-bg{
  background-color: #FB8822;
}
.black-bg{
  background-color: #10121A;
}

.black-color{
  color: #10121A;
}
.skills {
  font-family: Arial, sans-serif;
  padding: 20px;
  margin: 0 auto;
}

.skill {
  margin-bottom: 15px;
}

.skill-name {
  flex: 2;
  margin-bottom: .25rem;
}
.hero-overlay {
  
}


.progress {
  background-color: #333;
  border-radius: 2px;
  height: 20px;
  overflow: hidden;
}

.progress-bar {
  transition: width 0.5s;
}

.skill-percent {
  flex: 1;
}
.video-container {
  background-color: #1a1a1a;
  min-height: 500px;
}
.play-button {
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.pricing-section {
  padding: 50px 0;
}
.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.pricing-section p {
  font-size: 1.2rem;
}
.card {
  background-color: #16171C;
  border: none;
  border-radius: 10px;
  padding: 20px;
}
.card-title {
  font-size: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 10px;
}
.feature-list li i {
  margin-right: 10px;
}
.card-icon{
  width: 64px; 
  height: 64px; 
  border-radius: .5rem;
  scale: .5;
}

.form-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background-color: #10121A;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.form-label {
  color: #FB8822;
  font-weight: bold;
}
.form-control {
  border: 1px solid #333;
}
.form-control::placeholder {
  color: #bbb;
}
.btn-orange {
  background-color: #FB8822;
  color: white;
  font-weight: bold;
  border: none;
}
.btn-orange:hover {
  background-color: #e97a1f;
}

.page-btn{
  color: #fff;
  border: solid #e97a1f 2px;
}
.page-btn:hover{
  background-color: transparent;
  border: solid #e97a1f 2px;
  color: #e97a1f;
}
.footer-links{
  transition: .25s;
  cursor: pointer;
}

.footer-links:hover{
  color: #FB8822 !important;
}


@media (max-width: 768px) {
  .container-fluid {
    padding: 4rem 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  .navbar-brand {
    width: 40% !important;
  }


  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    left: 5% !important;
    right: 5% !important;
    transform: translateY(-50%);
    max-width: 90%;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .hero-content .btn {
    font-size: 1rem !important;
    padding: 0.75rem 1.25rem !important;
  }
}

.form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
}

@media (max-width: 576px) {
  .form-container {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .form-control {
    font-size: 1rem;
  }

  #skillValue {
    font-size: 1.1rem;
  }
}


@media (min-width: 992px) {
  .col-lg-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.offer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

@media (min-width: 1700px) {
  .offer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}