* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1e3a8a;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}

header h1 a {
  color: white;
  text-decoration: none;
}

nav {
  background-color: #1e40af;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffdd57;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.search-box {
  text-align: center;
  margin-bottom: 20px;
}

.search-box input {
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.section {
  margin-bottom: 40px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  opacity: 1 !important;
  transform: none !important;
}

.service-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-item img {
  max-width: 100%;
  border-radius: 10px;
}

.testimonials {
  background-color: #e5e7eb;
  padding: 20px;
  border-radius: 10px;
}

.testimonial-item {
  margin-bottom: 15px;
}

footer {
  background-color: #1e3a8a;
  color: white;
  text-align: center;
  padding: 10px;
}

.btn {
  display: inline-block;
  background-color: #1e40af;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e3a8a;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1e40af;
    padding: 10px 0;
    align-items: center;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .nav-links.active {
    display: flex;
  }
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
