body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f8f9fa; }

header { background: #1877f3; color: #FFFFFF; padding: 20px 0; }

header h1 { margin: 0; text-align: center; }

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

nav ul li {
  display: flex;
  align-items: center;
  margin: 0;
}

nav ul li a { color: #FFFFFF; text-decoration: none; font-weight: bold; }

main { padding: 20px; max-width: 900px; margin: auto; background: #FFFFFF; }

section img { display: block; margin: 20px auto; border-radius: 8px; }

footer { background: #263238; color: #FFFFFF; text-align: center; padding: 10px 0; margin-top: 30px; }

video { display: block; margin: 20px auto; border-radius: 8px; }

.footer-container {
  background: #FFFFFF;
  color: #222222;
  padding: 0;
  text-align: center;
  /* border-top removed to eliminate horizontal bar */
}
.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-block;
  color: #222222;
  background: #f5f5f5;
  padding: 6px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  min-width: 120px;
  border: 1px solid #eeeeee;
}
.social-links a i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
  color: inherit;
  transition: color 0.2s;
}
/* Individual icon colors */
.fa-facebook-f { color: #1877f3; }
.fa-instagram { color: #e4405f; }
.fa-youtube { color: #ff0000; }
.fa-whatsapp { color: #25d366; }
.fa-linkedin-in { color: #0a66c2; }
.fa-envelope { color: #fbbc05; }
.social-links a:hover {
  background: #007bff;
  color: #FFFFFF;
}
.social-links a:hover .fa-facebook-f,
.social-links a:hover .fa-instagram,
.social-links a:hover .fa-youtube,
.social-links a:hover .fa-whatsapp,
.social-links a:hover .fa-linkedin-in,
.social-links a:hover .fa-envelope {
  color: #FFFFFF;
}
.footer-note {
  color: #000000;
  font-size: 14px;
  margin-top: 15px;
}

/* Gallery Styles */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}
.gallery-title {
  text-align: center;
  color: #1877f3;
  font-size: 2.5em;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.2s;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: #333;
  background: #f8f9fa;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-img { height: 200px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-img { height: 160px; }
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 90vw;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  text-align: left;
}
.modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.5em;
  color: #1877f3;
  cursor: pointer;
}
.modal-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 18px;
}

