@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.container{
    width: 1107px;
    height: auto;
    margin: 0 auto;
}

.header__inner{
    display: flex;
    justify-content: space-between;
}

.header {
    height: 120px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.header img{
    text-align: center;
    height: 100px;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header img:hover {
    transform: scale(1.05);
    opacity: 0.9;
    cursor: pointer;
}

.menu {
    display: flex;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
    transition: color 0.3s ease-in-out;
}

.menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 48px 10px 55px;
    letter-spacing: 1.2px;
    position: relative;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.menu ul li a::before,
.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #6EAB24;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.menu ul li a::before {
    top: 0;
}

.menu ul li a::after {
    bottom: 0;
}

.menu ul li a:hover::before,
.menu ul li a:hover::after {
    transform: scaleX(1);
}

.menu ul li a:hover {
    background-color: #008131;
    color: #fff;
    transition-delay: 0.2s;
}

.latest__news__bar{
    background: #008131;
}

.latest__news__bar .container{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
}
.latest__news__bar .container {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}

.program__section .container{
    display: flex;
    align-items: flex-start; /* Ensures content stays at the top */
    justify-content: space-between; /* Keeps content and image far apart */
    margin-top: 30px;
}

.program__content {
    width: 60%;
    line-height: 26px;
}

.program__image {
    width: 40%;
    text-align: right;
}

.program__image img {
    height: 400px;
    display: block; /* Ensures image aligns properly */
    margin-left: auto; /* Pushes image to the right */
    border-radius: 10px;
}

.program__content h2 {
    color: #008131;
}

.program__content h3 {
    margin-top: 10px;
}

.program__content ul li {
    list-style: none;
}

.program__content .reg__button {
    
    margin-top: 20px;
}

.program__content .reg__button a {  
    background: #008131;
    color: #fff;
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
}

/* Tablet Devices (768px to 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        width: 90%;
        padding: 0 15px;
    }
}

/* Mobile Devices (767px and below) */
@media screen and (max-width: 767px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .header__inner {
        justify-content: flex-start;
    }

    .header img {
        height: 60px;
        margin-top: 5px;
    }

    .menu {
        display: none; /* Mobile me navbar hide */
    }

    .program__section .container {
        flex-direction: column;
    }

    .program__content,
    .program__image {
        width: 100%;
        margin-top: 40px;
    }

    .program__image {
        margin-top: 20px;
    }

    .program__image img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}