@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hero-section .content img {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomFadeIn 1.5s ease forwards;
    animation-delay: 0.3s;
  }
  
  @keyframes zoomFadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .about-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}


.navbar {
  background-color: #02264b;
  border-bottom: 5px solid #fff;
  color: #fff;
  color: white;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-logo {
  height: 40px; /* Adjust based on your logo size */
  margin-right: 30px;
  max-height: max-content;
 
}

.menu-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu-desktop a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.menu-desktop .divider {
  color: rgba(255, 255, 255, 0.308);
}

.auth-buttons {
  display: flex;
  gap: 15px;

}

.login-btn, .signup-btn {
 text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;


}

.login-btn {
  background: none;
  border: none;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 10px; /* adds space between text & underline */
  font-size: 16px;
  cursor: pointer;

}

.login-btn:hover {
  font-weight: bold;
  color: #0181fa;
}
.signup-btn {
  background-color: #ffffff00;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.signup-btn:hover {
  font-weight: bold;
  color: #ffffff;
  background-color: #0181fa;
  border: 1px solid #0181fa;
}



.menu-toggle {
  display: none;
  cursor: pointer;
}

.kebab {
  font-size: 30px;
  padding-right: 5px;
  padding-left: 15px;
  max-height: max-content;
}

.menu-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: black;
  flex-direction: column;
  padding: 20px;
}

.menu-mobile a {
  text-decoration: none;
  color: white;
  padding: 10px 0;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
  padding: 10px 10px;

}
  .menu-desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .auth-buttons {
    gap: 5px;
    max-height: max-content;
  }
  .login-btn, .signup-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
  .menu-mobile {
    display: none;
  }
  .navbar-logo {
    margin-right: 10px;
    height: 30px;
  }
  .menu-toggle.active + .menu-mobile {
    display: flex;
  }
}




.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #02264b;
    overflow: hidden;
}

.content {
    position: relative;
    max-width: 100%;
    margin: 10%;

}

.content img {
width: 80%;
margin-top: 60px;


}
.about-section {
    background-color: #ffffff;
    text-align: center;
    padding: 6%;
    border-top: 4px solid #004aad;
}

.about-section .content {
    max-width: 800px;
    margin: auto;
}

.about-section h2 {
    color: #004aad;
    font-size: clamp(2.5rem, 2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 30px;
}

.about-section p {
    color: #000000;
    font-size: clamp(2rem, 2.5vw, 2.2rem);
    text-align: justify;
   
}

.no-underline {
    text-decoration: none;
    background-color: #004aad;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.about-section .no-underline:hover {
    background-color: #003580;
    color: #fff;
}

.feedback {
    padding: 40px 10%;
    background-color: #323333;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.feedback h6 {
    font-size: 2em;
    color: white;
    margin-bottom: 5px;
}

.feedback p {
    font-size:large;
    color: #c8c8ca;
}
.feedback a {
    color: #f7dc48;
    text-decoration: none; 
    margin-top: auto;
}


.feedback a:hover {
    color: rgb(248, 238, 181);
}

.donation-section {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 500px;
}

.donation-section h3 {
    color: #02264b;
    font-size: 20px;
    margin-bottom: 10px;
}

.donation-section p {
    font-size: small;
    color: #3b4253;
}

.donate-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #02264b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
}

.donate-btn:hover {
    background: #0b325a;
    color: #ffffff;
}
.footer {
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.993);
    color: #ffffff;
    font-size: small;
    text-align: center;
    width: 100%;
}
a {
    color: rgb(128, 126, 126); 
    text-decoration: none; 
    margin-top: auto;
}


a:hover {
    color: rgb(68, 67, 67);
}
footer p {
    margin: 0;
}


@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .filters {
        flex-direction: column;
    }
}


   .hero-section {
        height: 40vh;
    }

    .content p {
        font-size: 3.5vw;
    }

    .updates h2, .feedback h2 {
        font-size: 2em;
    }
    .update-slider {
        overflow-x: scroll;
    }

    .update-list {
        flex-wrap: nowrap;
    }

    .update-item {
        flex: 0 0 100%;
    }

    .button-container button {
        width: 100%;
    }

    form input,
    form textarea {
        width: 100%;
    }
    @media (min-width: 1024px) {
        .content h1 {
            font-size: 2rem;
        }
    
        .content p {
            font-size: 1rem;
        }
    
        .container {
            max-width: 1200px;
            margin: auto;
        }
    
        .updates h2, .feedback h2 {
            font-size: 2rem;
        }
    
        .update-item {
            flex: 0 0 300px;
        }
    
        .hero-section {
            height: 90vh;
        }
    }
    