/********** Template CSS **********/
:root {
    --primary: #639219;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}

.hdr-npc {
    background: #fff3e0;
    padding: 16px 24px;
    border-bottom: 2px solid #ffa726;
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 50;
}

.eVnuRPmAmH {
    max-width: 1140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lnTHdyn1rV {
    font-size: 1.7rem;
    font-weight: bold;
    color: #ef6c00;
}

.mZeBsBLzEk {
    display: flex;
    gap: 26px;
}

.mZeBsBLzEk a {
    text-decoration: none;
    color: #ef6c00;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mZeBsBLzEk a:hover {
    color: #fb8c00;
}

.pQycsAjOKa {
    display: none;
}

.burger-npc {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-npc span {
    width: 26px;
    height: 3px;
    background: #ef6c00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-mobile-npc {
    display: none;
}

@media (max-width: 768px) {
    .mZeBsBLzEk {
        display: none;
    }

    .burger-npc {
        display: flex;
    }

    .nav-mobile-npc {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: #fff8f0;
        transform: translate(100%, -100%);
        transition: transform 0.4s ease;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 60px 20px 20px;
        box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 200;
    }

    .nav-mobile-npc a {
        text-decoration: none;
        color: #ef6c00;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .nav-mobile-npc a:hover {
        color: #fb8c00;
    }

    .Pwe3CyU6ze {
        align-self: flex-end;
        font-size: 1.8rem;
        cursor: pointer;
        margin-bottom: 20px;
        color: #ef6c00;
    }

    .pQycsAjOKa:checked~.nav-mobile-npc {
        transform: translate(0, 0);
    }

    .pQycsAjOKa:checked+.burger-npc span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .pQycsAjOKa:checked+.burger-npc span:nth-child(2) {
        opacity: 0;
    }

    .pQycsAjOKa:checked+.burger-npc span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


.yABaDXZ6iP {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.VP9kGFCesV {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    text-align: center;
}

.course-description {
    list-style: disc inside;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-left: 0;
    max-width: 100%;
    text-align: left;
}

.course-price,
.course-duration {
    font-weight: 600;
    color: #56d81a;
    margin-bottom: 0.5rem;
}

.btn-order {
    background: #56d81a;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.btn-order:hover {
    background: #16a085;
}

/* Pricing Plans */
.pricing-plans {
    background: #f4f7f8;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 300px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid #56d81a;
    background: #e0f7f4;
}

.plan-card h3 {
    font-size: 1.8rem;
    color: #16a085;
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1rem;
    text-align: center;
}

.plan-card ul li {
    margin-bottom: 0.8rem;
}

.btn-select {
    background: #16a085;
    border: none;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background: #138d75;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 2rem;
    background: #fff;
    margin-top: 4rem;
}

.o4TucKpFPZ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-style: italic;
    color: #555;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.testimonial-card h4 {
    margin: 0;
    font-weight: 700;
    color: #56d81a;
    font-style: normal;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {

    .courses-grid,
    .o4TucKpFPZ {
        grid-template-columns: 1fr 1fr;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {

    .courses-grid,
    .o4TucKpFPZ {
        grid-template-columns: 1fr;
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #8cffab !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {

    padding: 9rem 0;

    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.yABaDXZ6iP {
    position: relative;

    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.yABaDXZ6iP span:first-child,
.yABaDXZ6iP span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.yABaDXZ6iP span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.yABaDXZ6iP span:first-child::after,
.yABaDXZ6iP span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.yABaDXZ6iP span:last-child::after {
    right: auto;
    left: -20px;
}

.yABaDXZ6iP.text-primary span:first-child,
.yABaDXZ6iP.text-primary span:last-child,
.yABaDXZ6iP.text-primary span:first-child::after,
.yABaDXZ6iP.text-primary span:last-child::after {
    background: var(--primary);
}

.yABaDXZ6iP.text-secondary span:first-child,
.yABaDXZ6iP.text-secondary span:last-child,
.yABaDXZ6iP.text-secondary span:first-child::after,
.yABaDXZ6iP.text-secondary span:last-child::after {
    background: var(--secondary);
}

.yABaDXZ6iP.text-white span:first-child,
.yABaDXZ6iP.text-white span:last-child,
.yABaDXZ6iP.text-white span:first-child::after,
.yABaDXZ6iP.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/HFOPwYWUU0.png),
        url(../img/PlmY53ASsh.png),
        url(../img/ym0qb4TdNL.png),
        url(../img/fH62BstLRS.png),
        url(../img/yuk6NhyLCJ.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #8cffab;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8cffab;
    background: url(../img/jGxv0vOcNl.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/joH7Vtd6g7.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/HFOPwYWUU0.png),
        url(../img/PlmY53ASsh.png),
        url(../img/ym0qb4TdNL.png),
        url(../img/fH62BstLRS.png),
        url(../img/yuk6NhyLCJ.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #8cffab;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 3rem;
    padding-top: 3rem;

    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8cffab;
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.t2OXcR5s2s {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #8cffab;
    font-weight: normal;
    transition: .3s;
}



.footer .btn.t2OXcR5s2s:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .hHdMk4Eptr {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .hHdMk4Eptr a {
    color: #8cffab;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .hHdMk4Eptr a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}