.single_product_desc {
  font-family: 'Roboto', sans-serif;
  color: #333;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.single_product_desc h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.single_product_desc > span {
  display: block;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-desc {
  margin: 15px 0;
  font-size: 15px;
  color: #444;
}

.product-desc b {
  color: #2c3e50;
}

.product-desc img {
  width: 60px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
}

hr {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Updated select-box styles for left alignment */
.select-box {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Changed from center to flex-start */
}

.select-box > div {
  text-align: left; /* Align content to left */
  margin: 0 30px 15px 0; /* Right margin only between items */
  flex: 0 0 auto; /* Don't grow or shrink */
  width: auto; /* Let content determine width */
}

.select-box img {
  width: 150px; /* Slightly larger fixed width */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
  margin-bottom: 8px;
  display: block; /* Make image block-level */
}

.select-box span {
  display: block;
  font-size: 14px;
  color: #555;
  text-align: center; /* Keep text centered under image */
  width: 150px; /* Match image width */
}

.cart-fav-box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap; /* Allows buttons to wrap on small screens */
  gap: 10px; /* Adds space between buttons */
}

/* Optional: Force full-width buttons on mobile */
@media (max-width: 768px) {
  .cart-fav-box a {
    width: 100%; /* Each button takes full width */
    text-align: center; /* Center-align text */
  }
}
@media (max-width: 768px) {
  .single_product_desc {
    padding: 15px;
  }
  
  .select-box > div {
    margin-right: 15px; /* Less spacing on mobile */
  }
  
  .select-box img {
    width: 120px; /* Slightly smaller on mobile */
  }
  
  .select-box span {
    width: 120px; /* Match smaller image */
  }
  
  .product-desc img {
    width: 60px;
  }
}


.image-container2 {

  position: relative;
  width: 80%;
  height: 24rem;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}



* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.slider-container {
    max-width: 100%;
    width: 100%;
    border: 1px solid #A1CDCE;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 5px;
}

.img-display {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1/1; /* Maintain square aspect ratio */
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
}

.img-showcase {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.img-showcase img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.img-select {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 10px;
}

.img-item {
    width: calc(20% - 8px); /* 5 items with gap */
    max-width: 100px;
    aspect-ratio: 1/1; /* Square thumbnails */
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.img-item:hover {
    opacity: 0.8;
    border-color: #256eff;
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .img-item {
        width: calc(20% - 6px); /* Adjust for smaller screens */
        max-width: 80px;
    }
}

@media (max-width: 400px) {
    .img-item {
        width: calc(20% - 4px);
        max-width: 60px;
    }
}





.testimonial-container {
  width: 100%;
  max-width: 56rem;
  padding: 2rem;
  margin: 0 auto; /* Center the container */
}

.slider-wrapper {
  position: relative;

}

.image-container2 {

  position: relative;
  width: 80%;
  height: 24rem;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.testimonial-image {
background:white;
  position: absolute;
  width: 60%; /* Your desired width */
  height: 80%; /* Your desired height */
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  left: 27%;
  transform: translateX(-50%); /* Center the image */
}

.testimonial-text-content {
  padding: 2rem 0;
  text-align: center;
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}

.designation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.quote {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 80%;
  margin: 0 auto;
}

.arrow-buttons {
  position: absolute;
margin-top:-40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.arrow-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
}

.arrow-button:hover {
  background-color: #A1CDCE;
}

.arrow-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}

.arrow-button:hover svg {
  fill: #ffffff;
}

.prev-button:hover svg {
  transform: rotate(-12deg);
}

.next-button:hover svg {
  transform: rotate(12deg);
}

@media (max-width: 767.98px) {
  .image-container2 {
    height: 20rem;
  }
  
  .testimonial-image {
    width: 80%;
    height: 90%;
  }
  
  .quote {
    max-width: 100%;
  }
}


.check-list {
  margin: 0;
  padding-left: 1.2rem;

}

.check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
    font-size:16px;
}

.check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #00a8a8;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.energy-efficiency-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.section-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.lead-paragraph {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature2 {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-title {
  color: #2980b9;
  margin-top: 0;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.tech-specs {
  padding-left: 1.5rem;
}

.tech-specs li {
  margin-bottom: 0.8rem;
}

.conclusion {
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 768px) {
  .product-features {
    flex-direction: column;
  }
}

.simple-image-zoom {
  max-width: 100%;
  text-align: center;
  margin: 20px 0;
}

.zoomable-image {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.zoomable-image:hover {
  transform: scale(1.02);
}

.zoomable-image.zoomed {
  transform: scale(1.5);
  position: relative;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pdf-container {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pdf-embed {
  display: block;
  border: none;
}

.color-palette-container {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.color-item {
    margin-bottom: 25px;
    text-align: center;
}

.color-block {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.color-block:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.color-name {
    font-weight: 500;
    margin: 0;
    font-size: 14px;
    color: #333;
}

.original-name {
    font-size: 12px;
    color: #777;
    display: block;
    font-style: italic;
}

@media (max-width: 768px) {
    .col-md-2 {
        width: 50%;
        float: left;
    }
    
    .color-block {
        height: 80px;
    }
}
