* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: "Poppins", serif;
}

header {
    width: 100%;
  min-height: 100vh;
  background: linear-gradient(
      rgba(15, 25, 32, 0.7),
      rgba(1, 58, 34, 0.822)
    ),
    url(../images/bg.png) center/cover no-repeat;
    display: flex;
    flex-direction: column;
}
.navbar{
    padding: 20px 8%;
}

.navbar img{
    height: 70px;
}

/* nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li{
    height: 50px;
    padding: 0 20px;
}

ul li a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.normal-nav li a:hover{
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}
.normal-nav li a{
    background: #09570a;
    border-radius: 5px;
    padding: 0 20px;
    font-weight: bold;
    transition: 0.5s;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #ffffff69;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
    color: #fff;
} */

/* Hero styles */
.hero{
    padding: 20px 8%;
    width: 1000px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.hero-content{
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    width: 700px;
}

.hero h1{
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero a{
    background: #09570a;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.5s;
    color: #fff;
    text-decoration: none;
    width: 140px;
    font-size: 1.2rem;
}

.hero a:hover{
    background: rgba(255, 255, 255, 0.2);
    transistion: 0.5s;
    border-left: 2px solid #09570a;
    width: 150px;
}
/* End of header styles */

.about{
    width: 100%;
    margin-top: 4rem;
}

.about-container{
    padding: 20px 8%;
}

.about h2{
    font-size: 3rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hook{
    list-style: none;
    margin-bottom: 2rem;
}

.hook li, p{
    font-size: 1.2rem;
    line-height: 2.2rem;
    color: #555;
}

.hook span{
    color: #09570a;
}

.about-info{
    margin-bottom: 3rem;
}

.review{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 1%;
}

.left{
    width: 500px;
}

.left img{
    width: 100%;
}

.right{
    width: 700px;
    background-color: #09570a;
    padding: 40px;
}

.right-content h2{
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1;
    text-align: left;
}

.right-content ul{
    list-style: none;
}

.right-content ul li{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.right-content ul li span{
    font-size: 1rem;
}

.right-content p{
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
}
/* end of about */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.course-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.course-item {
    flex: 1 1 calc(33.333% - 40px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    scroll-snap-align: start;
}



.course-item h3 {
    color: #09570a;
    margin-bottom: 10px;
}

.course-item p {
    color: #333;
    font-size: 14px;
}

/* Mobile View (Carousel) */
@media (max-width: 768px) {
    .course-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .course-item {
        flex: 0 0 80%;
        margin-right: 20px;
    }
}

/* Navigation Arrows for Mobile */
.carousel-nav {
    display: none;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel-nav button {
    background-color: #09570a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: flex;
    }
}

/* End of Sales Modules */
.sales{
    width: 100%;
    background-color: #f0f0f0;
}

.sales-container{
    padding: 20px 8%;
}

.sales-img{
    width: 100%;
    margin: 0 auto;
    margin-top: 4rem;
}

.sales-img img{
    width: 100%;
}

.sales-img-info{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.sales-img-info h2{
    margin-top: 1.8rem;
    color: #333;
}

.sales-content{
    margin-bottom: 1rem;
}

.sales-img-info ul{
    list-style: none;
}

.sales-img-info ul li{
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.sales-img-info ul li span{
    color: #09570a;
    font-size: 1rem;
    font-weight: bold;
}

.sales-img-info a{
        background: #09570a;
        border-radius: 5px;
        padding: 10px 20px;
        transition: 0.5s;
        color: #fff;
        text-decoration: none;
        width: 140px;
        font-size: 1.2rem;
    }

    .sales-img-info a:hover{
        background: rgba(255, 255, 255, 0.2);
        transition: 0.5s;
        border-left: 2px solid #09570a;
        width: 150px;
        color: #09570a;
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
}

.sales-content-2{
    margin-bottom: 2rem;
}
/* End of sales */

.about-RMS{
    width: 100%;
    margin-top: 4rem;
}

.about-RMS-content{
    padding: 20px 5%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.RMS-left{
    flex: 1;
}

.RMS-left h3{
    color: #09570a;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.RMS-left h2{
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.RMS-left p{
    text-align: justify;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.RMS-right{
    flex: 1;
}
.RMS-right img{
    width: 650px;
}
/* End of About RMS */

.testimonial{
    width: 100%;
    margin-top: 4rem;
}

.test-container{
    padding: 20px 8%;
}

.test-container h2{
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.test-content{
   display: flex;
   gap: 40px;
   align-items: center;
}

.test-card{
    width: 400px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
}

.test-card:hover{
    border: 1px solid #09570a;
}

.test-img{
    width: 100%;
    margin-bottom: 1rem;
}

.test-img img{
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}

.test-info{
    width: 100%;
}

.test-info p{
    text-align: justify;
}
/* End of Testimonials */

.our-diff{
    width: 100%;
}

.diff-container{
    padding: 20px 8%;
}

.diff-content{
    width: 1000px;
    background-color: #09570a;
    margin: 3rem auto;
    padding: 50px;
}

.diff-content h2{
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diff-content ul{
    list-style: none;
}

.diff-content ul li{
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
/* End of our difference */

.timer{
    width: 100%;
    margin-top: 1rem;
}

.timer-container{
    padding: 20px 8%;
}

.timer-content{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 3rem;
}

.time-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-header{
    font-size: 1.8rem;
    color: #09570a;
    margin-bottom: 0.3rem;
    text-align: center;
}

.timer-desc{
    color: #333;
    font-weight: normal;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.time-section {
    margin: 0 30px;
}

.time-section span {
    display: block;
}

#days, #hours, #minutes, #seconds {
    font-size: 3rem; /* Timer numbers size */
    font-weight: bold;
    color: #09570a; /* Timer numbers color */
}

.time-label {
    font-size: 1.5rem;
    color: #333; /* Text color */
    font-weight: bold;
}

.signup-link{
    background: #09570a;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.5s;
    color: #fff;
    text-decoration: none;
    width: 250px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}



.course{
    width: 500px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.course-img{
    width: 300px;
}

.course-img img{
    width: 100%;
}

.course-price{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.course-price p{
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rating{
    display: flex;
    align-items: flex-start;
}

.rating img{
    height: 25px;
}

.rating p{
    font-size: 0.9rem;
    color: #555;
    font-weight: bold;
}

.price{
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 1rem;
}
.new-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.old-price {
    font-size: 1rem;
    color: red;
    text-decoration: line-through;
    font-weight: bold;
}
/* End of time-left*/

.time-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    width: 500px;
    padding: 20px;
}

.time-right-img{
    width: 100%;
}

.time-right-img img{
    width: 100%;
}
/* End of timer */

.faq-section {
    background: linear-gradient(
      rgba(15, 25, 32, 0.7),
      rgba(1, 58, 34, 0.822)
    ),
    url(../images/faq.jpg) center/cover no-repeat;;
    padding: 40px 20px;
    text-align: center;
  }
  
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .faq {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.863);
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
    .faq-answer {
    display: none;
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
  }
  
  .faq-cta {
    margin-top: 20px;
  }
  
  .cta-button {
    display: inline-block; 
    background-color: #fff;
    color: #09570a;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5rem;
  }
  
  .cta-button:hover {
    background-color: #05a507;
    color: #fff;
  }

  .faq-desc{
    color: #fff;
    margin-bottom: 2rem;
  }

  .faq-content a{
    background: #05a507;
    border-radius: 5px;
    padding: 10px 20px;
    transition: 0.5s;
    color: #fff;
    text-decoration: none;
    width: 140px;
    font-size: 1.2rem;
  }

  /* End of FAQ */
  
  footer{
    width: 100%;
    padding: 20px 8%;
    text-align: left;
  }

  footer p{
    font-size: 1rem;
    color: #333;
    margin-bottom: .6rem;
  }

  @media (max-width: 450px){
    nav img{
        height: 50px;
    }

    .hero{
        width: 100%;
        padding: 20px 5%;
    }

    .hero h1{
        font-size: 2.5rem;
    }

    .hero-content{
        width: 100%;
    }
    /* End of header styles */

    .about{
        width: 100%;
    }

    .about-container{
        padding: 20px 5%;
    }

    .about h2{
        font-size: 2rem;
    }

    .hook li, p{
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    .review{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review .left{
        width: 100%;
    }

    .review .right{
        width: 100%;
    }

    .right-content h2{
        font-size: 2rem;
    }

    .right-content ul li{
        font-size: 1rem;
    }

    .right-content p{
        font-size: 1rem;
    }
    /* end od about */

    .sales{
        width: 100%;
    }

    .sales-container{
        padding: 20px 5%;
    }

    .sales-img{
        width: 100%;
        margin: 0 auto;
        margin-top: 2rem;
    }

    .sales-img-info{
        width: 100%;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .sales-img-info h2{
        margin-top: 1.8rem;
    }

    .sales-img-info ul li{
        font-size: 1rem;
    }

    .sales-content{
        margin-bottom: 1rem;
    }

    .sales-content-2{
        margin-bottom: 1rem;
    }

    .sales-img-info a{
        width: 120px;
        font-size: 1rem;
    }   
    /* End of sales */

    .about-RMS{
        width: 100%;
    }

    .about-RMS-content{
        padding: 20px 5%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .RMS-left{
        width: 100%;
    }
    .RMS-left h3{
        font-size: 0.7rem;
    }

    .RMS-left h2{
        font-size: 2rem;
    }

    .RMS-left p{
        font-size: 1rem;
    }

    .RMS-right{
        width: 100%;
    }

    .RMS-right img{
        width: 100%;
    }
    /* End of About RMS */

    .testimonial{
        width: 100%;
    }

    .test-container{
        padding: 20px 5%;
    }

    .test-container h2{
        font-size: 2rem;
    }

    .test-content{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .test-card{
        width: 100%;
    }

    .test-img{
        width: 100%;
    }

    .test-info{
        width: 100%;
    }

    .test-info p{
        font-size: 1rem;
    }
    /* End of Testimonials */

    .our-diff{
        width: 100%;
    }

    .diff-container{
        padding: 20px 5%;
    }

    .diff-content{
        width: 100%;
        padding: 20px;
    }

    .diff-content h2{
        font-size: 2rem;
    }

    .diff-content ul li{
        font-size: 1rem;
    }

    .diff-content ul li span{
        font-size: 0.8rem;
    }

    .diff-content ul li img{
        height: 20px;
    }
    /* End of our difference */

    .timer{
        width: 100%;
    }

    .timer-container{
        padding: 20px 5%;
    }

    .timer-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    .time-left{
        flex-direction: column;
        justify-content: center;
    }

    .timer-header{
        font-size: 2rem;
        text-align: center;
    }

    .timer-desc{
        text-align: center;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #333; /* Text color */
        margin-bottom: 3rem;
    }

    .time-section {
        text-align: center;
        margin: 0 5px;
    }

    #days, #hours, #minutes, #seconds {
        font-size: 3rem; /* Timer numbers size */
    }

    .time-label {
        font-size: 1.2rem;
    }
    
    .course{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .course-img{
        width: 80%;
    }

    .course-img img{
        width: 100%;
    }

    .course-price{
        width: 100%;
    }

    .course-price p{
        font-size: 1.2rem;
    }

    .rating p{
        font-size: 0.8rem;
    }

    .price{
        gap: 5px;
    }

    .new-price {
        font-size: 1.2rem;
    }

    .old-price {
        font-size: 0.8rem;
    }

    .course-price a{
        width: 120px;
        font-size: 1rem;
    }

    .time-right{
        display: block;
        width: 100%;
    }

    .time-right-img{
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .time-right a{
        font-size: 1rem;
    }
    /* End of timer */

    .faq-section {
        padding: 20px;
    }

    .faq-section h2 {
        font-size: 2rem;
    }   

    .faq {
        max-width: 100%;
    }

    .faq-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 1rem;
    }

    .faq-cta {
        margin-top: 10px;
    }

    .cta-button {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .faq-header{
        font-size: 2rem;
    }
    .faq-desc{
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .faq-content a{
        width: 120px;
        font-size: 1rem;
    }
    /* End of FAQ */

    footer{
        padding: 20px 5%;
    }

    footer p{
        font-size: 0.8rem;
    }
  }

  /* Tablet Styles */
/* @media (max-width: 768px){
    .hero{
        width: 100%;
        padding: 20px 5%;
    }

    .hero h1{
        font-size: 3rem;
    }

    .hero-content{
        width: 100%;
    } */
    /* End of header styles */

    /* .about{
        width: 100%;
    }

    .about-container{
        padding: 20px 5%;
    }

    .about h2{
        font-size: 2.5rem;
    }

    .hook li, p{
        font-size: 1.2rem;
        line-height: 2.2rem;
    }

    .review{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 1%;
    }

    .left{
        width: 600px;
    }

    .left img{
        width: 100%;
    }

    .right{
        width: 600px;
        background-color: #09570a;
        padding: 40px;
    }

    .right-content h2{
        font-size: 2.5rem;
    }

    .right-content ul li{
        font-size: 1.3rem;
    }

    .right-content ul li span{
        font-size: 1rem;
    }

    .right-content p{
        font-size: 1.2rem;
    } */
    /* end od about */

    /* .sales{
        width: 100%;
    }

    .sales-container{
        padding: 20px 5%;
    }

    .sales-img{
        width: 100%;
        margin: 0 auto;
        margin-top: 4rem;
    }

    .sales-img-info{
        width: 600px;
        margin: 0 auto;
        margin-bottom: 4rem;
    }

    .sales-img-info h2{
        margin-top: 1.8rem;
    }

    .sales-content{
        margin-bottom: 1rem;
    }

    .sales-content-2{
        margin-bottom: 2rem;
    }

    .sales-img-info a{
        width: 140px;
        font-size: 1.2rem;
    } */
    /* End of sales */

    /* .about-RMS{
        width: 100%;
    }

    .about-RMS-content{
        padding: 20px 5%;
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .RMS-left{
        flex: 1;
    }

    .RMS-left h3{
        color: #09570a;
        font-size: 0.8rem;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }

    .RMS-left h2{
        font-size: 2rem;
        color: #333;
        margin-bottom: 1.2rem;
    }

    .RMS-left p{
        text-align: justify;
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
    }

    .RMS-right{
        flex: 1;
    }

    .RMS-right img{
        width: 650px;
    } */
    /* End of About RMS */

    /* .testimonial{
        width: 100%;
    }

    .test-container{
        padding: 20px 5%;
    }

    .test-container h2{
        font-size: 2rem;
    }

    .test-content{
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .test-card{
        width: 400px;
        border: 1px solid #ccc;
        padding: 20px;
        border-radius: 10px;
    }

    .test-card:hover{
        border: 1px solid #09570a;
    }

    .test-img{
        width: 100%;
        margin-bottom: 1rem;
    }

    .test-img img{
        width: 100%;
        border-radius: 10px;
        transition: 0.5s;
    }

    .test-info{
        width: 100%;
    }

    .test-info p{
        text-align: justify;
    } */
    /* End of Testimonials */

    /* .our-diff{
        width: 100%;
    }

    .diff-container{
        padding: 20px 5%;
    }

    .diff-content{
        width: 1000px;
        background-color: #09570a;
        margin: 3rem auto;
        padding: 50px;
    } */

