body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111; /* Even darker black background for yellow/white/black scheme */
  color: #ffd600;
  overflow-x: hidden;
}

/* Gallery Section */
#gallery {
  padding: 50px 20px;
  background: #181818;
}

#gallery h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #ffd600;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 1px;
}

#gallery h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #ffd600;
  margin: 10px auto 20px auto;
  border-radius: 2px;
}

/* Masonry Grid */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #222;
  border: 2px solid #ffd600;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(0.06) brightness(0.96) contrast(1.05);
  background: #111;
}

.gallery-item:hover {
  box-shadow: 0px 0px 20px 3px #ffd600cc;
  border-color: #fff;
  transform: scale(1.03);
}

.gallery-item:hover img {
  filter: brightness(1.18) grayscale(0) contrast(1.13);
  transform: scale(1.05) rotate(-2deg);
}

/* Fullscreen Modal */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-modal img {
  max-width: 94vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 8px #ffd60088;
  border: 4px solid #ffd600;
  background: #111;
}

.fullscreen-modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.1rem;
  color: #ffd600;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10001;
  background: #111;
  border-radius: 50%;
  padding: 4px 12px;
  border: 2px solid #ffd600;
}

.fullscreen-modal .close:hover {
  color: #fff;
  border-color: #fff;
  background: #ffd600;
}

.fullscreen-modal .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #ffd600;
  cursor: pointer;
  z-index: 10000;
  background: #111;
  border-radius: 50%;
  padding: 4px 14px;
  border: 2px solid #ffd600;
  transition: color 0.2s, border 0.2s, background 0.2s;
}

.fullscreen-modal .arrow.left {
  left: 20px;
}

.fullscreen-modal .arrow.right {
  right: 20px;
}

.fullscreen-modal .arrow:hover {
  color: #fff;
  border-color: #fff;
  background: #ffd600;
}

/* Responsive Gallery */
@media (max-width: 1100px) {
  .gallery-grid {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
    max-width: 98vw;
  }
  #gallery {
    padding: 30px 8px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
    max-width: 100vw;
    padding: 0 3px;
  }
  #gallery {
    padding: 18px 2px;
  }
  .fullscreen-modal img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .fullscreen-modal .close, .fullscreen-modal .arrow {
    font-size: 1.4rem;
    padding: 2px 6px;
  }
}


/* Why Choose Us Section */
.why-choose-us-section {
  padding: 60px 20px;
  background: #fffde7;
  color: #111;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd600;
  position: relative;
}

.heading-underline {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #ffd600, #111);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.why-choose-us-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.why-card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card .card-front,
.why-card .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(255, 214, 0, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
}

.why-card .card-front {
  background: #fff;
}

.why-card .card-back {
  background: #111;
  color: #ffd600;
  transform: rotateY(180deg);
}

.why-card:hover .card-front {
  transform: rotateY(180deg);
}

.why-card:hover .card-back {
  transform: rotateY(360deg);
}

.why-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd600;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .why-card {
    height: 250px;
  }

  .why-card .icon {
    font-size: 2.5rem;
  }
}




/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1e1e1e, #333);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headers with Underlines */
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
  position: relative;
}

.header-underline {
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 20px auto;
}

/* Company Info */
.footer-company {
  text-align: left;
  max-width: 250px;
}

.company-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-company a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-company a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* Map Section */
.footer-map iframe {
  border-radius: 10px;
  border: 2px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Social Links */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px #ffcc00;
}

.newsletter-button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #ffcc00;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.1);
  background: #e6b800;
}

.newsletter-success {
  margin-top: 10px;
  display: none;
  color: #ffcc00;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
    max-width: 300px;
  }

  .footer-company,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}