* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    .announcement {
      background-color: #004080;
      color: #fff;
      padding: 11px 20px;
      text-align: center;
      font-size: 14px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 40px;
      z-index: 999;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #004080;
      text-decoration: none;
    }

    .menu {
      display: flex;
      gap: 20px;
      position: relative;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
    }

    .menu a:hover {
        text-decoration: none;
        color: #004080;
        font-weight: 500;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      min-width: 30% !important;
      z-index: 1000;
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f0f0f0;
      color: #004080;
      font-weight: 500;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @media (max-width: 991px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /*Product Page Banner*/

    .products-banner {
        background-image: url('/images/products-img-banner.jpg');
        background-size: cover;
        background-position: center;
        height: 300px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .products-banner .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        padding-left: 40px;
        padding-right: 20px;
        color: white;
    }

    .products-banner h1 {
        font-size: 36px;
    }

    .products-banner p {
        font-size: 16px;
    }

    /*All Products List CSS*/

    .products-header {
        text-align: center;
        padding: 40px 20px 10px;
    }

.products-header h1 {
  font-size: 32px;
  color: #004080;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px;
}

.filter-btn {
  background-color: #004080;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-btn:hover {
  background-color: #003060;
}

.filter-btn.active {
  background-color: #ffcb05;
  color: #000;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
}

.product-card {
  background: white;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  display: none; /* Hide by default */
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card h4 {
  padding: 10px;
  color: #004080;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 90%;
  }
}

    /*Mega Footer*/

    .mega-footer {
        background-color: #004080;
        color: white;
        padding: 40px 20px 10px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-col {
        flex: 1 1 220px;
        margin: 15px;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 15px;
        color: #ffcb05;
    }

    .footer-col p,
    .footer-col ul,
    .footer-col li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: #ffcb05;
    }

    .footer-col i {
        margin-right: 10px;
        color: #ffcb05;
    }

    .social-buttons {
        display: flex;
        gap: 20px;
        margin-top: 5%;
    }

    /* Common button styles */
    .icon {
        width: 50px;
        height: 50px;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        background-color: #ddd;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .icon:hover {
        transform: scale(1.1);
    }

    /* Facebook icon */
    .facebook {
        background-color: #3b5998;
    }

    .facebook::before {
        content: "f";
        position: absolute;
        font-size: 28px;
        color: white;
        font-family: sans-serif;
        font-weight: bold;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Instagram icon */
    .instagram {
        background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
    }

    .instagram::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        border: 2px solid white;
        border-radius: 4px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .instagram::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background: white;
        border-radius: 50%;
        top: 32%;
        left: 60%;
    }

    /* WhatsApp icon */
    .whatsapp {
        background-color: #25d366;
    }

    .whatsapp::before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M20.5 3.5a11.64 11.64 0 00-16.43 0 11.64 11.64 0 00-3.44 8.24c0 2.1.55 4.13 1.6 5.9L1 23l5.53-1.44a11.56 11.56 0 005.04 1.18h.02a11.64 11.64 0 008.23-3.43 11.64 11.64 0 000-16.43zM12.6 20.07a9.5 9.5 0 01-4.81-1.3l-.34-.2-3.28.86.88-3.19-.22-.33a9.57 9.57 0 01-1.42-5 9.48 9.48 0 012.79-6.76 9.55 9.55 0 016.77-2.8 9.5 9.5 0 016.76 2.8 9.55 9.55 0 012.8 6.77 9.52 9.52 0 01-2.8 6.76 9.55 9.55 0 01-6.76 2.8z"/><path d="M17.21 14.3c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.66.15-.2.3-.76.97-.93 1.17-.17.2-.34.22-.64.07-.3-.15-1.26-.46-2.4-1.48-.88-.79-1.47-1.76-1.64-2.06-.17-.3-.02-.46.13-.6.13-.13.3-.34.44-.5.14-.17.2-.3.3-.5.1-.2.05-.38 0-.53-.06-.15-.66-1.58-.9-2.17-.23-.6-.47-.52-.66-.53h-.57c-.2 0-.5.07-.76.3-.26.23-1 1-1 2.4 0 1.4 1 2.76 1.14 2.95.13.2 2 3.02 4.8 4.23.67.29 1.2.47 1.61.6.68.22 1.3.19 1.78.11.54-.08 1.77-.72 2.02-1.41.25-.7.25-1.3.17-1.41-.07-.1-.26-.15-.56-.3z"/></svg>');
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 10px;
        font-size: 14px;
        margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 25px;
    }
    }