* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

/* Navigation bar */
header{
    position: sticky;
    top: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    background-color: #fff;
    z-index: 100;

}

nav img {
    width: 120px;
}

.nav-items {
    @media (max-width: 768px) {
        display: none;

    }
}
.nav-items ul {
    display: flex;
    gap: 16px; 
}
.nav-items ul li a {
    color: #000;
    font-size: 20px;
    transition: 0.4s;
}

.nav-items ul li a:hover {
    color: rgb(0, 123, 255);
}
.nav-items.show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #063970;
  color: #fff;
  text-align: right;
  width: 100%;
  padding: 18px 10px;
}
.nav-items.show ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nav-items.show ul li a {
  color: #fff !important;
}

.ham-icon {
    display: none;

    @media (max-width:768px) {
        display: flex;

    }
}

.ham-icon img {
    @media (max-width:768px) {
        max-width: 50px;
        max-height: 40px;

    }
}
.close-icon {
  display: flex;
  justify-content: flex-end;
  /* font-size: 2rem; */
  font-size: 32px;
  /* color: #fff; */
  color: red;
  cursor: pointer;
  padding: 5px 20px 20px 0;
}


/* Main */

.main {
    display: flex;
    flex-direction: column;
    gap: 128px;

    @media (max-width:768px) {
        gap: 70px;
    }

    @media (max-width:1000px) {
        gap: 80px;
    }
}

/* Hero Section */
.hero-sec {
    background: url(images/header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media (max-width:768px) {
        max-width: 400px;
        width: 100%;
        min-height: 400px;
    }
}

.hero-sec h1 {
    color: #fff;
    font-size: 120px;

    @media (max-width:768px) {
        font-size: 60px;
    }
}

.hero-sec h2 {
    color: #063970;
    font-size: 28px;

    @media (max-width:768px) {
        font-size: 16px;
    }
}

/* Area Of Focus */
.aof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 128px;
    margin: 0 24px;
    padding: 24px 0;
    background-color: #fcf9f9;
    border-radius: 10px;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 16px;
    }

    @media (max-width:1000px) {
        flex-direction: column;
        gap: 16px;
    }
}

.aof img {
    max-width: 400px;
    height: 350px;
    border-radius: 5px;

}

.aof p {
    max-width: 500px;
    font-size: 20px;
    line-height: 1.2;
    color: #696969;
}

/* The Founder */
.founder-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #c9c9c9;
    font-size: 25px;
    margin-bottom: 4%;
}
.founder-heading h1{
     transition: 0.5s;
}
.founder-heading h1:hover{
    color: #063970;
}
 .founder{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 20px 24px;
    margin: 0 64px;
    background-color: #fcf9f9;
    border-radius: 10px;

    @media (max-width:768px) {
        padding: 8px 16px;
        gap: 8px;
        flex-direction: column;
    }
 }

.founder img {
    /* max-width: 600px;
    border-radius: 5px;  */

    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);

    @media(max-width: 768px){
        margin-bottom: 6%;
    }
}

.founder p {
    color: #696969;
    font-size: 20px;
    line-height: 1.2;
    max-width: 600px;
    text-align: justify;

     @media(max-width: 768px) {
        text-align: center;
    }
}

.founder-txt b {
    color: #000;
    font-weight: bold;
}

/* Branches */
.branches-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #696969;
    font-size: 25px;

    @media (max-width:768px) {
        font-size: 12px;
    }

    /* @media (max-width:1000px) {
        font-size: 20px;
    } */
}

.branches-head h3 {
    color: #bcbec4;
    font-size: 14px;
    margin-bottom: 2%;

    @media (max-width:768px) {
        font-size: 9px;
        margin-bottom: 15px;
    }

    @media (max-width:1000px) {
        margin-bottom: 15px;
    }
}

