 /* ========== TOP CONTACT BAR ========== */
.top-contact-bar {
  background: linear-gradient(to right, #1d1f21, #000000);
  color: #ddc7c7;
  font-size: 13px;
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 7999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.top-contact-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 10px;
  flex-direction: row;
}
.top-contact-bar span {
  margin: 0 5px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.top-contact-bar span:hover {
  color: #00ffae;
}

/* Responsive Top Bar - Keep in One Line on Mobile */
@media (max-width: 768px) {
  .top-contact-bar .container {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 8px 10px;
  }
  .top-contact-bar span {
    margin: 0 5px;
    font-size: 12px;
  }
}
.gallery-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.gallery-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-item {
  overflow: hidden;
  border: 3px solid #ccc;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
}
