body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Sticky header with shadow */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #2c3e50;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo img {
  height: 50px;
}

/* Centered nav links */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Hover effect */
.nav-links li a:hover {
  color: #e67e22;
}

/* CTA button */
.cta-button1 {
  margin-left: auto;
}

.cta1 {
  background-color: #4CAF50;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta1:hover {
  background-color: #d35400;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #f1f1f1;
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-center,
  .cta-button {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    background-color: #2c3e50;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links li a {
    padding: 0.5rem 0;
  }
}

/* styles.css */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start slightly lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

#gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid */
    gap: 45px; /* Space between items */
}

.gallery-item {
    position: relative;
    overflow: hidden; /* Hide overflow for overlay effect */
    border-radius: 8px; /* Rounded corners */
    animation: fadeInUp 0.5s ease forwards; /* Apply animation */
}

.gallery-item img {
    width: 350px; /* Make images responsive */
    height: 300px; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

.gallery-item:hover img {
    transform: scale(1.05); /* Zoom effect on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start hidden */
    transition: opacity 0.3s ease; /* Smooth transition for overlay */
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2c3e50;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    h2 {
        font-size: 1.5em; /* Smaller heading on mobile */
    }
}



.site-footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  color: #e67e22;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #4CAF50;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-social {
  text-align: center;
  margin-top: 1.5rem;
}

.footer-social a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #4CAF50;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: 100%;
  }
}