body {
    font-family: 'Anek Gurmukhi', sans-serif;
    background-color: #EFEFEF;
    margin: 0;
  }

 header {
  
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  top:0;
  z-index: 1001;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
}

  .menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: #001229;
  }

  .menu-icon:hover {
    color: #8BAEC3;
  }
  
  .logo  {
    width: 13%;
  }
  

/* Style for the search-bar */
  .search-bar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

  
  /* Style for the input field */
.search-bar input[type="text"] {
  padding: 10px;
  border: 2px solid #8BAEC3;
  border-radius: 25px;
  outline: none;
  width: 250px;
  font-size: 16px;
 margin-bottom: 10px;
}
  
  /* Style for the button */
.search-bar button {
  padding: 10px 20px;
  background-color: #8BAEC3;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.search-bar button:hover {
  background-color: #7a9bb5;
}

.search-bar button:focus {
  outline: none;
}
  
  /* General Navigation Styles */
  .navigation {
  position: fixed;
  flex-direction: column;
  top: 0;
  right: -325px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1002;
  padding: 20px;
  overflow-y: auto;
  border-left: 2px solid #8BAEC3;
}

.navigation.navigation-open {
  right: 0px;
}

  .navigation ul {
  list-style: none;
  padding: 0;
  align-self: flex-start;
}

.navigation ul li {
  margin: 15px 0;
}

.navigation ul li a {
  color: #001229;
  text-decoration: none;
  font-weight: bold;
}

.close-icon {
  align-self: flex-start;
  font-size: 30px;
  color: #001229;
  cursor: pointer;
  margin-bottom: 20px;
}

.close-icon:hover {
    color: #001229;
}
  
  /* Dropdown Menu Styles */
 /* Dropdown Menu Styles */
  .dropdown-content {
 display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: #001229;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropbtn {
  display: flex;
  align-items: center;
  font-weight: bold;
}

  
  .fas.fa-angle-down {
    margin-left: 5px;             /* Add some space between text and arrow */
    font-size: 18px;              /* Adjust icon size if necessary */
    align-self: flex-start;
  }
  
  /* Submenu for Injection - initially hidden */
  .injection-submenu {
    display: none;
    flex-direction: column;
    margin-left: 10px;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 2px solid #001229;
  }
  
  .fas.fa-angle-right{
    margin-left: 5px;             /* Add some space between text and arrow */
    font-size: 18px;              /* Adjust icon size if necessary */
    align-self: flex-start;
  }
  
  
footer {
    background-color: #001229;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    color: #EFEFEF;
  }
  
  .footer-column {
    width: 22%;
    
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #EFEFEF;
  }
  
  .footer-column p,
  .footer-column a {
    font-size: 14px;
    color: #EFEFEF;
    text-decoration: none;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a:hover {
    color: #8BAEC3;
  }
  .footer-column ul li a::before {
  content: "❯ ";
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-right: 5px;
}


.footer-submenu li a::before {
  content: none !important;
}

/* Footer Dropdown Styles */
.footer-dropdown {
  position: relative;
}

.footer-dropdown a {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.footer-submenu {
  display: none;
  flex-direction: column;
  margin-top: 8px;
  padding-left: 15px;
  border-left: 2px solid #8BAEC3;
}

.footer-submenu li {
  margin: 8px 0;
}

.footer-submenu li a {
  font-size: 13px;
  color: #EFEFEF;
  margin-left: 5px;
}

.footer-submenu li a:hover {
  color: #8BAEC3;
}



  section{
    padding:20px;
    color: #001229;
    margin-top:6%;
  }

  .feedback{
    background-color: #fff; 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .feedback ul{
    list-style: none; 
    padding-left: 0; 
  }

  .feedback ul li{
    margin-bottom: 15px;
  }

  /* Styles for the Feedback Form */
.feedbackform {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px; /* Space between the form and footer */
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between input fields */
}

label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

input[type="email"],
textarea,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    resize: vertical; /* Allow vertical resizing only */
}

.feedbacksubmit[type="submit"]{
    padding: 12px;
    background-color: #8BAEC3;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.feedbacksubmit[type="submit"]:hover {
    background-color: #7a9bb5;
}

/* Responsive Design */

/* For tablets and below (max 1024px) */
@media (max-width: 1024px) {
  nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
  }

  .product-categories {
    flex-wrap: wrap;
    justify-content: center;
  }

  .product-box {
    width: 80%;
    margin-bottom: 20px;
  }

  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-column {
    width: 40%;
    margin-bottom: 20px;
  }
}

/* For mobile phones (max 768px) */
@media (max-width: 768px) {
    main{
        margin-top:30%;
    }
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 50%;
    margin-bottom: 10px;
  }
  .part-one {
    display: flex;
    gap: 22px;
    align-items: flex-start; /* Adjust vertical alignment if needed */
}
  .search-bar input[type="text"] {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  width: 170px;
  font-size: 13px;
  }
 

  .search-bar {
    width: 100%;
    justify-content: flex-start;
  }
  .search-bar button {
  padding: 12px 20px;
  background-color: #8BAEC3;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
}

  /* Keep nav horizontal on mobile */
  nav ul {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
  }

  nav ul li a {
    font-size: 13px;
  }

  
  .main-content {
    margin-left: 5%;
    margin-right: 5%;
  }
.footer-container {
  flex-direction: column;
  align-items: flex-start;   /* LEFT align */
}

.footer-column {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.footer-column ul {
  padding-left: 0;
}

.footer-column ul li a::before {
  content: "❯ ";
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin-right: 5px;
}


}

