    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      background-color: #F3F4F6;
      color: #333;
    }

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 260px;
      height: 100%;
      background: #1E3A8A;
      color: white;
      padding-top: 40px;
      font-weight: bold;
    }
    .sidebar h3 {
      text-align: center;
      margin-bottom: 30px;
      font-family: 'Raleway', sans-serif;
    }
    .sidebar a {
      display: block;
      padding: 12px 20px;
      color: white;
      text-decoration: none;
      transition: 0.3s;
    }
    .sidebar a:hover {
      background: #10B981;
      color: #fff;
    }

    /* Hero Section */
    .hero {
      margin-left: 260px;
      background: url('img/sidelogonoBG25.png') center/cover no-repeat;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
    }
    .hero h1 {
      font-size: 3rem;
      background: rgba(0,0,0,0.5);
      padding: 10px 20px;
      border-radius: 8px;
      font-family: 'Raleway', sans-serif;
    }
    .announcement {
      position: absolute;
      bottom: 20px;
      background: #10B981;
      padding: 10px 20px;
      border-radius: 6px;
      animation: fadeIn 2s ease-in-out infinite alternate;
    }
    @keyframes fadeIn {
      from {opacity: 0.5;}
      to {opacity: 1;}
    }

    /* Gallery */
    .gallery {
      margin-left: 260px;
      padding: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    .gallery img {
      width: 100%;
      border-radius: 8px;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }

    /* About Section */
    .about {
      margin-left: 260px;
      padding: 40px;
      background: #fff;
    }
    .about h2 {
      font-family: 'Raleway', sans-serif;
      color: #1E3A8A;
    }
    .card {
      background: #F9FAFB;
      padding: 20px;
      margin: 15px 0;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    /* Contact Section */
    .contact {
      margin-left: 260px;
      padding: 40px;
      background: #E0F2FE;
    }
    .contact h2 {
      font-family: 'Raleway', sans-serif;
      color: #1E3A8A;
    }
    .contact p {
      margin: 8px 0;
    }

    /* Footer */
    footer {
      margin-left: 260px;
      background: #1E3A8A;
      color: white;
      text-align: center;
      padding: 20px;
    }
    footer a {
      color: #10B981;
      text-decoration: none;
    }
    .my-zoom-element {
  animation-name: custom-zoom;
  animation-duration: 0.8s; /* Adjust the duration as needed */
  animation-fill-mode: forwards; /* Ensures the element stays at the 'to' state after animation */
}
@keyframes custom-zoom {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1.5); /* Adjust the scale value for desired zoom level */
    opacity: 1;
  }
}