body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

/* adree which i add later */

.top-bar {
  background-color: #003366;
  color: white;
  font-size: 14px;
  padding: 5px 20px;
  text-align: center;
}

.top-bar span {
  margin: 0 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 13px;
    padding: 10px;
  }
  .top-bar span {
    display: block;
    margin: 5px 0;
  }
}


header {
  background-color: #004080;
  color: white;
  padding: 20px 0;
  text-align: center;
}


.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
}

.language-switcher a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}







nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #003366;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  display: inline-block;
}

nav ul li a:hover {
  background-color: #0059b3;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-container img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #ccc;
  border-radius: 10px;
  transition: transform 0.3s ease;
}


.gallery-container img:hover {
  transform: scale(1.05);
  border-color: #004080;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
}

     /* services                             and */

     .services {
  padding: 40px 20px;
  background-color: #fefefe;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #004080;
}

.service-box {
  background: #e6f2ff;
  margin: 15px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 10px;
  border-left: 8px solid #004080;
  text-align: left;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.service-box h3 {
  margin-top: 0;
  color: #003366;
}

/* gallery                   gallery */


.btn-gallery {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #004080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn-gallery:hover {
  background-color: #0066cc;
}

/*                      contacts */

.contact {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-box {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}

.contact-box a {
  color: #004080;
  text-decoration: none;
}

.map {
  margin: 20px auto;
  max-width: 800px;
}

.form-section {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  padding: 10px 20px;
  background-color: #004080;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-section button:hover {
  background-color: #0066cc;
}

/* whats app  */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* about                             us */

.about {
  padding: 40px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 800px;
  margin: auto;
  background: #f1f9ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-container h2 {
  color: #004080;
  margin-top: 20px;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.about-container ul {
  list-style: none;
  padding-left: 0;
  font-size: 17px;
}

.about-container ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.about-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

/* responsive                      */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero {
    padding: 50px 20px;
  }

  .gallery-container,
  .testimonial-container,
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-container img,
  .gallery-item {
    width: 90% !important;
    height: auto !important;
  }

  .service-box {
    margin: 15px 10px;
    padding: 15px;
  }

  .about-container,
  .form-section,
  .map {
    width: 95%;
    padding: 20px;
  }

  .testimonial-card {
    max-width: 90%;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }

  h1, h2, h3 {
    font-size: 1.5em;
  }

  body {
    font-size: 16px;
  }
}
