body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
  }

  footer {
    background: #222;
    color: #ccc;
    padding: 20px 0;
  }


/* caurosel starts */
/* Carousel full height based on screen minus navbar */
    #carouselExampleIndicators {
        height: calc(100vh - 55px);
    }

    .carousel-inner,
    .carousel-item {
        height: 100%;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    @media (max-width: 768px) {
      #carouselExampleIndicators {
          height: calc(100vw * 9 / 16);
      }
    }
  /* caurosel end */


  /* gallery starts */
    .gallery-container {
      height: 600px;
      overflow: hidden;
    }

    .gallery-column {
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    /* Column 2 Layout */
    .top-row {
      display: flex;
      gap: 10px;
      height: calc(50% - 5px);
    }

    .top-row .img-wrapper {
      flex: 1;
    }

    .top-row .img-wrapper img {
      height: 100%;
      width: 100%;
    }

    .bottom-row {
      height: calc(50% - 5px);
    }

    .bottom-row img {
      height: 100%;
      width: 100%;
    }

    /* Responsive: Stack images on small screens */
    @media (max-width: 768px) {
      .gallery-container {
        height: auto;
      }

      .gallery-column {
        height: auto;
        margin-bottom: 20px;
      }

      .top-row {
        flex-direction: column;
        height: auto;
      }

      .top-row .img-wrapper,
      .bottom-row {
        height: auto;
      }

      .top-row .img-wrapper img,
      .bottom-row img,
      .gallery-column img {
        height: auto;
      }
    }
  /* gallery ends */



  /* product  */

    .product-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .product-card {
      flex: 0 1 calc(33.333% - 20px);
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-image {
      height: 300px;
      width: 100%;
      object-fit: cover;
    }

    .product-body {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .product-price {
      font-size: 1rem;
      font-weight: 500;
      color: #28a745;
      margin-bottom: 12px;
    }

    .product-button {
      margin-top: auto;
    }

    @media (max-width: 768px) {
      .product-card {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 576px) {
      .product-card {
        flex: 1 1 100%;
      }
    }


    /* product modal starts */
    #specTable {
      margin: 0;
    }
    
    #specTable th {
      padding-left: 20px !important;
      background-color: #e6f4ff;
    }

    #specTable td {
      padding-left: 20px;
    }
    /* product modal ends*/

  /* product  */


  /* counter */
      .counter-section {
      background: #f8f9fa; /* Light gray background */
      padding: 60px 0;
    }

    .counter-box {
      text-align: center;
      padding: 30px 20px;
    }

    .counter-number {
      font-size: 3rem;
      font-weight: 700;
      color: #007bff;
    }

    .counter-label {
      font-size: 1.2rem;
      color: #444;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .counter-number {
        font-size: 2.2rem;
      }
    }
  /* counter */





  /* feedback */
    .cf-section {
      background-color: #fff;
      padding: 60px 20px;
    }

    .cf-carousel {
      margin: 0 auto;
      text-align: center;
    }

    .cf-image {
      width: 100px !important;
      height: 100px !important;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #007bff;
      margin: 0 auto 10px;
    }

    .cf-name {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #333;
    }

    .cf-feedback-text {
      font-size: 1rem;
      color: #555;
      margin-bottom: 20px;
    }

    .cf-controls {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }


    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: #000; /* Black background */
        border-radius: 50%;
        padding: 10px;
        background-size: 70% 70%;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* Make the indicators black */
    .carousel-indicators [data-bs-target] {
    background-color: #000; /* black color for inactive indicators */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.5;
    }

    .carousel-indicators .active {
    opacity: 1;
    background-color: #000; /* black color for active indicator */
    }
  /* feedback */



.fullwidth-gallery {
  width: 100%;
  overflow: hidden;
}

.gallery-flex {
  display: flex;
  flex-wrap: nowrap; /* ❌ no wrap on desktop */
}

.gallery-flex img {
  flex: 1 1 12.5%;
  width: 12.5%;
  height: 200px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-flex {
    flex-wrap: wrap; /* ✅ allow wrap on tablet and smaller */
  }
  .gallery-flex img {
    flex: 1 1 25%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-flex {
    display: none;
  }
}

/* Very Small Devices */
/* @media (max-width: 480px) {
  .gallery-flex img {
    flex: 1 1 100%;
  }
} */

  /* custom footer */
.custom-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  font-size: 0.95rem;
}

.footer-company-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #007bff;
}

.footer-description {
  margin-bottom: 1rem;
  color: #555;
}

.footer-address,
.footer-contact {
  color: #333;
  margin-bottom: 0.5rem;
}

.custom-footer input,
.custom-footer textarea {
  font-size: 0.95rem;
  border-radius: 0.3rem;
}

.custom-footer .btn {
  border-radius: 0.3rem;
}

#contact p {
  display: flex;
}

#contact i {
  font-size: 13px;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-color: #5ba830;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
  /* custom footer */


  