body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
header {
  color: #111;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo h4 {
  font-size: 22px;
}

.nav-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-item ul li {
  margin: 0 10px;
}

.nav-item ul li a {
  color: #111;
  text-decoration: none;
  /* display: block; */
  padding: 8px 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.ri-shopping-cart-line {
  font-size: 30px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  padding: 10px 0px;
  z-index: 9;
}

.dropdown-content a {
  color: black;
  padding: 35px;
  text-decoration: none;
  display: block;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 15px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-toggle {
  display: none;
}
.nav-toggle i {
  font-size: 30px;
  color: #111;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 9;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #111;
  display: block;
  transition: 0.3s;
  cursor: default;
}

.sidenav a:hover {
  color: #111 !important;
}

.sidenav span i {
  font-size: 50px;
  color: #111;
  cursor: default;
}
/* Add this to the existing CSS */
.sidenav .dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  padding: 10px 0px;
  width: 100%;
}

.sidenav .dropdown-content a {
  color: black;
  padding: px;
  text-decoration: none;
  display: block;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 5px;
}

.sidenav .dropdown-content a:hover {
  background-color: #f1f1f1;
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 16px;
  }
  .navbar-toggle .toggle-icon {
    cursor: default !important;
  }
}

/* footer */
footer {
  background-color: #f8f8f8;
  padding: 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-section p {
  font-size: 15px;
  color: #111;
  opacity: 0.8;
  /* margin-bottom: 20px; */
}
.footer-section ul {
  list-style: none;
  padding: unset;
}

.footer-section ul li {
  margin-bottom: 8px;
  padding: 0px 0px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  opacity: 0.8;
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: #197374;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* about section */
main {
  margin-top: 70px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  background-color: #197374;
  padding: 60px 20px;
  color: #ffff;
}

.gallery {
  background: #f7f7f7;
  padding: 30px 0;
}

.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.content-section {
  background: #fff;
  padding: 40px 0;
}

.content-section .container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text-block {
  width: 500px;
  background: #fafafa;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}
.text-block p {
  opacity: 0.8;
  line-height: 1.6;
}
.highlight {
  text-align: center;
  background: #fafafa;
  padding: 40px 20px;
}

.highlight-content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.features {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.features .features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature {
  text-align: center;
}

.feature img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* services section end */
@media screen and (max-width: 768px) {
  .nav-item ul li {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-item ul li:nth-child(5) {
    display: block;
  }

  .footer-container {
    flex-wrap: wrap;
  }
  .about-header {
    padding: 40px 15px;
  }

  .gallery .container {
    gap: 15px;
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .content-section .container {
    gap: 15px;
  }

  .features .features-list {
    gap: 15px;
  }
  .container {
    width: 90%;
  }
  .gallery img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
}
