
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
   margin: 0;
   padding: 0;
   font-family: "Google Sans", sans-serif;
   scroll-behavior: smooth;
}


.active{
    background-color: lightgreen;
    padding: 5px 30px;
}

.header{
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
   
}

.left-section{
    width: 300px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}

.logo{
    width: 70px;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 20px;
    display: none;
}

.brand{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 5px;
}

.brand-name{
    font-size: 30px;
    color: purple;
    font-weight: bold;
    margin-bottom: 5px;
}

.brand-slogan{
    font-size: 20px;
    font-weight: bold;
    color: purple;
    margin-bottom: 5px;
}

.brand-tagline{
   font-size: 15px;
   color: purple;
   font-weight: 100;
  
}



.middle-section{
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
     border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.middle-section .navbar-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;

}

.navbar-menu li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: purple;
    transition: 1s;
}

.navbar-menu li a:hover{
    background-color: purple;
    color: white;
    padding: 5px 30px;
    border-radius: 50px;
    font-weight: bold;
}


.navbar-menu li{
    position: relative;
}

.dropdown-menu{
    width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: lightgreen;
    min-width: 260px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 2px;
    display: none;
    z-index: 1000;
}

.dropdown-menu li{
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

.dropdown-menu li a{
    display: block;
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 1s;
    padding-left: 10px;
    font-weight: bold;
}

.dropdown-menu li a:hover{
    background: purple;
    color: white;
}

.dropdown:hover .dropdown-menu{
    display: block;
}





.right-section{
    background-color: white;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.heart-icon img{
    width: 35px;
}

.heart-icon{
    position: absolute;
    right: 50px;
    margin-top: 6px;
}

.donate-button{
    background-color: purple;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    margin-left: 30px;
    padding-right: 80px;
    position: relative;
    transition: 1s;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.donate-button:hover{
    background-color: lightgreen;
    color: purple;
}



.career-hero{
    height:500px;
    background:url("Images/Background/pexels-francis-desjardins-1613813-5932512.jpg") center/cover;
    position:relative;
}

.career-overlay{
    background:rgba(70,0,90,.55);
    width:100%;
    height:100%;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:80px;
}

.career-overlay h4{
    color:lightgreen;
    letter-spacing:2px;
    margin-bottom:15px;
}

.career-overlay h1{
    font-size:60px;
}

.career-overlay h2{
    font-size:55px;
    margin-bottom:15px;
}

.career-overlay p{
    width:600px;
    line-height:1.8;
    margin-bottom:35px;
}

.career-btn{
    display:inline-block;
    background:transparent;
    color:white;
    text-decoration:none;
    padding:10px 30px;
    border-radius:50px;
    width:220px;
    text-align:center;
    transition:.4s;
    border: 1px solid white;
}

.career-btn:hover{
    background:lightgreen;
}



.career-about{
    padding:80px 8%;
}

.career-about h2{
    text-align:center;
    color:purple;
    margin-bottom:50px;
    font-size:36px;
}

.career-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.career-card{
    padding:35px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    border-radius:15px;
    text-align:center;
}

.career-card img{
    width:70px;
    margin-bottom:20px;
}

.career-card h3{
    color:purple;
    margin-bottom:15px;
}

.career-card p{
    line-height:1.8;
}


.jobs-section{
    background:#f8f8f8;
    padding:80px 10%;
}

.jobs-section h2{
    text-align:center;
    color:purple;
    margin-bottom:50px;
    font-size:36px;
}

.job-card{
    background:white;
    padding:30px;
    margin-bottom:25px;
    border-left:6px solid purple;
    border-radius:10px;
}

.job-card h3{
    color:purple;
    margin-bottom:10px;
}

.job-card p{
    margin:20px 0;
    line-height:1.8;
}

.job-card span{
    display:block;
    color:gray;
    margin-bottom:20px;
}

.apply-btn{
    display:inline-block;
    background:purple;
    color:white;
    padding:12px 35px;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
    border: 1px solid white;
}

.apply-btn:hover{
    background:lightgreen;
}


.career-cta{
    padding:80px 10%;
    text-align:center;
    background:purple;
    color:white;
   
   
}

.career-cta h2{
    font-size:40px;
}

.career-cta p{
    margin:25px auto 35px;
    width:650px;
    line-height:1.8;
}


.job-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.job-summary{
    color:#666;
    margin-top:8px;
}

.job-toggle{
    background:purple;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:40px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.job-toggle:hover{
    background:lightgreen;
    color:purple;
}

.job-details{
    display:none;
    margin-top:30px;
    animation:fadeIn .4s ease;
}

.job-details.show{
    display:block;
}

.job-details h4{
    margin-top:25px;
    color:purple;
}

.job-details ul{
    margin:15px 0 25px 25px;
}

.job-details li{
    margin-bottom:10px;
    line-height:1.8;
}


@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


.footer{
    background-color: purple;
    color: white;
    padding-top: 50px;
    margin-top: 50px;
    
}

.footer-container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo{
    width: 180px;
    margin-bottom: 15px;
}

.footer-text{
    font-size: 16px;
    line-height: 1.7;
    color: white;
    text-align: start;
}

.footer-column h4{
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 10px;
}

.footer-column ul li a{
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: 1s;
}

.footer-column ul li a:hover{
    color: lightgreen;
}

.footer-column p{
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: start;
}

.social-icons{
    display: flex;
    gap: 12px;
}

.social-icons img{
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background:white;
    padding: 6px;
    transition: 0.3s;
}

.social-icons img:hover{
    background: transparent;
}

.footer-bottom{
    border-top: 1px solid white;
    margin-top: 40px;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: white;
}

.mobile-menu{
    display: none;
}

.bar {
display: block;
width: 20px;
height: 2px;
background-color: purple;
margin: 5px 0;
}

.navbar-toggle {
background: none;
border: none;
cursor: pointer;
text-align: center;
display: none;
}



@media screen and (max-width:768px){

    
    .header{
        width:100%;
    }

    .left-section{
        width:180px;
        padding:10px;
    }


    .brand-name{
    font-size: 26px;
    margin-bottom: 10px;
}

.brand-slogan{
    font-size: 16px;
    margin-bottom: 10px;
    
}

.brand-tagline{
   font-size: 12px;

}

    .middle-section{
        flex:1;
        justify-content:center;
        align-items:center;
        border:none;
    }

    .middle-section .navbar-menu{
        display:none;
    }



    .right-section{
        width:140px;
    }

    .donate-button{
        padding:10px 18px;
        font-size:14px;
        margin-left:0;
    }

    .heart-icon{
        display:none;
    }
    

    .navbar-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }

    .mobile-menu{
        position:fixed;
        top:155px;
        left:50%;
        transform:translateX(100%);
        width:60%;
        background: lightgreen;
        display:flex;
        flex-direction:column;
        align-items:center;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition: 1.5s ease;
        z-index:999;
    }

    .mobile-menu.show{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu ul{
        list-style:none;
        width:100%;
        padding:0;
        margin:0;
        text-align:center;
    }

    .mobile-menu ul li{
        margin:20px 0;
    }

    .mobile-menu ul li a{
        text-decoration:none;
        color:purple;
        font-size:16px;
        font-weight: bold;
        transition: 1s;
    }

    .mobile-menu ul li a:hover{
        background:purple;
        color:white;
        padding:5px 30px;
    }



        
.mobile-dropdown-menu{
    display: none;
    list-style: none;
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-dropdown-menu.show{
    display: block;
}

.mobile-dropdown-menu li{
    margin: 10px 0;
}

.mobile-dropdown-menu li a{
    display: block;
    color: purple;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}

  

    .career-hero{
        height:auto;
        min-height:500px;
    }

    .career-overlay{
        padding:40px 20px;
        align-items:center;
        text-align:center;
    }

    .career-overlay h4{
        font-size:16px;
    }

    .career-overlay h1{
        font-size:40px;
    }

    .career-overlay h2{
        font-size:32px;
    }

    .career-overlay p{
        width:100%;
        max-width:100%;
        margin:20px auto 30px;
        line-height:1.7;
    }

    .career-btn{
        width:auto;
        padding:12px 30px;
    }

    

    .career-about{
        padding:60px 20px;
    }

    .career-about h2{
        font-size:30px;
    }

    .career-grid{
        display:flex;
        flex-direction:column;
        gap:20px;
    }



    .jobs-section{
        padding:60px 20px;
    }

    .jobs-section h2{
        font-size:30px;
    }

    .job-card{
        padding:20px;
    }

    

    .career-cta{
        padding:60px 20px;
    }

    .career-cta h2{
        font-size:30px;
    }

    .career-cta p{
        width:100%;
        max-width:100%;
    }



    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-text,
    .footer-column p{
        text-align:center;
    }

    .footer-logo{
        margin:auto;
        display:block;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }


}





@media (min-width:769px) and (max-width:1090px){

    .middle-section .navbar-menu{
        display:none;
    }

  

    .middle-section{
        justify-content:center;
        align-items:center;
        position:relative;
    }


      .navbar-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }

    .mobile-menu{
        position:fixed;
        top:155px;
        left:50%;
        transform:translateX(100%);
        width:60%;
        background: lightgreen;
        display:flex;
        flex-direction:column;
        align-items:center;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition: 1.5s ease;
        z-index:999;
    }

    .mobile-menu.show{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu ul{
        list-style:none;
        width:100%;
        padding:0;
        margin:0;
        text-align:center;
    }

    .mobile-menu ul li{
        margin:20px 0;
    }

    .mobile-menu ul li a{
        text-decoration:none;
        color:purple;
        font-size:16px;
        font-weight: bold;
        transition: 1s;
    }

    .mobile-menu ul li a:hover{
        background:purple;
        color:white;
        padding:5px 30px;
    }


    .mobile-dropdown-menu{
    display: none;
    list-style: none;
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-dropdown-menu.show{
    display: block;
}

.mobile-dropdown-menu li{
    margin: 10px 0;
}

.mobile-dropdown-menu li a{
    display: block;
    color: purple;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}



.education-page-container1{
    display: flex;
    flex-direction: column;
    background-color: red;
}

.education-page-container1-a{
    width: 100%
}

.education-page-container1-b{
    width: 100%;
}


}