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;
  }

  /* cotact seciton */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
}

.contact-header {
    text-align: center;
    padding: 20px 0;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-left,
.contact-right {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-left h3 {
    margin-bottom: 15px;
}

.contact-left p {
    margin-bottom: 15px;
    color: #666;
}

.contact-left ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.contact-left ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-left ul li span {
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    background-color: #197374;
    width:40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.social-icons {
    display: flex;
    margin-bottom: 20px;
}

.contact-left .social-icons a {
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: #197374;
    width:40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contact-right h3 {
    margin-bottom: 15px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right input,
.contact-right textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.contact-right button {
    padding: 10px;
    background: #197374;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    
}

.contact-right button:hover {
    background: #197374;
}

.map {
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}
  @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;
    }
}  