
    * {
      margin: 0;
      padding: 0;
    }
    header {
    
      color: white;
     background-color: #00695c;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
  }

  .logo {
      text-align: center;
  }

  .logo img {
      max-width: 150px;
      height: auto;
  }

  .content {
      padding: 2rem;
  }

    
    /* Navigation Bar Styles */
    .navbar {
      display: flex;
      align-items: center;
      background-color: rgb(116, 61, 61);
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
  }

  .navbar a {
      text-decoration: none;
      color: white;
      padding: 10px 15px;
      transition: background-color 0.3s ease;
  }

  .navbar a:hover {
      background-color: yellow;
      color: black;
  }

  .navbar a.active {
      background-color: green;
      color: white;
  }

  .navbar .links {
      display: flex;
      gap: 15px;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
      .navbar {
          flex-direction: column;
          align-items: flex-start;
      }

      .navbar .links {
          flex-direction: column;
          width: 100%;
      }

      .navbar a {
          width: 100%;
          text-align: left;
          padding: 10px;
      }
  }
/*and ends here*/
/*image slide starts here*/

.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  display: block;
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(209, 169, 59, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  button {
    padding: 5px;
  }
}

  
     /*and ends here*/



/*photo gallery starts here  */
/* General Styles */


/* General container styling */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

/* Intro section */
.gallery-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-intro img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-intro p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
}

/* Responsive grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* Individual items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Caption styling */
.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 12px;
}

footer p {
  font-size: 1rem;
  color: #333;
}

footer a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
