body {
        font-family: Arial, sans-serif;
        background-color: #f8f9fa;
        background-image: url("AbtSarawak.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
      }
      .header {
        background-color: white;
        padding: 20px;
        border-bottom: 1px solid #ddd;
      }
      .search-bar input {
        border-radius: 20px;
        padding: 5px 15px;
      }
      .products-container {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 20px;
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
      }
      .product-img {
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
      }
      .product-img img {
        max-width: 100%;
        max-height: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        transition: transform 0.3s ease;
      }
      .product-img:hover img {
        transform: scale(1.05);
      }
      .info-box {
        background-color: #74b9ff;
        padding: 20px;
        text-align: center;
        font-weight: bold;
        border-radius: 10px;
        height: 100%;
      }
      /* New styles for better image arrangement */
      .products-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
      }
      .product-card {
        background: white;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex: 1 1 160px;
        max-width: 180px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        text-align: center;
       }

        /* Add this to control the image container */
        .product-card img {
            width: 100%; /* or specific width like 120px */
            height: auto;
            object-fit: contain; /* keeps aspect ratio */
            margin: 0 auto; /* centers horizontally */
            display: block;
        }

        /* Optional: Add a fixed height container for the image */
        .product-image-container {
            height: 120px; /* adjust as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
      .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }
      .product-name {
        margin-top: 10px;
        font-weight: bold;
        font-size: 14px;
        color: #333;
      }
      /* Footer Styles */
        .footer {
          background-color: #2c3e50;
          color: #ecf0f1;
          padding: 40px 0 20px;
          font-size: 14px;
        }
        
        .footer a {
          color: #ecf0f1;
          text-decoration: none;
          transition: color 0.3s ease;
        }
        
        .footer a:hover {
          color: #3498db;
        }
        
        .footer-section {
          margin-bottom: 20px;
        }
        
        .footer-heading {
          color: #3498db;
          font-size: 18px;
          margin-bottom: 20px;
          padding-bottom: 10px;
          border-bottom: 1px solid rgba(255,255,255,0.1);
          position: relative;
        }
        
        .footer-heading::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -1px;
          width: 50px;
          height: 2px;
          background: #3498db;
        }
        
        .footer-links {
          list-style: none;
          padding: 0;
        }
        
        .footer-links li {
          margin-bottom: 10px;
        }
        
        .footer-links i {
          margin-right: 8px;
          color: #3498db;
        }
        
        .operation-hours .hours-item {
          display: flex;
          margin-bottom: 15px;
          align-items: flex-start;
        }
        
        .operation-hours i {
          margin-right: 10px;
          color: #3498db;
          margin-top: 3px;
        }
        
        .operation-hours span {
          display: block;
          line-height: 1.4;
        }
        
        .newsletter .form-control {
          border-radius: 0;
          border: none;
          background: rgba(255,255,255,0.1);
          color: white;
        }
        
        .newsletter .form-control::placeholder {
          color: #bdc3c7;
        }
        
        .newsletter .btn {
          border-radius: 0;
          background: #3498db;
          border: none;
        }
        
        .social-media {
          margin-top: 20px;
        }
        
        .social-icon {
          display: inline-block;
          width: 36px;
          height: 36px;
          background: rgba(255,255,255,0.1);
          border-radius: 50%;
          text-align: center;
          line-height: 36px;
          margin-right: 8px;
          transition: all 0.3s ease;
        }
        
        .social-icon:hover {
          background: #3498db;
          color: white;
          transform: translateY(-3px);
        }
        
        .footer-bottom {
          color: #bdc3c7;
        }
        
        .copyright-text {
          display: block;
          margin-top: 10px;
        }
        
        .footer-logo img {
          filter: brightness(0) invert(1);
          opacity: 0.8;
        }