@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

    html, body, h1, h2, h3, p, ul, ol, li {
    margin: 0;
    padding: 0;
    }
    body {
      font-family: 'Roboto', sans-serif;
    }

    header .site-header {
      background:#fce6cc;
      padding: 20px 30px;
    }

    .header-content {
      display: flex;
      align-items: flex-start;
      padding-left: 10px;
      justify-content: center;
      text-align: center;
    }

    .logo {
      height: 150px;
      width: auto;
      margin-bottom: 10px;
      
      
    }

    .company-info h1 {
      font-size: 40px;
      font-weight: bold;
      color: #333;
      padding-top: 25px;
      
    }

    .company-info p {
      font-size: 14px;
      color: #777;
    }

    .sub-header {
      background:white;
      padding: 10px 0;
      text-align: center;
    }

    .sub-header nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }

    .slider {
      position: relative;
      max-width: 100%;
      height: 400px;
      overflow: hidden;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 1s ease-in-out;
    }

    .slides img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      flex-shrink: 0;
    }
    /*product card*/
    .products {
      padding: 50px 15px;
      background: #eef;
      text-align: center;
    }

    .products h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2d3e50;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .products h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #0077cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    .clients h2 {
      font-size: 36px;
      font-weight: 700;
      color: #2d3e50;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }
    .clients h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #0077cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    /*.product-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .product {
      background: white;
      border-radius: 12px;
      padding: 25px;
      width: 280px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }*/
    .product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Ensures 3 per row with space */
  gap: 30px;
  padding: 30px;
}

.product {
  width: calc(33.333% - 20px); /* Adjusted for gap */
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product:hover {
  transform: translateY(-5px);
  background-color: #f0f8ff;
}

.product img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
    }

    .product h3 {
      margin-top: 15px;
      font-size: 18px;
    }

    .features {
      list-style-type: none;
      padding-left: 0;
      margin-top: 10px;
      text-align: left;
    }

    .features li {
      margin-bottom: 5px;
      font-size: 14px;
      padding-left: 1.5em;
      position: relative;
      line-height: 1.6;
      text-indent: -1.2em;
    }

    .features li::before {
      content: "👉";
      position: absolute;
      left: 0;
    }
    /* about section*/
    .about {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 100px 40px;
      background: linear-gradient(to right, #fdfdfd, #f0f8ff);
      gap: 50px;
      align-items: center;
      border-top: 4px solid #0077cc;
      border-bottom: 4px solid #0077cc;
    }

    .about-text {
      flex: 1 1 300px;
      padding: 20px;
    }

    .about-text h2 {
      font-size: 36px;
      margin-bottom: 25px;
      color: #2d3e50;
      position: relative;
    }

    /*.about-text h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #0077cc;
      margin-top: 10px;
      border-radius: 2px;
    }

    .about-text p {
      font-size: 17px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 20px;
    }*/

    .about-button {
      margin-top: 20px;
      padding: 12px 30px;
      background: #0077cc;
      color: white;
      border: none;
      cursor: pointer;
      font-size: 16px;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .about-button:hover {
      background: #005fa3;
    }

    .about-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .about-image img:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    /* footer*/
       footer {
      width: 100%;
      background-color: #fde9d9;
      color: black;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
    }

    .footer-column {
      flex: 1 1 250px;
      min-width: 250px;
    }

    .footer-column h4,
    .footer-column h3 {
      margin-bottom: 10px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: black;
      text-decoration: none;
    }

    .footer-column ul li a:hover {
      text-decoration: underline;
    }

    .footer-map {
      width: 100%;
      margin-top: 20px;
    }
  .bottom-footer {
  background-color: #252525;
  color: whitesmoke;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.bottom-footer a {
  color: whitesmoke;
  text-decoration: none;
}

.bottom-footer a:hover {
  text-decoration: underline;
}
.red-heart {
  color: red;
}
.page-banner {
    text-align: center;
    padding: 30px 15px; /* reduce vertical space */
    margin: 0;
  }

  .page-banner h1 {
    margin: 0 0 10px;
    font-size: 36px;
  }

  .page-banner p {
    margin: 0;
    font-size: 18px;
    color: #555;
  }
  /* Extra large desktops (above 1200px) */
@media (min-width: 1200px) {
  .product {
    width: calc(33.333% - 20px);
  }
}

/* Desktops & Large Tablets (992px to 1199px) */
@media (max-width: 1199px) {
  .header-content {
    gap: 15px;
  }

  .product {
    width: calc(33.333% - 20px);
  }

  .company-info h1 {
    font-size: 32px;
  }

  .company-info h5 {
    font-size: 14px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    height: 100px;
  }

  .company-info h1 {
    font-size: 26px;
    padding-top: 10px;
  }

  .company-info h5 {
    font-size: 13px;
    padding: 0 15px;
    line-height: 1.4;
  }

  .product {
    width: calc(50% - 20px);
  }

  .about {
    flex-direction: column;
    padding: 50px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .bottom-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Mobile Devices (below 767px) */
@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .logo {
    height: 80px;
  }

  .company-info h1 {
    font-size: 20px;
  }

  .company-info h5 {
    font-size: 12px;
    padding: 0 10px;
  }

  .sub-header nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }

  .product {
    width: 100%;
  }

  .product-list {
    padding: 15px;
    gap: 20px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer-map iframe {
    height: 150px;
  }

  .page-banner h1 {
    font-size: 24px;
  }

  .page-banner p {
    font-size: 14px;
  }
}

