body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';   
    min-height: 100vh;         
}

header {
    background-color: #eaffea;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* height: 60px; */
}

.logo img {
    height: 50px; 
    width: 180px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-item > .menu-label {
    color: #20272f;
}

.menu-label {
    cursor: pointer;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 20px;
}

.menu-label:hover {
    background-color: #eaffea; 
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #eaffea;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.nav-item:hover .dropdown-content {
    display: block; 
}

.dropdown-content a {
    display: flex;
    white-space: nowrap;
    color: #20272f;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px;
}

.dropdown-content a:hover {
    background-color: #d4fbd4;  
}

.divider {
    border: 0;
    border-top: 2px solid #20272f;
    margin: 0px 10px !important;
}

.dropdown-content a:first-child {
   margin-top: 28px;
}

.dropdown-content a:not(:last-child) {
    margin-bottom: 5px;
}

.client-login-button {
    background-color: #004903;
    padding: 10px 15px;
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
}

.client-login-button:hover {
    background-color: #92ce7a; 
}

.bold {
    font-weight: bold; 
}

.arrow {
    border: solid #20272f;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: inline-block;
    vertical-align: middle; 
    margin-left: 5px;
    margin-top: -6px; 
    transition: margin-top 0.3s; 
}

main {
    flex: 1;               
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #004903;
    /* padding: 20px; */
    padding: 10px 20px 35px 20px;
    margin-bottom: 0px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    padding-top: 52px;
    padding-left: 20px;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-links a {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 29.26px;
    letter-spacing: 0.04em;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    color: #fff;
}

.footer-links a:hover {
    text-decoration: underline;
}

.registration-number {
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 19.5px;
    letter-spacing: 0.1em;
    text-align: left;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.icon {
    width: 45px;              
    height: 45px;             
    background-color: #eaffea;    
    border-radius: 50%;        
    display: flex;             
    justify-content: center;  
    align-items: center;      
}

.social-icons .icon img[alt="youtube_logo"] {
    height: 25px;

}

.icon img {
    height: 30px; 
}

.footer-right {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: flex-end;
    margin-right: 0px;
}

.footer-right img {
    height: 180px;
    width: 250px;
    margin-bottom: 10px;
}

.footer-right span {
    font-size: 0.8rem;
    color: #fff;
}

.mobile-menu {
    display: none; 

}





@media (max-width: 1240px) {


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* height: 60px; */
}

.logo img {
    height: 30px; 
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item > .menu-label {
    color: #20272f;
}

.menu-label {
    cursor: pointer;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 16px;
}

.menu-label:hover {
    background-color: #eaffea; 
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #eaffea;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.nav-item:hover .dropdown-content {
    display: block; 
}

.dropdown-content a {
    display: flex;
    white-space: nowrap;
    color: #20272f;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}

.dropdown-content a:hover {
    background-color: #d4fbd4;  
}

.divider {
    border: 0;
    border-top: 2px solid #20272f;
    margin: 0px 10px !important;
}

.dropdown-content a:first-child {
   margin-top: 28px;
}

.dropdown-content a:not(:last-child) {
    margin-bottom: 5px;
}

.client-login-button {
    background-color: #004903;
    padding: 10px 10px;
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
}



}



@media (max-width: 1000px) {
    

    footer {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        
    }

    .footer-left {
        padding-left: 0px;
        align-items: center;
        padding-top: 10px;
        gap: 10px;
    }

    .registration-number {
        text-align: center;
        font-size: 12px;
    }

    .footer-right {
        align-items: center !important;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-right img {
        height: 100px;
        width: 190px;
        margin-bottom: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #eaffea;
        width: 100%;
        padding: 10px 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

 
    .mobile-menu.active + .nav-menu {
        display: flex;
    }


    .nav-item:hover .dropdown-content {
        display: block;
        position: relative;
        background-color: #d4fbd4;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo img {
        height: 40px;
        width: 150px;
    }

    .mobile-menu {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #20272f;
    }


    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: #eaffea;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        border-top: 2px solid #004903;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%; 
        padding-left: 50px;
    }

    .client-login-button {
        padding-left: 70px;

    }


    .menu-label {
        font-size: 17px;
        font-weight: 500;
        padding: 10px 15px;
        color: #20272f;
        text-align: center;
        border-radius: 8px;
        width: 100%; 
        background-color: #eaffea;
        transition: background-color 0.3s;
    }

    .menu-label:hover {
        background-color: #d4fbd4; 
    }

    .dropdown-content {
        position: relative;
        background-color: #d4fbd4; 
         max-width: 100%;
        padding: 10px;
        box-shadow: none; 
    }

    .dropdown-content a {
        font-size: 18px;
        color: #20272f;
        padding: 8px 12px;
        text-decoration: none;
        display: block;
        text-align: center;
    }

    .dropdown-content a:hover {
        background-color: #c8f5c8; 
    }

   
    .client-login-button {
        width: 100%; 
        font-size: 17px; 
        padding: 12px;
        margin-left: 13px;
        background-color: #004903;
        color: white;
        text-align: center;
        margin-top: 10px;
    }

    .client-login-button:hover {
        background-color: #92ce7a;
    }
   
   
}
