* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
    line-height: 1.5;
}
span.title {
    color: #013cf7;
}


.page_header {
    min-height: 30vh;
    padding: 10%;
    text-align: center;
    position: relative;
    margin: auto;
    background-image: url(images/header.jpg);
    background-color: rgba(0,255, 0,0.3);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.page_header_item {
    position: absolute;
    left: 40%;
    bottom: 30px;
}
.page_header h1 {
    font-size: 2.3rem;
    color: lavender;
}
.page_header a {
    color: lavender;
    font-size: 25px;
}
/*------------------------------ Top -------------------------------------------------------*/
/*.top {
     height: 9vh;
    color: lavender;
    background-color: #2c2a2c;
    padding: 10px 15%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: auto;
}
.location, .social_top {
    width: 50%;
    text-align: center;
}
img.social_icon_top {
    width:30px;
    height: auto;
    margin: auto 5px;
    filter: grayscale(0);
}
.social_top p {
    margin-left: 10px;
    text-align: center;

}
.social_top a {
     display: inline-block;
}
*/

/*----------------------------xxx-----Top-----xxx------------------------------------------*/
/* ------------------------------------------------ navigation ---------------------------  */
/*nav {
    background: transparent;
    height: 8vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.dbtn {
    color:aliceblue;
    background-color: orangered;
    border-radius: 15px;
    padding: 8px 12px;
}
.logo img {
     width: 150px;
     height: auto;
}
nav ul {
    float: right;
    margin-right: 20px;
}
nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a {
    color:blue;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: capitalize;
}
a.active, a:hover {
    transition: .5s;
    color:#0082e6;
}
.checkbtn {
    font-size: 35px;
    color: #2c2a2c;
    float: right;
    margin-right: 40px;
    cursor: pointer;
    display: none;
    padding: 2px 5px;
}
#check {
    display: none;
}
@media screen and (max-width:952px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul li a {
        font-size: 16px;
    }
}
@media screen and (max-width:858px) {
    .checkbtn {
        position: fixed;
        right: 7px;
        top: 20.5vh;
        display: block;
        transition: .5s;
        border-radius: 5px;
    }
    .checkbtn:hover {
        background-color: rgba(0,0, 0, 0.3);

    }
    
    nav {
        height: 10vh;
        z-index: 1000;
    }
    ul {
        position: fixed;
        width:100%;
        height:100vh;
        background: #2c3e50;
        left: -100%;
        top:25vh;
        text-align: center;
        transition: all .5s;
        z-index: 2;
    }
    nav ul li {
        display: block;
        margin:50px 0;
        line-height: 30px; 
    }
    nav ul li a {
        font-size: 20px;
        color: aliceblue;
    }
    a:hover, a.active {
        background: none;
        color: #0082e6;
    }
    #check:checked ~ ul{
        left:0;
    }
    .top {
        height: 20vh;
        flex-direction: column;
    
    }
}
*/
/* --------------------------------------xxx -- Navigation -- xxx ---------------------------*/

/*------------------------------ Top -------------------------------------------------------*/
.top {
    height: 9vh;
    color: lavender;
    background-color: #2c2a2c;
    padding: 10px 15%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.location, .social_top {
    width: 50%;
    text-align: center;
}

img.social_icon_top {
    width: 30px;
    height: auto;
    margin: auto 5px;
    filter: grayscale(0);
}

.social_top p {
    margin-left: 10px;
    text-align: center;
}

.social_top a {
    display: inline-block;
}

/*----------------------------xxx-----Top-----xxx------------------------------------------*/

/* ------------------------------------------------ navigation ---------------------------  */
nav {
    background: white;
    height: 10vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 15%;
    position: fixed;
    top: 9vh; /* Position below the top bar */
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu ul li a {
    color: #013cf7;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #0082e6;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #013cf7;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.dbtn {
    color: aliceblue;
    background-color: orangered;
    border-radius: 15px;
    padding: 8px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.dbtn:hover {
    background-color: #ff4500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: #013cf7;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation */
@media screen and (max-width: 1024px) {
    nav {
        padding: 0 5%;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu ul {
        gap: 15px;
    }
    .location p{font-size: 8px;}
}

@media screen and (max-width: 858px) {
    .hamburger {
        display: flex;

    }
    
    .nav-menu {
        position: fixed;
        top: 19vh; /* Below both top bar and nav */
        left: -100%;
        width: 100%;
        height: calc(100vh - 19vh);
        background-color: rgba(44, 62, 80, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.5s ease;
        z-index: 998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }
    
    .nav-menu ul li {
        width: 100%;
        padding: 15px 0;
    }
    
    .nav-menu ul li a {
        color: lavender;
        font-size: 20px;
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    .nav-menu ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu ul li a::after {
        display: none;
    }
    
    .dbtn {
        margin-top: 30px;
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .top {
        height: 9vh;
        padding: 10px 5%;
        flex-direction: inherit;
        justify-content: space-between;
    }
    
    .location, .social_top {
        width: auto;
        text-align: left;
    }
    
    .social_top {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .social_top p {
        margin: 0;
        font-size: 14px;
    }
.location p{
    
    font-size: 11px;
}


}

@media screen and (max-width: 480px) {
    .top {
        flex-direction: inherit;
        height: 9vh;
        top: 0px;
        padding: 8px 5%;
        gap: 5px;
        
    }
    
    .location, .social_top {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .location p {
        font-size: 11px;

    }
    
    nav {
        top: 9vh;
        height: 10vh;
        padding: 0 5%;
    }
    
    .nav-menu {
        top: 19vh;
        height: calc(100vh - 19vh);
    }
    
    .logo img {
        width: 120px;
    }
    
}

@media only screen and (max-width: 600px) {
    .top {
        flex-direction: inherit;
        height: 9vh;
        top: 0px;
        padding: 8px 5%;
        gap: 5px;
        
    }
    
    .location, .social_top {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .location p {
        font-size: 11px;

    }
    
    nav {
        top: 9vh;
        height: 10vh;
        padding: 0 5%;
    }
    
    .nav-menu {
        top: 19vh;
        height: calc(100vh - 19vh);
    }
    
    .logo img {
        width: 120px;
    }
    
}

@media screen and (min-width: 240px){
    .location p{ font-size: 11px;}
    
}

/* ------------------------------------- Hero -----------------------------------------------*/
.header {
    background-color:rgba(0,0, 0, 0.7);
    background-image: url(images/field.jpg);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8%;
    padding-top: 20%;
    margin:auto;
    min-height: 90vh;
    color: lavender;
    
}
.header_up {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.header_left {
    width: 450px;
    height: auto;
}
.header_right {
    width: 450px;
    height: auto;

}
.header_image img {
    width: 400px;
    height: auto;
    border-radius: 50px;
    margin: 20px;
}
.header h1 {
    font-size: 2.5rem;
}
.header h3, .header h5 {
    color: crimson;
}
.herobtn {
    background-color: #013cf7;
    color: lavender;
    padding:8px 16px;
    border-radius: 40px;
    display: inline-block;
    margin: 15px;
}
.header_left h1 {
    font-size: 32px;
}
.header_left p {
    font-size: 18px;
}


/* ------------------------------xxx -  Hero -- xxx ---------------------------------*/
/* ------------------------------ What We Do ----------------------------------------*/
.whatWeDo {
    margin: auto;
    padding: 5%;
}
.work_title {
    width:450px;
    height:auto;
    margin:10px 5px;
    padding: 30px;
    box-shadow: 2px 2px 4px rgba(0,0, 0, 0.3);
    background-image: url(images/do_background.svg);
    background-image: linear-gradient(to right, rgba(0,0,0,0.1), white 300px );
/*background-size: 20px auto;
    background-position: center left;
    background-repeat: no-repeat;*/
    border-radius: 10px;
}
.work_title h3 {
    color: #013cf7;
}
.work_description p {
    font-size: 1.3rem;
}
.section_title {
    text-align: center;
    text-transform: capitalize;
    font-size: 2.0rem;
}
.do_items {
    margin: 5px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    flex-basis: auto;
}
.break {
    margin: auto;
    text-align: center;
    width: 50%;
    height: auto;
}
/* ------------------------------- Director Message ---------------------------- */
/*
.dir {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}*/
.dir_speech {
    padding: 50px;
}
.dir_speech p {
    font-size: 20px;
}
.dir_image img {
    width: 300px;
    height: auto;
    float: left;
    margin: 15px;
}
.dir_image img::after {
    clear: both;
}
.dir_message h1 {
    text-align: center;
}


/* --------------xxx--------------- Director Message ---------xxx----------------*/
/* --------------------------------- Target -------------------------------------*/
.target {
    padding: 50px;
    min-height: 50vh;
    margin: auto;
    background-color: #0082e6;
    color: lavender;

}
.target_items {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.target_item, .target_image {
    width: 50%;
    height: auto;
    margin: auto;
}

.target_item p {
    font-size: 20px;
}
.target_image img {
    width: 400px;
    height: auto;
}
/* --------------------------------------------- Mentor ------------------------------*/
.mentor {
    margin:0;
    padding:5%;
}
.mentor_top {
    text-align: center;
    margin: 30px;
}
.mentor_items {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.mentor_head {
    width: 250px;
    min-height: 400px;
    margin: auto 5px;
    background-color: #2c3e50;
    color: lavender;
    border-radius: 10px;
    padding: 20px;
}
.mentor_top p {
    font-size: 20px;
}
.mentor_top h1 {
    font-size: 2.0rem;
}
.mentor_down {
    text-align: center;
    margin:16px auto;
}
.involved {
    min-height: 50vh;
    padding: 4%;
    margin: auto;
}
.involved_items {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
}
.involved_item {
    width: 250px;
    height: 300px;
    margin: 10px 5px;
    padding: 10px;
    border-radius: 15px;
    background-image: linear-gradient(to right, rgba(0,200,0,0.4), white 250px );
    box-shadow: 4px 2px rgba(0,0, 0, 0.2);
}
.involved h1 {
    text-align: center;
    font-size: 32px;
}
.involved_item p {
    font-size: 18px;
}
.involved a {
    text-decoration: underline;
    color: #013cf7;
}
/* -----------------------------xxx---------- Mentor ----------xxx---------------------*/
/* ------------------------------- ABOUT ----------------------------------------------*/
.about_header {
    min-height: 30vh;
    padding: 10%;
    text-align: center;
    position: relative;
    margin: auto;
    background-image: url(images/header.jpg);
    background-color: rgba(0,255, 0, 0.3);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.about_header_item {
    position: absolute;
    left: 40%;
    bottom: 30px;
}
.about_header h1 {
    font-size: 2.3rem;
    color: lavender;
}
.about_header a {
    color: lavender;
    font-size: 25px;
}
.about {
    padding: 10%;
    margin: auto; /*
    background-image: url(images/about.svg);*/
    /* background-image: linear-gradient(to bottom, rgba(200,0,0,0.2), white, rgba(0,0,200,0.3) 100% );
    background-position: center;
    background-size: cover; */
}
.about p {
    font-size: 1.4rem;
}



/* ---------------------xxx-----About -----xxx---------------------------------------*/
/* ----------------------------Mission-------------------------------------------------*/
.mission {
    min-height: 50vh;
    padding: 5%;
    margin: auto;
    background-color: #013cf7;
}
.mission_items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.mission_item {
    width: 300px;
    height: 300px;
    color: aliceblue;
    margin: 10px;
    padding: 12px;
    border-right: 2px orangered solid;
}
.mission_item:last-child {
    border-right: none;
}
.mission_item p {
    font-size: 24px;
}
.mission_item h1 {
    font-size: 28px;
    color: #efe2ba;
}


/*---------------------xxx -- Mission -- xxx -----------------------------------------*/

/* -------------------------------------- Team ---------------------------------------*/
.team {
    min-height: 60vh;
    margin: auto;
    padding: 4%;
    font-size: 20px;
}
.team_top {
    text-align: center;
}
.team_row {
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content:space-between;
    flex-wrap: wrap;


}
.team_col {
    width: 250px;
    height: auto;
    padding: 28px;
    /* position: relative; */
    transition: 0.5s ease-in-out;
    text-align: center;
    margin: 10px 5px;
    background-image: linear-gradient(to bottom, rgba(0,200,0,0.4), white 400px);
    border-radius: 15px;
}
.team_col h4 {
    color: #0082e6;
    font-size: 14px;
}
p.member_description {
    position: absolute;
    bottom:100px;
    left: 30px;
    width: 220px;
    background-color: rgba(0,0, 0, 0.5);
    color: lavender;
    text-align: center;
    filter: opacity(0);
    border-radius: 12px;
    font-size: 20px;
}
p.member_description:hover {
    filter: opacity(1);
}
.team_col img {
    width: 150px;
    height: auto;
}
.partners {
    min-height: 20vh;
    padding: 35px;
    margin: auto;
    background-color: rgba(0,0, 0, 0.2);
    font-size: 18px;
    color: #0082e6;
}

/*---------------------------------xxx   Team -------xxx------------------------------*/
/* -----------------------------   Services ------------------------------------------*/
.services {
    min-height: 50vh;
    padding: 5%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;

}
.service_title {
    width: 300px;
    height: 320px;
    padding: 10px;
    background-image: linear-gradient(to right, rgba(0,200,0,.4), white 300px);
    border-radius: 10px;
    margin: 10px 5px;
    box-shadow: 2px 2px rgba(0,0, 0, 0.2);
}
.service_title h3 {
    color: #0082e6;font-size: 20px;
}
.service_title p {
    font-size: 18px;
}
/* -----------------------xxx ----- Services ------xxx--------------------------------*/
/*---------------------------------- Projects ----------------------------------------*/
.projects {
    min-height: 50vh;
    padding: 4%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.project_item {
    width: 300px;
    height: 300px;
    margin: 10px 4px;
    padding: 10px;
    border-radius: 15px;
    background-image: linear-gradient(to top, rgba(0,0,0,0.2), #ffffff 300px );

}
.project_item p {
    font-size: 18px;
}
.project_item h3 {
    font-size: 20px;
}



/*---------------------xxx-------- Projects -------xxx-------------------------------*/



/* --------------------------------- Contact --------------------------------------*/
.contact h1 {
    text-align: center;
}

.contact {
    min-height: 50vh;
    padding:10% 0;
    text-align: center;
    background-image: url(images/field.jpg);
    background-color: rgba(0,0, 0, 0.8);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #f1f1f1;
}
.contact_items {
    margin: 30px auto;
    font-size: 20px;
}
 
.box {
background-color: #2c3e50;
    padding: 0 50px 40px 50px;
    text-align: center;
    margin: auto;
    color: antiquewhite;
    min-height: 50vh;
    width:500px;
    border-radius: 15px;
}

.box input[type=text], .box input[type=email], .box input[type=number] {
    border: 0;
    background: transparent;
    display: block;
    margin: 4px auto 0;
    text-align: left;
    padding: 14px 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #0082e6;
    outline: none;
    color: gold;
    transition: 0.25s;
    } 
    textarea {
        background: transparent;
        width: 100%;
        height: 50px;
        padding: 15px;
        color: lavender;
        transition: 0.5s;
        outline: none;
        border: none;
        border-bottom: 2px solid #0082e6;
        resize: none;

    }
    
     .box h3 {
         padding-top: 40px;
        color: #f1f1f1;
        font-weight: 500;
    }
    .box input[type=submit] {
        border: 0;
        background: #013cf7;
        display: block;
        margin: 4px auto;
        text-align: center;
        padding: 8px 24px;
        outline: none;
        color: lavender;
        font-size: 18px;
        border-radius: 24px;
        transition: 0.25s;
        cursor: pointer;
    }
    .box input[type=submit]:hover {
     background-color: #f1f1f1;
     color: #0082e6;
    }
    ::placeholder {
        color: #efe2ba;
    }
    input:focus::placeholder , textarea:focus::placeholder {
        color: gold;
        transform: translateY(-15px);
    }
    .error, .thanks {
        margin:auto;
        padding:15%;
    }
    .error {
        color: red;
    }
    .thanks {
        color:#0082e6;
    }

/* -----------------xxx------------------ Contact -------------xxx----------------------*/
/* -------------------------------------- Story ----------------------------------------*/
.story {
    min-height: 60vh;
    margin: auto;
    padding: 10%;
    
}
.story p {
    font-size: 20px;
}



/* ---------------------xxx------------- Story ----------xxx---------------------------*/



/* ----------------------------------------- Footer ------------------------------------*/
footer {
    min-height: 10vh;
    margin:auto;
    background-color: rgba(0,0, 0, 0.9);
    color: lavender;
    display: flex;
    flex-direction: row;
    padding: 20px 10%;
    align-items: center;
    justify-content: space-around;
}
.quick_links, .social_media {
    width:50%;
    padding: 30px;
}
.quick_links a {
    display: block;
    color: lavender;
}
.social_media img {
    width: 36px;
    height:auto;
    margin-right: 3px;
    filter: grayscale(1);
}
.social_media img:hover {
    filter: grayscale(0);
}


/* -----------------------xxx---------- Footer -----------------xxx- ------------------*/












/* ---------------------------   MEDIA QUERIES ------------------------------------- */
@media screen and (max-width:952px) {
    .mission_item p {
        font-size: 20px;
    }
   .mission_item {
       width: 80%;
   }


}







@media screen and (max-width:768px) {
      .location, .social_top {
          width: 100%;
          text-align: center;
      }
      p {
          font-size: 16px;
      }
      .top {
          padding: 0;
          margin: 0;
      }
.mission_item {
    min-width: 300px;
    height: auto;
}

    .header {
        flex-direction: column;
        line-height: 1.5;
    }
.header_left h1 {
    font-size: 1.8rem;
}
.header_left p {
    font-size: 1.2rem;
}
.work_title {
    width: 100%;
    height: auto;
    padding: 15px;
    margin: 10px auto;
    background-size: 10px auto;
}
.work_title p {
    font-size: 14px;
}
.section_title h1 {
    font-size: 1.8rem;
}
.dir {
    flex-direction: column-reverse;
}
.dir_speech {
    width: 100%;
    padding: 25px;
}
.dir_speech p {
    font-size: 14px;
}
.dir_image {
    text-align: center;
}
.dir_image img {
    width: 50%;
    float:none;
}
.target_items {
    flex-direction: column-reverse;
    margin: auto;
    text-align: center;
    padding: 5px;
}
.target_item, .target_image {
    width: 100%;
    margin: auto;
}
.target_image img {
    width: 300px;
    height: auto;
}
.target_item p {
    font-size: 14px;
}
.mentor {
    padding: 10px;
}
.mentor_top p {
    font-size: 14px;
    text-align: left;
}
.mentor_items {
    flex-direction: column;

    
}
.mentor_head {
    width: 100%;
    padding:10px;
    min-height: 100px;
    margin: 6px;
}

.mentor_head p {
    font-size: 14px;
}
.involved_item {
    width: 100%;
    height: auto;
    padding: 30px;
}
.about_header_item , .page_header_item {
    left:25%;
}
.mission_items {
    flex-direction: column;
}
.mission_item {
    width: 100%;
    margin: 8px auto;
    padding: 25px;
}
.team_row {
    flex-direction: column;
}
.team_col {
    width: 100%;
    padding: 20px;
    margin: 10px auto;
    border-radius: 16px;
}
p.member_description {
    left: 20%;
}
.services {
    padding: 2%;
}
.service_title {
    width: 100%;
    height: auto;
    padding: 5px;
    margin: 5px auto;
}
.box {
    width: 95%;
}
footer {
    padding: 2%;
}
.quick_links, .social_media {
    width:50%;
    padding: 10px;
}
.header_image img {
    width: 320px;
}
.about_items p {
    font-size: 14px;
}
.mission p {
    font-size: 14px;
}




}







/* ------------- XXX -------   MEDIA QUERIES -------- XXX ----------------------------*/