*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}
h1{
    font-family: 'Poppins', sans-serif;
}
h2{
    font-size: 32px;
    font-weight: 600;
}
h3{
    font-size: 20px;
    font-weight: 600;
}
p{
    font-size: 15px;
    color: #4B5563;
}
body{
    background-color: #F8FAF9;
    font-family: 'Inter', sans-serif;
}
/* HEADER */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background-color: #0B5D1E;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E5E7EB;
    padding: 30px;
}
.logo{
    display: flex;
    align-items: center;
    margin-left: 5%;
    font-size: 1.25rem;
    font-weight: 700;
}
.logo img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}
.navbar{
    margin-right: 30%;
}
.navbar li{
    display: inline-block;
    margin-right: 40px;
    font-size: 16px;
    list-style: none;
}
.navbar li a{
    color: #FFFFFF;
    text-decoration: none;
}
.navbar li a:hover{
    color: #0F766E;
    transition: 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}
.navbar ul li a.active{
    /*color: #0F766E;*/
    border-bottom: 2px solid #0F766E;
}
.navbar li a.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #0F766E;
}
.header a{
    color: #FFFFFF;
}
.header.scrolled{
    background: #FFFFFF;
}
.header.scrolled a{
    color: #1F2937;
}
#menu-toggle{
    display: none;
}

