
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    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: 32px;
  color: red;
  cursor: pointer;
  padding: 5px 20px 20px 0;
}
/* Main */
main{
    display: flex;
    flex-direction: column;
    gap: 100px;

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

    }
}
/* Program Opening */
.p-opening{
    background: url(images/proghero2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10%;
}
.p-opening h2{
    color: #fff;
    line-height: 1.5;
    font-weight: 600;

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

/* Installation of new president */
.pres-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pres-heading h1{
    font-size: 48px;
    color: #C9C9C9;
    transition: 0.5s;

    @media(max-width: 768px) {
        font-size: 26px;
    }
}
.pres-heading h1:hover{
    color: #063970;
}
.president,.e-works-parent{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 35px 35px;
    margin: 0 20px;
    background-color: aliceblue;
    border-radius: 5px;

     @media(max-width: 768px) {
        flex-direction: column;
    }
}
.president img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

     @media(max-width: 768px) {
        max-width: 330px;
        border-radius: 5px;
    }
}
.president p,.e-works p {
    /* color: #063970; */
    color: #c10042;
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    text-align: justify;

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

     @media(max-width: 1080px) {
        font-size: 18px;
        text-align: center;
    }
}
.rtn{
    color: #000;
    font-style: italic;
    font-weight: 600;
}

 /* Environmental works */
.environment-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
.environment-heading h1{
     color: #c10042;
    font-size: 40px;
    transition: 0.5s;


 @media (max-width:768px) {
        font-size: 20px;
    }
}
.environment-heading h1:hover{
    color: #063970;
}
.e-works{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;

    @media(max-width: 768px) {
        flex-direction: column;
        gap: 20px;
    }
}
.e-works img{
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: 0.5s;

    @media(max-width: 768px) {
        max-width: 300px;
    }
}
.e-works img:hover{
    scale: 1.05;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
.e-works-parent{
    flex-direction: column;
    margin-bottom: 10%;
}
.e-works h4{
    /* color: orange; */
    color: #063970;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2%;

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



/* 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;
}