@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

header img {
    width: 20%;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav li a {
    text-decoration: none;
    color: #09A85B;
    font-weight: 600;
    font-size: 22px;
    transition: color 0.3s ease;
}

nav li a:hover {
    color: black;
}

.hero {
    background-color: #f4f4f4;
    color: black;
    text-align: center;
    padding: 3% 10%;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 2%;
}

.hero p {
    font-size: larger;
    font-weight: 400;
    margin-bottom: 2%;
}

.services h2 {
    padding: 1% 5%;
    text-align: center;
    font-size: 28px;
}

.services-cards {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

.service-card {   
    background: #09A85B;
    padding: 9% 5%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 55%;                       
    max-width: 500px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    background-color: #f4f4f4;
}

.service-card img {
    width: 50px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 18px;
    font-weight: 500;
}

.service-card span {
    font-size: 22px;
    font-weight: 600;
}

.about {
    padding: 40px 20px;
    text-align: center;
    background: #f4f4f4;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: black;
}

.about ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.about li {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    min-width: 250px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.how_it_works {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.how_it_works h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: black;
}

.how_it_works ol {
    list-style: none;
    padding: 0;
    counter-reset: steps;
}

.how_it_works li {
    background: #09A85B;
    color: white;
    padding: 15px;
    margin: 10px auto;
    width: 60%;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    text-align: left;
    counter-increment: steps;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.how_it_works li::before {
    content: counter(steps);
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.how_it_works li:hover {
    transform: scale(1.05);
}
.registration {
    background: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.tutorial h2{
    text-align: center;
}

.registration h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 15px;
}

.registration p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.registration button {
    background-color: #09A85B;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.registration button:hover {
    background-color: black;
    transform: scale(1.05);
}
.location{
    width: 100%;
    padding: 2% 0;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lct_left{
    width: 60%;

}
.lct_left iframe{
    width: 100%;
    border-radius: 5px;
}
.lct_right{
    width: 30%;
}
.lct_card{
width: 90%;
background: #f4f4f4;
    padding: 20% 5%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lct_card h2{
    width: 70%;
    display: inline-block;

}
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.ftr_left{
    display: flex;
    width: 50%;
}
.ftr_left ul{
    width: 100%;
    list-style: none;
    display: flex;
    gap: 5%;
}
.ftr_left a{
    text-decoration: none;
    color:#fff
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        
    }
    header img {
        width: 70%;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    .about ul {
        flex-direction: column;
        align-items: center;
    }
    .location{
        flex-direction: column;
    }
    .lct_left{
        width: 100%;
        height: 30%;
        padding-bottom: 2%;
    }
    .lct_left iframe {
        width: 100%;
    }

    .lct_right{
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    header img {
        width: 70%;
    }
    
    nav ul {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .service-card {
        padding: 10px;
    }
    
    .about li {
        font-size: 14px;
    }
    
    footer {
        font-size: 14px;
    }
}
