html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

/* Hide scrollbar (Chrome, Safari) */
body::-webkit-scrollbar {
  
  width: 0px;
  background: transparent;
}




.section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  font-size: 1.5em;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
  
  .orgname {
    margin-top: 120px;
    font-size: 4vw;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px black;
  }
  
  .orgdesc {
    font-size: 1.5vw;
    color: white;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 0 0 5px black;
  }
  .uppermenu {
    position: relative;              
    width: 80%;
    margin: -80px auto 0 auto;       
    height: 65px;
    border-radius: 15px;
    background: linear-gradient(
      to right,
      rgba(30, 0, 58, 0.8),
      rgba(5, 5, 5, 0.8),
      rgba(55, 1, 105, 0.8)
    );
  }
  
.uppermenu.stuck {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    z-index: 999;
}

.aboutdesc{
  width: 80vw;
  color: rgb(233, 233, 233);


}
  
  .uppermenucontainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .buttonscontainer {
    display: flex;
    height: 100%;
    width: 100%;
    gap: 10px;
    padding: 0 10px; 
  }
  
.menubutton:hover, .menubutton:visited, .menubutton:active, .menubutton:focus, .menubutton {
    flex: 1;
    display: flex;
    align-items: center;      
    justify-content: center;    
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: azure;
    height: 100%;
    border-radius: 3px;
    text-decoration: none;
  }
  .dcbutton{
    font-size: 0.8em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: azure;
    text-decoration: none;
  }

  .dcbutton:hover{
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    color: azure;
    text-decoration: none;
  }

 .gallery, .gallery-full {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.gallery img, .gallery-full img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery img:hover, .gallery-full img:hover {
  transform: scale(1.05);
  border-color: white;
}

#open-gallery {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 6px;
  transition: background 0.3s;
}

#open-gallery:hover {
  background: rgba(255,255,255,0.4);
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw; 
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 9999;
  padding: 40px 20px;
  box-sizing: border-box; /* <<< critical fix */
}

.fullscreen-modal::-webkit-scrollbar {
  display: none;
}


.fullscreen-modal .close-btn {
  position: fixed;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
