* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #004466;
}

.header {
  background: #004466;
  color: #fff;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo p {
  font-size: 15px;
  font-weight: 100;
  font-style: italic;
}

.nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1rem;
  margin-top: 0.5rem;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
}

.nav a:hover {
  background: #007799;
  border-radius: 5px;
}

.hero {
  background: #e0f7fa;
  padding: 3rem 0;
  /* border-style: inset; */
}
.hero h1 {
  color: #004466;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.services {
  padding: 3rem 0;
  background: #f5f5f5;
}

.service li {
  list-style: none;
  text-align: center;
}

.service h2 {
  color: #007799;
  text-decoration: underline;
}

.service h4 {
  color: #004466;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.service {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.service img {
  width: 100%;
  border-radius: 5px;
}

.about {
  padding: 3rem 0;
}

.testimonials {
  background: #e0f7fa;
  padding: 3rem 0;
}

.testimonial-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial {
  background: #fff;
  padding: 1rem;
  border-left: 4px solid #007799;
  border-radius: 5px;
}

.gallery-section {
  padding: 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

.swiper {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #0078999d;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* .swiper-button-next,
.swiper-button-prev {
  color: #ffffff; 
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ffffff; 
}

.swiper-pagination-bullet {
  background: #ccc; 
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007799; 
} */
.contact {
  padding: 3rem 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 0.75rem;
  border: none;
  background: #004466e5;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  background: #003552;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.footer h3 {
  padding: 15px 0px;
  color: #00f7ffb9;
}

.footer p {
  padding: 5px 0px;
}

.footer a {
  color: white;
}

.footer-quicklinks ul li {
  list-style: none;
  text-align: left;
}
.footer-quicklinks ul li a {
  text-decoration: none;
  color: white;
}
.footer-quicklinks ul li a:hover {
  text-decoration: underline;
  color: white;
}

.footer-specalists {
  text-align: left;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .nav ul {
    justify-content: center;
  }

  .service-boxes {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
    text-align: center;
  }

  .nav ul {
    display: none;
    flex-direction: column;
    background: #004466;
    padding: 1rem 0;
  }

  .nav.show ul {
    display: flex;
  }

  .nav ul li {
    text-align: center;
    margin: 0.5rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* For screens up to 1024px */
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    text-align: left;
  }

  .footer > div {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .footer h3 {
    font-size: 1.4rem;
  }

  .footer p,
  .footer a,
  .footer li {
    font-size: 1.1rem;
  }
}

/* For screens up to 767px (mobiles) */
@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
    text-align: left;
  }

  .footer > div {
    width: 100%;
    margin-bottom: 1rem;
  }

  .footer h3 {
    font-size: 1.2rem;
  }

  .footer p,
  .footer a,
  .footer li {
    font-size: 1rem;
  }

  .footer-specialists {
    text-align: left;
  }
}

/* --------------------------------blog------------------------------------------------------------------ */

.blog-header {
  text-align: center;
}

.blog-header h1 {
  color: #007c91;
}

.post-meta{
  color: #1b857cc2;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #44595a;
}

.blog-page {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.blog-post h1 {
  color: #007c91;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-post h2 {
  color: #000000ea;
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.blog-post h3 {
  color:  #007c91 ;
  margin-top: 1rem;
  font-size: 1.2rem;
  text-decoration: underline;
}

.blog-post ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-post li {
  margin-bottom: 0.5rem;
  list-style:disc ;

}

.read-more-btn {
  display: inline-block;
  background-color: #007c91;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1rem;
}

.hidden {
  display: none;
}

#blog-content {
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.5s ease;
}

#blog-content.expanded {
  max-height: 5000px; /* large enough to show full content */
}
