body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background: #e9edfc;
    font-family: 'Lucida Sans';
}

p {
    font-size: 20px;
}

a {
    text-decoration: none;
    font-size: 20px;
    color: #333;
}

ul {
    list-style: none;
}

.heading {
    font-size: 30px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin: 30px 0 10px;
}


.active_page{
    border-right: 2px solid #ff5e00;
    color: #ff5e00;
}



/*=================================
===== HEADERS ==========================*/
#header {
    padding: 0 7%;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    margin: 0;
    max-height: 10vh;
}

.top-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

}

.top-nav-right button {
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    background: transparent;
    color: #024705;
    font-weight: 800;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.top-nav-right button:hover {
    color: #ff5e00;
}

.top-nav-right input {
    padding: 8px 15px;
    border: none;
    outline: 1px solid #a5a4a4;
    border-radius: 5px;
}

.top-nav ul {
    margin: 0;
}

.logo-div {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.logo {
    height: 30px;
}



.nav-items {
    margin: 10px 0;
}


.nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 20px;
    color: #024705;
    position: relative;
    font-weight: 500;
}

/*========== Dropdown styles=================== */
.dropdown-menu {
    display: none;
    flex-direction: column;
    padding: 15px;
    gap: 35px;
    position: absolute;
    justify-content: center;
    top: 100%;
    background-color: #e9edfc90;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    min-width: 180px;
    z-index: 999;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

.dropdown-menu a {
    margin: 15px 0;
    font-weight: normal;
    font-size: 18px;
    text-align: center;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown.open .dropdown-menu {
    display: flex;
}


/*========= Responsive styles ==========*/
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.nav-link:hover {
    color: #ff5e00;
    transform: scale(1.07);
}

.active-link {
    color: #ff5e00;
    font-size: 20px;
}

.nav-link:active::before,
.nav-link:active::after {
    transform: scaleX(1.1);
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #024705;
}

@media only screen and (max-width: 950px) {
    .nav-items {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        place-items: left;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 3.8rem;
        flex-direction: column;
        padding: 20px 0;
        background-color: #e9edfc;
        width: 80%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        float: right;
        height: 100vh;
    }

    .dropdown-menu {
        position: relative;
        background-color: transparent;
        box-shadow: none;
        top: 0;
    }

    .nav-link {
        color: #024705;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}






/*============================================
========================= HERO SECTION=================== */
#hero {
    min-height: 100vh;
    padding: 150px 7%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-main {
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    /* width: 100%; */
    flex-wrap: wrap;
    text-align: left;
    gap: 20px;
}

.hero-left {
    min-width: 290px;
    max-width: 500px;
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 15px;
    flex-direction: column;
}

.hero-left h2 {
    font-size: 2.6rem;
    font-weight: 500;
}

.hero-right {
    min-width: 290px;
    max-width: 500px;
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: column;
    position: relative;
    height: 490px;
}

.hero-right img {
    border-radius: 10px;
    height: 450px;
}

.name-shape {
    padding: 10px 35px;
    border-radius: 60px 5px;
    background: #585858;
    bottom: 0;
    right: 0;
    position: absolute;
    color: #fff;
    font-weight: 800;
}

.name-shape span {
    color: #e9edfc;
    font-weight: 400;
}

#hero h1 {
    font-size: 3rem;
    color: #fff;
    margin: 15px 0;
    text-shadow: 2px 2px 2px #00051e;
}

@media (max-width: 950px) {
    #hero h1 {
        font-size: 2.5rem;
    }
}

#hero h4 {
    font-size: 1.3rem;
    color: #00bfff;
    margin: 10px 0;
}

.hero-btns {
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.hero-btns a {
    font-size: 20px;
    border: none;
    box-shadow: 0px 0px 5px #00bfffa1;
    padding: 10px 15px;
    border-radius: 10px;
    color: #00bfff;
    transition: 0.3s ease-in-out;
}

.hero-btns a:hover {
    transform: scale(1.08);
}





/* ==================================
=============== MAIN SECTION ================== */
#main-section {
    padding: 30px 7%;
    text-align: center;
}

#main-section h4 {
    font-size: 2.8rem;
    border-bottom: 1px solid #333;
    padding: 0 0 10px 0;
    display: inline;
    font-weight: 500;
    text-align: center;
}

.carosel {
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}

.carosel img {
    max-width: 150px;
    max-height: 90px;
    height: fit-content;
    width: auto;
}


@media (max-width: 1010px) {
    #main-section h4{
        border: none;
        font-size: 2rem;
    }

    .carosel img{
        max-width: 70px;
        max-height: 70px;
        height: fit-content;
        width: auto;
    }
}




/* =================================
========= CONTAINER DIV ============== */
.container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 0;
}



.container-left {
    text-align: left;
    max-width: 500px;
    min-width: 290px;
    height: 100%;
    padding: 20px 0 70px 0;
    position: relative;
}

.container-left h2 {
    margin: 15px 0;
    font-size: 2.5rem;
    font-weight: 400;
}

.container a {
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    background: #024705;
    color: #ff5e00;
    margin: 10px 0;
    position: absolute;
}

.container a:hover{
    background: #013304;
}


.container-right {
    min-width: 300px;
    max-width: 500px;
    min-height: 400px;
    width: 45%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: url("./img/dots_background.png");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.container-img {
    width: 290px;
    height: 290px;
    background: url("./img/e_learning.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 50% 0 50% 50%;
}

@media(max-width: 1010px)
{
    .container-right{
        justify-content: flex-end;
        align-items: center;
        background: url("./img/dots_background2.png");
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
    }
}

@media(max-width: 750px)
{
    .container-right{
        width: 100%;
    }
}




/* ====================================
=== NETWORK BANNER ================== */
#banner{
    background: #e4e4e4;

}

.banner-con{
    padding: 80px 7%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
    place-items: center;
}

#banner h2{
    font-size: 3rem;
    font-weight: lighter;
}

.banner-con span{
    font-weight: bold;
    color: #ff5e00;
}

#banner p{
    max-width: 900px;
    font-size: 22px;
    text-align: center;
}






/* ==================================
============== FOOTER SECTION ============== */
footer {
    padding: 50px 7%;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-links-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.download-imgs img {
    height: 50px;
}

.footer-links-container a {
    min-width: 100px;
    font-weight: normal;
    border-right: 1px solid #333;
    color: #333;
    border-left: 1px solid #333;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 0;
}

.footer-links-container a:hover {
    color: #024705;
}

.copyright {
    padding: 20px 10px;
    border-top: 1px solid #024705;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #585858;
}

.footer-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright a {
    color: #585858;
    font-size: 18px;
}



/*==================== POP UPS ================== */
.popup-trigger:hover {
    text-decoration: underline;
}

/* Pop-up Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: auto;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.close-button:hover {
    color: red;
}