:root {
    --primary: #4f46e5;
    --bg: #f9fafb;
    --card: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Ubuntu,
        sans-serif;
}

html,
body {
    background: #ffffff;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--text);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.banner-main{
    background-image: url('./assests/images/banner.png'); 
    background-size: cover;       
    background-position: center; 
    background-repeat: no-repeat; 
}

.main-container{
    max-width: 1200px;
    margin: 0 auto;
}

.banner {
    min-height: 66vh;
    display: flex;
    align-items: end;
}

.head-text {
    font-size: 73.6px;
    font-weight: 600;
    margin-bottom: 100px;
    color: white;
}
.clr-org{
    color: rgb(244, 74, 33);
}

.nu-network{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0;
}
.nu-network .head {
    color: rgb(244, 74, 33);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 100px;
}

.nu-network img{ 
    margin-bottom: 40px;
    width: 300px;
}

.nu-network .desc {
    color: black;
    max-width: 790px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.192px;
    line-height: 28.8px;
}

.purpose-wrapper {
    background-color: rgb(244, 244, 243);
}

.purpose {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    padding: 100px 0;
}

.purpose .head {
    font-size: 49.6px;
    font-weight: 700;
}

.purpose .desc {
    font-size: 19.2px;
    letter-spacing: 0.192px;
    line-height: 28.8px;
}


.objectives{
    display: grid;
    grid-template-columns: 1fr 1fr; 
    padding: 100px 0;
    gap: 120px;
}

.objectives .head ul li{
    color: black;
    font-size: 19.2px;
    font-weight: 400;
    letter-spacing: 0.192px;
    line-height: 28.8px;
    margin-bottom: 10px;
}

.objectives .desc {
    font-size: 49.6px;
    font-weight: 700;
    color: rgb(244, 74, 33);
}

.impact {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    padding: 100px 0;
}

.impact .desc ul li{
    color: black;
    font-size: 19.2px;
    font-weight: 400;
    letter-spacing: 0.192px;
    line-height: 28.8px;
    margin-bottom: 10px;
}

.impact .head {
    font-size: 49.6px;
    font-weight: 700;
    color: black;
}

.impact-wrapper {
    background-color: rgb(244, 244, 243);
}

.learn-more-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 0;
    font-size: 49.6px;
    font-weight: 700;
}

.learn-more{

    padding: 100px 0;
}

.learn-more img {
    width: 100%;
}

.learn-more .content {
    text-align: center;
}

.learn-more .content .date{ 
    font-size: 12.8px;
    font-weight: 500;
    line-height: 12.8px;
    margin: 20px 0;
}

.learn-more .content .desc{ 
    font-size: 41.6px;
    font-weight: 500;
    letter-spacing: -1.248px;
    line-height: 49.92px;
    margin: 20px 0;
}

.learn-more-wrapper .link{ 
    color: rgb(244, 74, 33);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.16px;
    line-height: 24px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    margin: 20px auto;    
    max-width: 60vw;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.modal-content .main-content {
    max-height: 90vh;  
    overflow-y: auto; 
    padding: 40px;
}

.close {
    position: absolute;
    top: 18px;
    right: 30px;    
    font-size: 30px;
    cursor: pointer;
}

.modal-content .date {
    font-size: 12.8px;
    margin-bottom: 20px;
}

.modal-content .heading {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -2.208px;
    line-height: 66.32px;
    margin-bottom: 40px;
}

.modal-content .desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.192px;
    line-height: 24px;
    margin-bottom: 16px;
}

.modal-content .desc-sub {
    font-size: 12.8px;
    font-weight: 500;
    line-height: 28.8px;
    margin-bottom: 20px;
}

.modal-content a {
    color: rgb(244, 74, 33);
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 900px) { 

    .purpose, .impact{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .purpose .desc,
    .impact .desc{ 
        text-align: center;
        padding: 10px;
    }

    .impact .desc ul,
    .objectives .head ul{ 
        list-style: none;
    }

    .objectives {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .objectives .head ul li { 
        text-align: center;
    }
    
    .objectives .head {
        order: 1;
    }
    
    .head-text{
        padding: 10px;
        font-size:50px ;
    }

    .banner {
        justify-content: center;
    }

    .nu-network .head {
        text-align: center;
    }
    
    .nu-network .desc {
        padding: 10px;
    }

    .modal-content {   
        max-width: 90vw; 
    }

    .modal-content .close {        
        top: 12px;
        right: 20px;
        font-size: 22px;
    }

    .modal-content .heading {
        font-size: 30px;
        line-height: normal;
    }

    .learn-more .content .desc{
        padding: 10px;
    }
}