.branches {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.branches img {
    min-width: 350px;
    border-radius: 2px;
}

.branches-child {
    text-align: center;
    transition: 0.5s;

    @media (max-width:768px) {
        margin-bottom: 12px;
    }

    @media (max-width:1000px) {
        margin-bottom: 12px;
    }
}

.branches-child:hover {
    transform: scale(1.05);
}

.branches h2 {
    color: #939090;
    font-size: 18px;
}

.branches h3 {
    color: rgb(0, 123, 255);
    font-style: italic;
    font-size: 14px;
}

/* Contributions */
.contributions-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;

    @media (max-width:768px) {
        font-size: 15px;
        margin-bottom: 12px;
    }

    @media (max-width:1000px) {
        margin-bottom: 12px;
    }
}

.contributions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contributions img {
    max-width: 350px;
    min-height: 230px;
    border-radius: 2px;
    margin-bottom: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.contributions h3 {
    /* color: #939090; */
    color: #063970;
    font-size: 15px;
    margin-bottom: 4%;

    @media (max-width:768px) {
        font-size: 12px;
    }
}

.con-item {
    text-align: center;
    /* flex-basis: 30%; */

    /* @media (max-width:1000px) {
        flex-basis: 40%;
    }

    @media (max-width:1200px) {
        flex-basis: 20%;
    } */
}

.globe {
    color: #063970;
    font-size: 25px;

    @media (max-width:768px) {
        font-size: 12px;
    }
}

/* Contribute link */
.contribute-link{
    text-align: center;
    margin-top: 2%;
}
.contribute-link a{
    color: #fff;
    font-size: 18px;
    background-color: #063970;
    border-radius: 40px;
    padding: 15px 25px;
    transition: 0.5s;
}
.contribute-link a:hover{
    color: #063970;
    background-color: #fff;
    border: 2px solid #063970;
}

/* Impacts */
.district {
    color: #B22222;
}

/* Testimonial */
.testimonial-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #063970;
    font-size: 22px;
    margin-bottom: 6%;

    
    @media(max-width:768px){
       font-size: 16px;
       margin-bottom: 64px;
    }
}
.testimonial{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
    line-height: 2.0;
    
    

    @media(max-width:768px){
        flex-direction: column;
    }
}
.testimonial img{
    max-width: 180px;
    max-height: 100px;
    border-radius: 10px;
}
.testimonial h3{
    color:#063970 ;
    transition: 0.5s;
}
.testimonial h3:hover{
    color:orange;
}
.testimonial h4{
    text-align: left;    
}
.tes-h4{
    color: orange;
    font-size: 40px;
    margin-bottom: 10px;

    @media(max-width:768px){
        font-size: 20px;
    }
}

.testimonial p{
    color: #5e717d;
}
.testimonial-child{
    background-color: aliceblue;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 6px 6px 8px black;
    transition: 0.5s;
}
.testimonial-child:hover{
    /* scale: 1.1; */
    transform: translateY(-20%);

    
    @media(max-width:768px){
      transform: translateY(-5%);
    }
}
.tes-span{
    z-index: -1;
    transition: 0.8s;
}
.tes-span:hover{
    transform: translateY(30%)
    /* scale: 0.9; */
}

/* Admin Speech */
.speech {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;

    @media (max-width:768px) {
        flex-direction: column;
    }
}

.speech img {
    max-height: 400px;

    @media (max-width:768px) {
        max-width: 400px;
    }
}

.speech-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.speech-txt h2 {
    color: #063970;
    ;
    font-size: 40px;

    @media (max-width:768px) {
        font-size: 20px;
    }
}

.speech-txt p {
    font-size: 18px;

    @media (max-width:768px) {
        font-size: 16px;
    }
}

 /* Footer  */

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #063970;
    max-height: 300px;
    padding: 60px 0;
    gap: 90px;
    transition: 0.5s;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }
}
.footer li a{
    color: #fff;
    font-size: 18px;
}
.footer li a:hover{
    text-decoration: underline;
}
.footer ul{
    line-height: 2.0;
    @media(max-width:768px){
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
    
}
.ft-icon{
    font-size: 25px;
    color: #fff;
}
.footer-icons{
    background-color: #063970;
}
.footer-icons ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.footer-bottom {
    width: 100%;
    text-align: center;
    background: #063970;
    color: #fff;
    padding: 10px 0;
    line-height: 1.5;
}
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}