  body {
  margin: 0%;
  background-color: #0a1a1a;
  overflow-x: hidden;
}


 ul.topnav {
    list-style-type: none;
    width: 100%;
    padding: 20px;
    align-items: center;
    text-align: center;
    height: auto;
    overflow: hidden;
    background-image:url('../assets/uul.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-right:  10%;
    
  }

  ul.topnav li {
    float:right;
  }

  
  ul.topnav li a {
    display: block;
    color:#C4F3E0;
    text-align: center;
    font-family:century gothic;
    padding: 14px 30px;
    text-decoration: none;
    margin-left: 10px;

  }

    ul.topnav li a:hover:not(.active) {
    color: #C4F3E0;
    border:dotted;
    border-radius:15px;
    }


  ul.topnav li a.active {
    background-color: none;
    border:solid;
    border-radius:15px;
    border-width: 1px;
  }





@media screen and (max-width: 600px) {

  ul.topnav li.right,
  ul.topnav li {
    float: left;
  }
}
.h1 {
  color: #fff;
  text-shadow: 2px 2px 2px #ffffff;
  font-size: 45px;
  text-align: center;
  font-family: century gothic;
}
    .head{
      height: 20%;
      display: flex;
       position: fixed;
    }


.gallery-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px auto;
  flex-wrap: wrap;
}

.gallery-row img {
  width: 260px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.35s;
  cursor: pointer;
  border: solid 2px #34A9FF;
}

.gallery-row img:hover {
  transform: scale(1.08);
  box-shadow: 0px 5px 20px rgba(0, 162, 255, 0.6);
}



    .contact-container {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
      max-width: 700px;
      width: 100%;
      padding: 40px;
      backdrop-filter: blur(8px);
      animation: fadeIn 1.2s ease;
    }
    
.first1 {
  color: #ccc;
  text-shadow: 2px 2px 2px #ffffff;
  font-size: 70px;
  padding: 2px 30px;
  text-align: center;
  font-family: century gothic;
}
    
    section {
      padding: 60px 60px;
      max-width: 80%;
      margin: 10%;
      border-radius: 20px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
        background-color:rgb(0 0 0 / 59%);
    }

    section h2 {
      text-align: center;
      font-family: 'Playfair Display', serif;
      color: #00bfbf;
      margin-bottom: 25px;
      font-size:50px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(0, 191, 191, 0.6);
    }



    h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 25px;
      letter-spacing: 1px;
      color: #00bcd4;
      text-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    }



    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 600px) {
      .contact-container {
        padding: 25px;
      }
    }
    

    footer {
      background: #071212;
      color: #ccc;
      text-align: center;
       padding: 14px 0;
      margin-top: 30px;
    }

    footer a {
      color: #00bfbf;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(1, 1, 1);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  
  
}

#myBtn:hover {
  background-color: #14503964;
}