
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e7e3e31f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  color: yellow;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00bcd4;
}

/* Menu icon for mobile */
.menu-icon {
  display: none;
  font-size: 25px;
  cursor: pointer;
}

    body {
      background: rgba(0, 0, 0, 0.952);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .heropage{
      border: px solid red;
      text-align: center;
      margin-top: 100px;
      color: yellow;
      padding: 5px;
    }

    .gallery {
      border: px solid blue;
      width: 95%;
      max-width: 1400px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      padding: 40px 0;
    }

    .gallery-item {
      position: relative;
      overflow: visible; /* allows hover overflow */
      border-radius: 12px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.7s ease, filter 0.5s ease;
      transform-origin: center;
    }

    .gallery-item:hover img {
      transform: scale(1.25) translateY(-10px);
      filter: brightness(1.2);
      z-index: 5;
    }

    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    }

    /* Fade-In Effect on Load */
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .gallery-item {
      animation: fadeIn 1s ease forwards;
    }


    /* projectpage*/

    .projectpage{
      border: px solid red;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 30px;
    
    }

    .projectpage h1{
      color: yellow;
    }

    .can{
      display: flex;
      min-height: 300px;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .award{

      border: px solid;
      width: 300px;
      background-color: rgba(255, 255, 255, 0.973);
      color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      border-radius: 10px;
      padding: 10px;
      animation: fadeIn 2s ease forwards;
      
      
    }
    

    .award img{
      width:;
      height: 100px;

    }

    .divv{
      border: px solid;
      gap: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .divv button{
      padding: 7px;
      background-color: orangered;
      border-radius: 5px;
      border: transparent;
    }

    .norminatepage{
      border: px solid blue;
      height: 400px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;

    }

    .norminate{
      border: px solid red;
      min-height: 300px;
      width: 360px;
      padding: 10px;
      background-color: #111;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .icon{
      border: px solid orangered;
      width: 60px;
      height: 60px;
      border-radius: 100%;
      box-shadow: -1px 1px 10px white;
    }

    .icon img{
      width: 100%;
      height: 100%;
      border-radius: 100%;

    }
    ::placeholder{
      color: rgba(255, 255, 255, 0.336);
    }

    form div{
      border-bottom: 1px solid orangered;
      width: 100% ;
      height: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 3px;
      margin-bottom: 20px;
    }
    form input ,select{
      width: 100%;
      height: 30px;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.418);
      border: transparent;
      color: white;
      background: transparen;
      backdrop-filter: blur(0px);
    }

    option{
      background-color:rgba(24, 126, 221, 0.849) ;
    }

    .submit{
      background: orangered;
      border-radius: 5px;
    }

    footer{
  border: px solid;
  width: 100%;
  background-color: #222;
  height: 50px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

  

    /* Responsive Design */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: -100%;
    background: #111;
    width: 100%;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
    gap: 15px;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    left: 0;
  }

  .norminate{
    width: 100%;
    border-radius: 0px;
  }
}