    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth;}
    body {
      font-family: 'Montserrat', Arial, sans-serif;
      background: #f4f4f4;
      color: #222;
      line-height: 1.6;
    }
    header {
      background: #00a0e7;
      color: #fff;
      text-align: center;
      padding: 20px 5px 5px;
    }
    header h1 { font-size: 2rem; }
    nav {
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease-in-out;
    }
    .nav-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }
    .menu-toggle {
      display: none;
      font-size: 26px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .menu-toggle span {
      display: inline-block;
      transition: 0.3s;
    }
    nav ul {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      gap: 10px;
    }
    nav ul li a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      padding: 10px 14px;
      transition: 0.3s;
      border-radius: 6px;
    }
    nav ul li a:hover,
    nav ul li a.active {
      background: #ffc107;
      color: #fff;
    }
    @media (max-width: 768px) {
      .menu-toggle { display: block; }
      .nav-container {
        flex-direction: column;
        align-items: flex-end;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
      }
      nav.open ul {
        max-height: 500px;
        opacity: 1;
      }
    }
    .section {
      max-width: 1100px;
      margin: auto;
      padding: 20px 10px;
      scroll-margin-top: 80px;
    }
    .section h2 {
      color: #0099ff;
      margin-bottom: 20px;
      text-align: center;
    }
    .info-box {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .info-box ul {
      flex: 1;
      list-style: none;
    }
    .info-box li { margin-bottom: 12px; font-size: 1rem; }
.info-box img {
  flex: 1;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item p {
  margin: 10px 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
   text-align: center; 
}
    .btn {
      display: inline-block;
      background: #c79810;
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
    .btn:hover { background: #a97c09; }
    footer {
      text-align: center;
      background: rgb(25, 103, 210);
      color: #ccc;
      padding: 25px 15px;
      font-size: 0.9rem;
    }
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: none;
      background: #0099ff;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 999;
    }
.logo img {
  height: 40px;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
}