*{
    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: 2rem; */
  font-size: 32px;
  /* color: #fff; */
  color: red;
  cursor: pointer;
  padding: 5px 20px 20px 0;
}

/* Main Section */
main{
    display: flex;
    flex-direction: column;
    gap: 75px;

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

    }
}
/* Rotary Animation */
.rotary-animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.rotary-animated {
  font-family: 'Brush Script MT', cursive, 'Poppins', sans-serif;
  font-size: 34px;
  color: #063970;
  opacity: 0;
  letter-spacing: 0.1em;
  animation: rotaryFadeIn 3s ease-in-out infinite alternate;
  text-shadow: 2px 2px 8px #bcbec4;

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

@keyframes rotaryFadeIn {
  0% {
    opacity: 0;
    letter-spacing: 0.1em;
    transform: scale(0.95);
    filter: blur(4px);
  }
  40% {
    opacity: 1;
    letter-spacing: 0.15em;
    transform: scale(1.05);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.2em;
    transform: scale(1.1);
    filter: blur(0);
  }
}

/* Donate Section */
.donate-parent,.donate-2{
    background-color: aliceblue;
    margin: 25px 30px;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}
.donate-parent h1,.donate-2 h1{
    font-size: 30px;
    color: #063970;
    margin-bottom: 30px;
}
.donate{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;

    @media (max-width: 768px) {
        gap: 20px;
        
    }
}
.donate img{
    max-width: 350px;
    max-height: 300px;
    border-radius: 60px;
    margin-bottom: 2%;
     transition: 0.5s;

     @media(max-width: 768px) {
        max-width: 250px;
        max-height: 200px;
     }
}
.donate img:hover{
    transform: scale(1.05);  
    box-shadow: 0 0 10px rgba(0, 0, 0, 1.0);
}
.donate h3{
    color: orange;
    font-size: 18px;
    margin-bottom: 10px;

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

/* Donate Section 2 */
.donate-2 p{
    color: #5e717d;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.bank-logo{
    font-size: 30px;
    color: #063970;
}
.acct-no{
    font-size: 20px;
    color: #063970;
    font-weight: bold;
    cursor: pointer;
}
  


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