* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

/* General styling for the header */
/* Style for the header and icons container */
.header-icons {
margin-top: 20px;
}

.icons {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px; /* Add padding for spacing */
}

a {
text-decoration: none;
display: inline-block; /* Ensure the link wraps the image fully */
}


/* Style the link container */
.left-icon {
display: flex;
align-items: center; /* Align the icon and text vertically */
text-decoration: none; /* Remove underline from the link */
color: #000; /* Text color (can be customized) */
gap: 10px; /* Space between the icon and the text */
}

/* Style the icon */
.left-icon img {
width: 20px; /* Set icon size */
height: 20px;
}

.right-icons {
display: flex;
gap: 10px; /* Space between the right-side icons */
}

.right-icons img {
width: 20px; /* Set icon size */
height: 20px;
}

/* Style the phone number */
.left-icon span {
font-size: 16px; /* Adjust font size */
}

/* Header Styling */
header {
width: 100%;
background-color: #f8f8f8;
}

/* General Header Styling */
.header-container {
  max-width: 1200px; /* Restrict container width */
  margin: 0 auto; /* Center the container */
  padding: 0 15px; /* Small padding for better alignment */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd; /* Optional: Add a bottom border */
  background-color: #fff; /* Set header background color */
}

/* Logo Styling */
.navbar-logo {
  flex-shrink: 0; /* Prevent logo from resizing */
}

.navbar-logo img {
  max-height: 70px;
  display: block;
  border-radius: 15px; /* Smoother corners */
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.3);
  opacity: 0.9;
}

/* Menu Styling */
.menu {
  display: flex;
  align-items: center;
  gap: 20px; /* Even spacing between menu items */
  font-family: 'poppins' sans-serif;
}

.menu .nav-link {
  display: flex; /* Ensures equal size */
  align-items: center;
  justify-content: center;
  width: 140px; /* Fixed width */
  height: 50px; /* Fixed height */
  text-align: center; /* Centers text */
  padding: 10px 15px;
  margin: 0; /* Remove default margin */
  color: #161515; /* Default text color */
  background-color: #f9f9f9; /* Light background */
  border: 1px solid #ddd; /* Border for structure */
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.menu .nav-link:hover {
  background-color: #40413f; /* Hover background */
  color: #fad60c; /* Hover text color */
  transform: scale(1.05); /* Hover zoom effect */
}

/* Button Styling */
.menu .btn {
  background: linear-gradient(#b49900e5, rgb(255, 170, 14), rgb(77, 68, 68));
  color: rgb(8, 8, 8);
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu .btn:hover {
  background-color: #0c0c0c;
  color: white;
  transform: scale(1.05);
}

/* Responsive Menu Button */
.btn-primary {
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
}

/* Small Screens */
@media (max-width: 768px) {
  .navbar {
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .navbar-logo img {
      max-height: 50px; /* Smaller logo */
  }

  .menu {
      display: none; /* Hide menu links */
  }

  #navbarMenu {
      display: none; /* Hidden by default */
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 15px;
  }

  .collapse.show {
      display: flex !important; /* Display menu when toggled */
  }

  #navbarMenu .nav-link {
      width: 100%; /* Full width for links */
      text-align: center;
  }

  .btn-primary {
      margin: 10px 0;
  }
}

/* Adjusted Spacing for Center Alignment */
.navbar .menu {
  flex-grow: 1;
  justify-content: center;
  margin-left: 20px; /* Space between logo and menu */
}

.navbar .btn {
  margin-left: auto; /* Push button to far right */
}




.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.container-hos-med{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}
.product-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: white;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease-in-out;
}

.product-card p {
  font-size: 1.1rem;
  color: #333;
  margin: 10px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 0 0 10px 10px;
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover p {
  color: #ffa600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
      grid-template-columns: 1fr;
  }
}




@media (max-width: 768px) {

    .subscription-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      }
      .subscription-text,
      .subscription-form {
        flex: 1;
        width: 100%;
        margin-bottom: 10px;
      }
      .subscription-form {
        justify-content: flex-start;
      }
      .subscription-form input[type="email"],
      .subscription-form button {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
      }
      
    header {
        flex-direction: column;
        align-items: center;
    }
  
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
  
    nav a {
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
  
    .menu-button {
        display: block;
    }
  
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  
    .icons {
        margin-top: 10px;
        gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    nav a {
        font-size: 14px;
    }
  }
   
  .subscription-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, #fae06b, #fae06b);
    color: rgb(12, 12, 12);
    opacity: 75%;
    border-top: 2px solid #dfe7ed;
    width: 100%; /* Ensure it takes the full width */
    margin: 0; /* Remove any default margins */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
  }
  
  .subscription-text {
    display: flex;
    align-items: center;
  }
  .subscription-text img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .subscription-text p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  .subscription-form {
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    align-items: center; /* Center the text and inputs horizontally */
    gap: 10px; /* Add spacing between the elements */
  }
  .subscription-form p {
    font-size: 16px;
    color: #555;
    margin: 0; /* Remove default paragraph margin */
    text-align: center; /* Center-align the text */
  }
  .input-group {
    display: flex;
    flex-wrap: wrap; /* Ensure inputs wrap on smaller screens */
    justify-content: center; /* Center-align the input group */
    gap: 10px; /* Space between input and button */
  }
  
  .input-group input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1; /* Allows the input to expand */
    min-width: 200px;
  }
  
  .input-group button {
    background-color: #050505;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .input-group button:hover {
    background-color: #f0d910;
    color: rgb(14, 13, 13);
  }
  
  .icons img {
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
    border-radius: 20px;
  }

  .hos-medic{
    color: rgb(0, 0, 0);
    background-color: rgb(219, 187, 2);
    margin: 30px;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
    
  }
.odo-desc{
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
