* {
    Margin: 0;
    Padding: 0;
    box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Poppins, Arial, sans-serif;
  background-color: #f4f4f4;
  color: #202020;
  display: flex;
  flex-direction: column;
}



.container {
  flex: 1;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

html, body {
  min-height: 100svh;
  min-height: 100vh;
}

body::after { content: ''; display: block; height: 10vh; }



.header {
  position: fixed;
  background-color: #202020;
  height: 10vh;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.gallery {
  color: white;
  font-size: 4.5vh;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 12vh;
  Margin-top: 12vh;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 601px) and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}



.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  z-index: 9999;
  padding: 1.5vh 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-info a {
  width: 7vh;
  height: 7vh;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #202020;
  text-decoration: none;
}

.contact-info a svg {
  width: 4vh;
  height: 4vh;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info a:hover {
  background-color: #cecece;
  color: #000000;
}

@keyframes slideLeftRight {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* Right Side Icon */
.gt-icon-right {
  position: fixed;
  right: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-right a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Left Side Icon */
.gt-icon-left {
  position: fixed;
  left: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-left a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

