



.hero{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: 100% 100%;
    object-fit: contain;
}
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }
  
.hero .overlay{
    width: 100%;
    height: 100%;
    background-color: #000000ab;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.hero .overlay h2{
    text-align: center;
    font-size: 50px;
}


.hero .overlay h2 .red{
    color: #ff0000;
}
.hero .overlay p{
    font-size: 16px;
    width: 50%;
    text-align: center;
}
.hero .overlay .centerb{
    margin-top: 50px;
}

@media (max-width: 500px){
    .hero .overlay h2{
        font-size: 40px;
    }
    .hero .overlay p{
        font-size: 14px;
        width: 90%;
        text-align: center;
    }
}


.learning{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
}

.learning h2{
    margin-left: 5%;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .card {
    width: 20%;
    border-right: 1px solid #ff0000;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
  }

  .card:hover {
    transform: translateY(-5px);
  }
  .card img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
  }
  .card h3 {
    margin-left: 10px;
    margin-top: 0;
    color: #1a1a1a;
    min-height: 70px;
  }

  .card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }


  @media (max-width: 600px) {
    .card {
        width: 80%;
      padding: 20px;
    }
  }








  .about{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: start;
  }
  .about img{
    width: 90%;
    max-width: 450px;
    height: 400px;
    object-fit: cover;
  }
  .about .img1{
    display: none;
  }
  .about .aboutt{
    width: 45%;
  }
  .about .aboutt h2{
    margin-bottom: 30px;
  }
  .about .aboutt .aboutp{
    font-size: 14px;
    line-height: 1.6;
  }

  @media (max-width: 830px){
    .about .img1{
        display: block;
      }
      .about .img2{
        display: none;
      }

      .about .aboutt{
        width: 90%;
      }
  }



  .curriculum-section {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    display: none;
  }

  .curriculum-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .curriculum-section p {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 40px;
  }

  .curriculum-section .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .curriculum-section .buttons .btn {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
  }

  .btn svg {
    width: 16px;
    height: 16px;
  }

  .btn-download {
    background-color: #e9203b;
    color: white;
  }

  .btn-pink {
    background-color: #ffe5e8;
    color: #e9203b;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }



  





















  .plans{
    width: 100%;
  }
  .plans .plansh{
    width: 100%;
    display: flex;
    flex-direction: column;
    left: 50%;
    text-align: center;
    margin: auto;
    justify-content: center;
  }

  .plans .plansh h2{
    font-size: 35px;
  }
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Card Styling */
.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

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

.plan-name {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 10px 0;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
    color: #ff0000;
    margin: 0 0 10px 0;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    gap: 5px;
}

.payment-icons .icon {
    font-size: 10px;
    color: #fff;
    background-color: #000000;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.plan-description {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.feature-icon {
    color: #ff6666;
    margin-right: 10px;
    font-size: 16px;
}

.choose-plan-btn {
    background-color: #ff3333;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-plan-btn:hover {
    background-color: #e60000;
}
.choose-plan-btn i{
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 300px;
    }
}