/* Base Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
}

/* Slider wrapper */
.slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.slides {
  display: flex;
  gap: 5px;
  width: max-content;
  animation: slide 30s linear infinite;
}

.slides img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
}

@keyframes slide {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Header */
.header {
  background-color: #3049d1;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}

.header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.header p {
  margin: 0.5rem 0 1rem;
  font-size: 1.125rem;
}

.button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffc107;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.button:hover {
  background-color: #e0a800;
  color: white;
}

/* Contact Section */
.contact {
  background-color: #f1f1f1;
  padding: 2.5rem 1rem;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.whatsapp-logo,
.call-logo,
.gmail-logo {
  height: 50px;
  max-width: 100%;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card h3 {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  color: #333;
}

.card p {
  font-size: 1rem;
}

/* Services Section */
.section {
  text-align: center;
  padding: 2.5rem 1rem;
}

.bg-section {
  background: url('image/img5.webp') no-repeat center center/contain;

  background-size: 1000px;
}

.bg-section h2,
.bg-section h3,
.bg-section p {
  color: black;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.Qualities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.Quality {
  background-color: white;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.Quality:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.Quality h3 {
  margin-top: 0;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cards, .Qualities {
    flex-wrap: wrap;
  }
  .card, .Quality {
    width: 45%;
  }
  .slider {
    height: 30vh;
  }
}

@media (max-width: 600px) {
  .cards, .Qualities {
    flex-direction: column;
    align-items: center;
  }
  .card, .Quality {
    width: 90%;
    max-width: 320px;
  }
  .slider {
    height: auto;
    max-height: 300px;
  }
  .slides img {
    height: auto;
    max-height: 300px;
  }
  .header h1 {
    font-size: 1.75rem;
  }
  .header p {
    font-size: 0.875rem;
  }
  .button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem 1rem;
  font-size: 0.875rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-privacy,
.footer-terms {
  flex: 1 1 300px;
  min-width: 250px;
  margin: 10px 0;
}

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

.footer p,
.footer li {
  color: #ccc;
  line-height: 1.6;
}

.footer ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #999;
  background-color: #000;
}

/* Optional: Style links inside footer (if any) */
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffc107;
}

.footer-policies {
  flex: 1 1 100%;
  margin-top: 1rem;
}

.footer-dropdown {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.footer-dropdown summary {
  list-style: none;
  cursor: pointer;
  outline: none;
}

.footer-dropdown summary::-webkit-details-marker {
  display: none;
}

.footer-dropdown h3 {
  display: inline;
  color: #ffc107;
  font-size: 1.125rem;
  margin: 0;
}

.footer-dropdown ul {
  margin-top: 1rem;
  margin-left: 20px;
  padding-left: 0;
  list-style-type: disc;
}

.footer-dropdown li {
  margin-bottom: 8px;
  color: #ccc;
  line-height: 1.6;
}

.footer-dropdown p {
  color: #ccc;
  margin-top: 1rem;
  line-height: 1.6;
}
