body,html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  .index {
    position: fixed;
    top: -20px;
    left: 0;
    width: 100%;
    background-color: #e2dddd;
    color: #212121;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    z-index: 1000;
}

.index span { color: #d32f2f;}

#clogo {
    position: fixed;
    background-color: white;
    top: 37px;
    left: 0;
    right: 0;
    padding: 10px 20px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
  }

#companycontact {
margin-left: 200px;
display: flex;
align-items: center;}

#companycontact img { margin-right: 10px;}

#companycontact h3 {
font-size: 18px;
margin-left: 50px;
margin-top: -30px;}

#companycontact p {
font-size: 16px;
margin-left: -100px;
margin-top: 55px;
}

#companylogo img {   height: 80px;}

#searchbar {
margin-right: 150px;
display: flex;
align-items: center;
background-color: #e2dddd;
padding: 5px 10px;
border-radius: 10px;
}

#searchbar img { margin-right: 10px;}

#searchbar input {
padding: 8px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
width: 200px; /* Ensure the input box is not too small */}

nav {
position: fixed;
top: 146px;
left: 0;
width: 100%;
background-color: #e2dddd;
color: #333;
padding: 10px 0;
text-align: center;
z-index: 998;
}

nav a {
color: #333;
text-decoration: none;
margin: 0 15px;
font-size: 16px;
font-weight: bold;
}

nav a:hover { color: #f39c12;}

.order-link {
position: relative;
display: inline-block;
}

.dropdown {
display: none;
position: absolute;
/* background-color: #f1f1f1; */
min-width: 160px;
z-index: 1;
top: 100%; /* Position dropdown below the link */
left: 0;
}

.order-link:hover .dropdown {
display: block;
}

.dropdown a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown a:hover {
background-color: #e2dddd;
border-radius: 10px;
}

.signup {
    background: #e2dddd;;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 10px;
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    margin-top: 170px;
    height: 40px;
}


#cnewa {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    background: #e2dddd;;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: -20px;
}


.signupform {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


strong {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

input:focus {
    border-color: #28a745;
    outline: none;
}

input::placeholder {
    color: #888;
}

input[type="submit"], 
input[type="reset"] {
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover, 
input[type="reset"]:hover {
    background-color: #218838;
}

.ahalp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.ahalp a {
    color: #28a745;
    text-decoration: none;
    font-size: 16px;
}

.ahalp a:hover {
    text-decoration: underline;
}

.ahalp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background:  #e2dddd;;
}

#buttons{
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

#buttons input[type="reset"]{
  margin-left: 150px;
}

#buttons input[type="submit"]{
  margin-right: 150px;
}











#showsrarch {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    margin-top: 175px;
    margin-bottom: -200px;
    display: flex;
    flex: wrap;
  }
  
  .product {
   
    background-color: #e2dddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .product h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .product p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
  }
  
  .product p:last-of-type {
    font-weight: bold;
  }
  
  .product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  button {
    background-color: #20c997;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #ff4500;
  }