* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: #f9f9f9; color: #333; }


/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  background: #222; color: #fff; padding: 1rem 2rem;
}
.logo { font-size: 1.7rem; font-weight: bold; color: #00bcd4; }
.menu-toggle { font-size: 2rem; cursor: pointer; color: #fff; }
.nav-links {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100%;
  background: rgba(0,0,0,0.9); padding: 2rem; list-style: none; transition: right 0.3s ease; z-index: 1000;
}
.nav-links.active { right: 0; }
.nav-links li { margin: 1.5rem 0; }
.nav-links a { color: #fff; text-decoration: none; font-size: 1.3rem; }
.close { color: #fff; font-size: 2rem; text-align:top right;display:block; }


/* Image Slider */
/* Fix slider button positions */
.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.slide-container {
  position: relative;
  display: none;
}

.slides {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation buttons fix */

button.prev, button.next {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  user-select: none;
}

button.prev {
  left: 0;
}

button.next {
  right: 0;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



/* Contact Section */
.contact {
  background: #f3f3f3; padding: 3rem 1rem;
}
.contact h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; color: #222; }
form {
  max-width: 500px; margin: auto; background: #fff;
  padding: 2rem; border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
input, textarea {
  width: 100%; padding: 0.9rem; margin-bottom: 1rem;
  border: 1px solid #ccc; border-radius: 5px; font-size: 1rem;
}
button {
  width: 100%; padding: 0.9rem; background: #00bcd4; color: #fff;
  border: none; border-radius: 5px; font-size: 1rem; cursor: pointer;
}
button:hover { background: #0097a7; }
    .message {
      text-align: center;
      margin-top: 0.5rem;
      font-size: 0.95rem;
    }


    .error {
      color: #ff6b6b;
    }


    .success {
      color: #66ff99;
    }



/* Footer */
.footer { background: #111; color: #fff; padding: 2rem 1rem; }
.footer-container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem;
}
.footer a { color: #00d1ff; text-decoration: none; }
.footer-bottom { text-align: center; margin-top: 1rem; color: #ccc; }
.social-icons a img { width: 30px; margin-right: 10px; filter: brightness(1); }
@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: center; }
}
/* Smooth Scroll & Section Styling */
html {
  scroll-behavior: smooth; /* Smooth scrolling for in-page links */
}


.section {
  padding: 4rem 1rem;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}


.section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}


.section p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