.menu-icon{
    display: none;
    font-size: 28px;
    color: #FFFFFF;
    cursor: pointer;
}
.header.scrolled .menu-icon{
    color: #0B5D1E;
}
@media (max-width: 768px){
    .menu-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 80px;
        left: 50%;
        width: 100%;
        background: rgb(255, 254, 254);
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .navbar ul{
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    .navbar ul li{
        width: 100%;
        border-bottom: 1px solid #ddd;
    }
    .navbar ul li a{
        display: block;
        padding: 15px;
        color: #1F2937;
    }
    .navbar ul li a:hover{
        background: #f4f4f4;
        color: #0F766E;
        transition: 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
    }
    #menu-toggle:checked ~ .navbar{
        display: block;
    }
}
@media (max-width: 1024px){
    .logo{
        margin-left: 20px;
    }
    .navbar{
        margin-right: 20px;
    }
}
/*ANIMATIONS*/
.hidden{
    opacity: 0;
    transform: translateX(-100px);
    animation: slide 1s ease;
}
.show {
    opacity: 0;
    transform: translateX(0);
}
.reveal{
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}
.reveal.active{
    opacity: 1;
    transform: translateY(0);
}
/*SIGN UP PROMPT*/
.signing{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100vw;
    height: 1000px;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-content: center;
}
.sign-content{
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 350px;
    height: 400px;
    position: relative;
}
.sign-close{
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
}
.sign-content input{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}
.signbtn{
    background: #10B981;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
}
/* HOME PAGE */
.homepage{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7%;
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 70px;
    background: linear-gradient(135deg, #14532D, #0F766E);
}
.homeText{
    opacity: 0;
    transform: translateX(-100px);
    animation: slideLeft 1s ease forwards;
    animation-delay: 0.3s;
}
.homeText h1{
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}
.homeText p{
    font-size: 1.125rem;
    color: #D1FAE5;
    margin-bottom: 30px;
}
.start{
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}
.start:hover{
    background-color: #059669;
    transition: 0.3s ease;
}
.explore{
    background-color: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    padding: 13px 28px;
    border-radius: 5px;
    cursor: pointer;
}
.explore a{
    color: #FFFFFF;
    font-size: 1rem;
    text-decoration: none;
}
.explore:hover{
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: 0.3s ease;
}
.image1 img{
    border-radius: 20px;
    margin-left: 20px;
}
.image1{
    opacity: 0;
    transform: translateX(100px);
    animation: slideRight 1s ease forwards;
    animation-delay: 0.6s;
}
@keyframes slideLeft{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideRight{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px){
    .homepage{
        flex-direction: column;
        text-align: center;
    }
    .homeText h1{
        font-size: 32px;
    }
    .homeText p{
        font-size: 1rem;
    }
    .image1 img{
        width: 100%;
        margin: 20px 0 0 0;
    }
    button{
        margin-top: 15px;
    }
}
@media (max-width: 1024px){
    .homeText h1{
        font-size: 36px;
    }
    .image1 img{
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}
/*FEATURES*/
.features{
    background-color: #FFFFFF;
    padding: 50px 0;
    opacity: 0;
    transform: translateY(100px);
    animation: slideup 3s ease forwards;
    animation-delay: 0.9s;
}
/*@keyframes slideup{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}*/
.features h2{
    grid-column: span 3;
    text-align: center;
    margin-bottom: 30px;
}
.featuresList{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 7%;
}
.list{
    border: 2px solid #0F766E;
    background: #ECFDF5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
    z-index: 1;
    max-height: 300px;
    height: 100%;
}
.list:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.list h3{
    margin-bottom: 15px;
    line-height: 30px;
}
.list p{
    word-spacing: 5px;
}
.icon{
    font-size: 100px;
    color: #059669;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.3s ease;
}
@media (max-width: 768px){
    .featuresList{
        grid-template-columns: 1fr;
    }
    .list{
        margin-bottom: 20px;
    }
    .list:hover{
        transform: translateY(-2px);
    }
}
@media (max-width: 1024px){
    .list h3{
        font-size: 18px;
    }
     .icon{
        font-size: 80px;
    }
}
/*PROGRAMS*/
.programs{
    background-color: #F3F4F6;
    padding: 50px 0;
    margin: 0;
}
.programs h2{
    text-align: center;
    margin-bottom: 30px;
}
.allprogram{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0 7%;
}
.programsList{
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
.programsList img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.program-content{
    padding: 25px;
}
.program-level{
    font-size: 13px;
    background: #DCFCE7;
    color: #047857;
    padding: 5px 12px;
    border-radius: 20px;
}
.program-meta{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6B7280;
    margin: 15px 0;
}
.program-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price{
    font-size: 18px;
    font-weight: 600;
    color: #059669;
}
.enroll{
    background: #10B981;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
.enroll:hover{
    background: #059669;
}
@media (max-width: 768px){
    .allprogram{
        grid-template-columns: 1fr;
    }
    .programsList{
        margin-bottom: 20px;
    }
}
/* SUCCESS STORIES */
.story{
    background-color: #ECFDF5;
    padding: 50px 0;
}
.story h2{
    text-align: center;
    margin-bottom: 30px;
}
.allstory{
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 7%;
}
.story-content{
    border: none;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.story-content p{
    font-size: 14px;
    color: #4B5563;
    padding: 20px;
}
.story-content img{
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.story-content h2{
    text-align: center;
    margin-top: 15px;
}
@media (max-width: 768px){
    .allstory{
        grid-template-columns: 1fr;
    }
    .story-content{
        margin-bottom: 20px;
    }
}
/* ABOUT US */
.aboutUs{
    background-color: #FFFFFF;
    padding: 50px 0;
}
.aboutUs h2{
    text-align: center;
    margin-bottom: 30px;
}
.aboutUs p{
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.abouttext{
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
}
.image2 img{
    display: block;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}
.aboutcontent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
}
@media (max-width: 768px){
    .abouttext{
        font-size: 1rem;
    }
    .aboutcontent{
        flex-direction: column;
        text-align: center;
    }
    .image2 img{
        margin: 20px 0 0 0;
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 1024px){
    .abouttext{
        font-size: 1rem;
    }
    .image2 img{
        width: 100%;
        max-width: 400px;
    }
}
@media (max-width: 1200px){
    .abouttext{
        font-size: 1rem;
    }
    .image2 img{
        width: 100%;
        max-width: 500px;
    }
}
/* CONTACT US */
.contact{
    background-color: #F0FDF4;
    padding: 50px 0;
}
.contact h2{
    text-align: center;
    margin-bottom: 30px;
}
.contact-form{
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input,
.contact-form textarea{
    padding: 15px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-form button{
    background-color: #10B981;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}
.contact-form button:hover{
    background-color: #059669;
}
@media (max-width: 768px){
    .contact-form{
        padding: 0 20px;
    }
}
/*FOOTER*/
.footer{
    background-color: #1F2937;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    padding-bottom: 50px;
}
.footer p{
    font-size: 14px;
}
.navbar2 li{
    list-style: none;
    padding-top: 20px;
}
.navbar2 li a{
    color: #E5E7EB;
    text-decoration: none;
}
.navbar2 li a:hover{
    text-decoration: line-through;
    color: #E5E7ED;
}
.linkings h3{
    font-size: 25px;
    color: #10B981;
    margin-top: 20px;
}
.contactings h3{
    color: #10B981;
    font-size: 25px;
    margin-top: 20px;
}
.icons h3{
    font-size: 25px;
    color: #10B981;
}
.socialMedia i{
    color: #FFFFFF;
    transition: all 0.3s ease;
}
.socialMedia i:hover{
    transform: scaleX(1.5);
    color: #a8a5a5;
}
.contactings p{
    color: #D1FAE5;
}
.contactings p a{
    color: #D1FAE5;
}
.contactings p a:hover{
    color: #dff5e6;
}
@media (max-width: 768px){
    .footer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.rights{
    background-color: #1F2937;
    margin-top: 1px;
    margin-bottom: 0;
    padding: 20px;
    padding-bottom: 15px;
    text-align: center;
}