* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d0f0f9;
    padding: 15px 30px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  .logo span {
    font-size: 80px;
    font-weight: bold;
    color: #000;
  }

  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }

  /* Reset default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #d4f6ff;
  font-family: Arial, sans-serif;
  padding: 20px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 20px;
  margin-bottom: 20px;
}

.breadcrumb .home {
  color: #888;
  cursor: pointer;
}

.breadcrumb .arrow {
  margin: 0 8px;
}

.breadcrumb .current {
  font-weight: bold;
  color: #000;
}

/* Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

body {
  margin: 0;
  padding: 20px;
  font-family: sans-serif;
  background-color: #d4f6ff;
}

.gallery-container {
  max-width: 1000px;
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.round-image {
  border-radius: 50%;
  object-fit: cover;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 30px;
  }
  
  .pagination button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 8px 12px;
    margin: 2px;
    cursor: pointer;
  }
  
  .pagination .active {
    background-color: #0077aa;
    color: white;
    border-color: #0077aa;
  }

  .main-footer {
    background-color: #1c1c1c;
    color: white;
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-service {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
  }
  
  .footer-about h3,
  .footer-service h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-links ul {
    list-style-type: disc;
    padding-left: 1rem;
  }
  
  .footer-links li {
    margin: 0.5rem 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #90caf9;
  }
  
  .footer-service .contact-item {
    background-color: #ccc;
    color: #000;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-service {
      margin: 1rem 0;
    }
  
    .footer-links ul {
      padding-left: 0;
      list-style-position: inside;
    }
  }

