<style>
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
  color: #333;
  
}
header {
  background-color: #FF8C00;
  color: white;
  padding: 10px 20px;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 0;
  width: 100%;
}
header .logo img {
  height: 80px;
}
nav a {
  margin: 0 10px;
  color: black;
  text-decoration: none;
  font-weight: bold;
 
}
nav a:hover {
  text-decoration: underline;
}
main {
  padding: 20px;
}
footer {
  background-color: #FF8C00;
  color: #333;
  text-align: center;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.social a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}
  .click-carousel {
    text-align: center;
    margin: auto;
    max-width: 100%;
  }

  .click-carousel img#carousel-img {
    width: 90%;
    max-height: 200px;
    object-fit: contain;
    margin: 20px 0;
    cursor: zoom-in;
  }

  .carousel-controls {
    margin-bottom: 20px;
  }
  .click-carousel button {
    font-size: 10px;
    padding: 5px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #ffa500;
    border: none;
    color: white;
    border-radius: 8px;
  }

  .click-carousel button:hover {
    background-color: #ff7f00;
  }
  /* Zoom Modal Styles */
  .zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
  }

  .zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
  }
  .responsive-image {
      width: 60%;
      height: auto;
  }