*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
    
}

.navbar{
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background-color: #2d518b;
    align-items: center;
    padding: 0px;
    flex-wrap: wrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.navbar .logo{
    max-width: 100px;
    margin-left: 30px;
}

.nav-links{
    display: flex;
    list-style: none;
    margin-top: 20px;
}

.nav-links li{
    margin-top: 50px;
}

.nav-links a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    margin-top: 10px;
}

.nav-links a:hover{
    background-color: #1362eb;
}

.nav-links a:active{
    color: black;
    background-color: #d6e0ea;
}


.nav-links a.active{
    color: black;
    background-color: #d6e0ea;

}

.nav-links li a{
    width: 100%;
    display: inline-block;
    padding: 10px 55px;
    width: 200px;
    height: 50px;
    border-top: none;
    color: white;
    font-size: 20px;
    background-color: #2d518b; 
     /* #2d518b */
    border-right: 1px solid white;
    border-left: none;
    border-bottom: none;
    transition: 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-links li a{
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}


.right-side{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin: 10px;
}

.button{
    margin-right: 40px;
    display: flex;
    gap: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.login-button{
    background-color: white;
    display: inline-block;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
}

.login-button:hover{
    background-color: wheat;
    text-decoration: underline;
}

.donate-button{
    background-color: yellow;
    border: none;
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    color: black;
    padding: 10px;
    cursor: pointer;
    
}
.donate-button:hover{
    background-color:  rgb(255, 183, 48) ;
    text-decoration: none;
}


.search-item{
    position: relative;
}

.search-box{
    padding: 8px 30px 8px 12px;
    border-radius: 20px;
    border: none;
}

.search-icon{
    position: absolute;
    right: 10px;
    top: 8px;
    color: gray;
}

body {
  background-color: #d6e0ea;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

/* main */

main{
    flex: 1;
}
.feedback-section{
    max-width: 500px;
    margin: 30px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) ;
}

form input, form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

main button{
    background-color: #2d518b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover{
    background-color: #1362eb;
}

/* main font */
h1, h2{
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.6px;
}

label{
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

input, textarea{
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}





/* footer */

.site-footer{
  background-color: #31353d;
  color: #fff;
  padding: 60px 40px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo{
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand{
  font-size: 20px;
  opacity: 0.9;
  margin-left: 5px;
}

.footer-right{
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-toptext{
  font-size: 14px;
  opacity: 0.9;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a{
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.footer-links a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* hamburger for resnponsive mobile */
.hamburger{
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* mobile responsive footer */
@media (max-width: 800px){
  .footer-links{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right{
    text-align: left;
    width: 100%;
  }

  .footer-links{
    justify-content: flex-start;
  }
}

/*  main section mobile responsive  */
@media (max-width: 900px){
  .hamburger{
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
    opacity: 0.9;
  }

  .navbar{
    flex-direction: column;
    align-items: stretch;
    background-color: #2d518b;
    position: relative;
  }

  .navbar .nav-links,
  .navbar .right-side{
    display: none;
    width: 100%;
  }

  .navbar .nav-links.active,
  .navbar .right-side.active{
    display: flex;
  }

  .nav-links{
    flex-direction: column;
    background-color: #2d518b;
    margin-top: 0;
  }

  .navbar .nav-links li{
    width: 100%;
    margin-top: 0;
  }

  .nav-links li a{
    width: 100%;
    height: 52px;
    font-size: 20px;
    font-weight: 500;
    background-color: transparent;
    color: white;
    border-bottom: 1px solid white;
    text-align: center;
    margin-top: 0;
    padding: 12px 0;
  } 

  .nav-links a.active{
    background-color: white;
    color: #2d518b;
    font-weight: 600;
  }

  .right-side{
    flex-direction: column;
    align-items: center;
    padding: 15px 0 10px;
    gap: 12px;
  }

  .button{
    margin: 0;
    justify-content: center;
  }

  .search-item{
    width: 90%;
    max-width: 420px;
  }

  .search-box{
    width: 100%;
    padding: 10px 40px 10px 16px;
    font-size: 15px;
  }

  .search-icon{
    top: 12px;
    right: 14px;
  }
}
