/* Section Base */
.why-section {
  width: 100%;
  padding: 4rem 2rem;
  background: #fff;
  margin-top:100px;
}

.why-heading {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 3rem;
  color: #292635; /* heading color */
}

.why-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

/* Common Box Styling */
.why-box, .why-box-flip, .why-box-overlay, .scale-fade, .scale-fade-alt {
  width: 250px;
  height: 140px; /* reduced height */
  border-radius: 12px;
  background: #f6f1ff;
  position: relative;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Icon + heading inside boxes */
.content-icon-title, .flip-front, .overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
}

.why-box i, .flip-front i, .overlay-content i {
  font-size: 50px;
  color: #9073ed;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.why-box h3, .flip-front h3, .overlay-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292635;
  margin: 0;
  line-height: 1.2;
}

/* Paragraph text hidden initially */
.why-text, .flip-back p, .overlay-content p {
  opacity: 0;
  color: #fff;
  padding: 0 10px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% - 20px);
  transform: translateY(-50%);
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* Hover: hide icon+heading, show paragraph */
.why-box:hover .content-icon-title,
.why-box-overlay:hover .overlay-content i,
.why-box-overlay:hover .overlay-content h3,
.scale-fade:hover .content-icon-title,
.why-box-flip:hover .flip-front {
  opacity: 0;
}

.why-box:hover .why-text,
.why-box-overlay:hover .overlay-content p,
.scale-fade:hover .why-text,
.why-box-flip:hover .flip-back {
  opacity: 1;
}

/* Hover background color */
.why-box:hover, .why-box-overlay:hover, .scale-fade:hover, .scale-fade-alt:hover, .why-box-flip:hover {
  background: #9073ed;
}

/* ===== Option 2: Flip Box Simplified ===== */
.why-box-flip {
  perspective: 1000px;
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.5s ease;
}

/* Front: icon + heading visible initially */
.flip-front {
  background: #f6f1ff;
  color: #292635;
  z-index: 2;
  opacity: 1;
}

/* Back: paragraph hidden initially */
.flip-back {
  background: #9073ed;
  color: #fff;
  z-index: 1;
  opacity: 0;
}

/* Hover effect for flip */
.why-box-flip:hover .flip-front {
  opacity: 0;
  z-index: 1;
}

.why-box-flip:hover .flip-back {
  opacity: 1;
  z-index: 2;
}

/* Overlay Slide Down Option (Option 3) */
.why-box-overlay .overlay-content {
  position: relative;
  z-index: 1;
}

/* Scale & Fade Alternate Option (Option 4) */
.scale-fade-alt:hover {
  transform: scale(1.05);
}
.scale-fade-alt:hover .content-icon-title {
  opacity: 0;
}
.scale-fade-alt:hover .why-text {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .why-row {
    flex-direction: column;
    align-items: center;
  }
  .why-box, .why-box-flip, .why-box-overlay, .scale-fade, .scale-fade-alt {
    width: 90%;
    margin-bottom: 1rem;
  }
}
.why-section-slide-opt2 {
  width: 100%;
  padding: 1rem 2rem;
  background: #fff;
}

.why-heading-opt2 {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 3rem;
  color: #292635;
}

.why-row-opt2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Box Styling */
.why-box-slide-opt2 {
  width: 250px;
  min-height: 140px;
  border-radius: 12px;
  background: #f6f1ff; /* stays same */
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease; /* only transform */
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  padding: 20px 10px;
}

.why-box-slide-opt2:hover {
  transform: translateY(-5px); /* only lift effect, no color change */
}

/* Icon + Heading */
.content-icon-title-opt2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-box-slide-opt2 i {
  font-size: 50px;
  color: #9073ed;
  margin-bottom: 0.5rem;
}

.content-icon-title-opt2 h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292635;
  margin: 0;
  line-height: 1.2;
}

/* Paragraph hidden initially */
.why-box-slide-opt2 p {
  margin-top: 10px;
  opacity: 0;
  max-width: calc(100% - 20px);
  color: #292635; /* stays same on hover */
  text-align: center;
  font-weight: 400;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-10px);
}

/* Show paragraph on hover below heading */
.why-box-slide-opt2:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .why-row-opt2 {
    flex-direction: column;
    align-items: center;
  }
  .why-box-slide-opt2 {
    width: 90%;
    margin-bottom: 1rem;
  }
}
/* === Force single-row square boxes & aligned contents for .why-section-simple === */
/* Section Background */
.why-section-simple {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #ffffff; /* White background */
}

/* Section Heading */
.why-heading-simple {
  font-weight: 700;
  font-size: 36px;
  text-align: center; /* Center alignment */
  margin-bottom: 3rem;
  color: #292635;
  display: block;
  width: 100%;
}

/* Row Container */
.why-row-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch; /* ensures all boxes align evenly */
}

/* Box Styling */
.why-box-simple {
  flex: 1 1 220px;              /* responsive flexible width */
  max-width: 250px;             /* consistent max width */
  min-height: 250px;            /* keeps boxes balanced */
  border-radius: 12px;
  background: #f6f1ff;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* aligns content from top */
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(144, 115, 237, 0.5); /* #9073ed with 50% opacity */
}

/* Icon */
.why-box-simple i {
  font-size: 50px;
  color: #9073ed;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}

/* Heading */
.why-box-simple h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292635;
  margin: 8px 0;
  line-height: 1.3;
  min-height: 40px; /* keeps heading rows aligned across boxes */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Paragraph */
.why-box-simple p {
  font-size: 14px;
  font-weight: 400;
  color: #292635;
  line-height: 1.5;
  margin: 5px 0 0;
  flex-grow: 1; /* stretches evenly so paragraphs align */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .why-row-simple {
    flex-direction: column;
    align-items: center;
  }
  .why-box-simple {
    width: 90%;
    max-width: none;
    margin-bottom: 1rem;
  }
}


.faq-style1 {
  width: 100%;
  padding: 4rem 2rem;
  background: #f8f8f8;
}

.faq-heading-style1 {
  font-size: 36px;
  font-weight: 700;
  color: #292635;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-item-style1 details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item-style1 summary {
  font-weight: 600;
  font-size: 16px;
  outline: none;
}

.faq-item-style1 details[open] {
  background: #9073ed;
  color: #fff;
}

.faq-item-style1 details div {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.faq-style2 {
  width: 100%;
  padding: 4rem 2rem;
  background: #fff;
}

.faq-heading-style2 {
  font-size: 36px;
  font-weight: 700;
  color: #292635;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item-style2 details {
  background: #f6f1ff;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item-style2 summary {
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

.faq-item-style2 summary .icon {
  font-weight: 700;
  font-size: 18px;
  color: #9073ed;
  transition: transform 0.3s ease;
}

.faq-item-style2 details[open] .icon {
  transform: rotate(45deg);
}

.faq-item-style2 details div {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.faq-style3 {
  width: 100%;
  padding: 4rem 2rem;
  background: #f8f8f8;
}

.faq-heading-style3 {
  font-size: 36px;
  font-weight: 700;
  color: #292635;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-row-style3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.faq-card-style3 details {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card-style3 details:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(144,115,237,0.5);
}

.faq-card-style3 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  outline: none;
}

.faq-card-style3 summary .chevron {
  font-size: 20px;
  color: #9073ed;
  transition: transform 0.3s ease;
}

.faq-card-style3 details[open] summary .chevron {
  transform: rotate(180deg);
}

.faq-card-style3 details div {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #292635;
}
.faq-style4 { width: 100%; padding: 4rem 2rem; background: #fff; }
.faq-heading-style4 { font-size: 36px; font-weight: 700; color: #292635; text-align: center; margin-bottom: 3rem; }

.faq-row-style4 { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }

.faq-box-style4 {
  background: #f6f1ff;
  width: 250px;
  min-height: 180px;
  border-radius: 12px;
  text-align: center;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.faq-box-style4 i {
  font-size: 50px;
  color: #9073ed;
  margin-bottom: 0.8rem;
}

.faq-box-style4 h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292635;
  margin-bottom: 8px;
}

.faq-box-style4 p {
  font-size: 14px;
  line-height: 1.5;
  color: #292635;
}

.faq-box-style4:hover {
  background: #9073ed;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(144,115,237,0.5);
}

.faq-box-style4:hover p { color: #fff; }
.faq-box-style4:hover h3 { color: #fff; }

/* Responsive */
@media (max-width: 992px) {
  .faq-row-style4 {
    flex-direction: column;
    align-items: center;
  }
  .faq-box-style4 {
    width: 90%;
    margin-bottom: 1rem;
  }
}
.validation-section {
  padding: 30px 0px 0px 0px;
}

.validation-accordion .validation-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
}

.validation-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  gap: 10px;
}

.validation-accordion summary h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
  flex: 1; /* take available space */
}

.validation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #865ff0;
  color: #292635;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.validation-icon i {
  font-size: 16px;
}

.validation-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
}

/* Rotate caret when open */
.validation-item[open] .validation-caret {
  transform: rotate(-135deg);
}

.validation-accordion .validation-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.validation-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.roof-heading {
  text-align: left;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
}

.roof-box {
  background: #f3eeff;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roof-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.roof-icon .icon-bg {
  background: #865ff0;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-right: 15px;
}

.roof-icon i {
  font-size: 22px;
  color: #292635;
}

.roof-text {
  font-size: 16px;
  font-weight: 500;
  color: #292635;
}

.sku-box-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.sku-box-row .sku-box {
  flex: 1 1 48%; /* Two boxes per row with spacing */
}
@media (max-width: 768px) {
  .sku-box-row .sku-box {
    flex: 1 1 100%;
  }
}
/* Why Section Five */
.why-section-five {
  width: 100%;
  padding: 4rem 2rem;
  background: #fff;
}

.why-heading-five {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 3rem;
  color: #292635;
}

.why-row-five {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Box Styling */
.why-box-five {
  flex: 1 1 calc(20% - 2rem); /* five boxes in a row */
  max-width: 250px;
  border-radius: 12px;
  background: #f6f1ff;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box-five:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(144, 115, 237, 0.5);
}

/* Icon */
.why-box-five img.why-box-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Heading */
.why-box-five h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292635;
  margin: 8px 0;
  line-height: 1.3;
  text-align: center;
}

/* Paragraph */
.why-box-five p {
  font-size: 14px;
  font-weight: 400;
  color: #292635;
  line-height: 1.5;
  margin: 5px 0 0;
  text-align: center;
}
.why-box-five i {
  font-size: 50px;
  color: #865ff0; /* Icon color */
  margin-bottom: 0.6rem;
}


/* Responsive */
@media (max-width: 992px) {
  .why-row-five {
    flex-direction: column;
    align-items: center;
  }
  .why-box-five {
    width: 90%;
    max-width: none;
  }
}
.design-content-grid {
  width: 100%;
  padding: 0rem 0rem;
}

.design-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.design-box {
 flex: 1 1 calc(50% - 1rem); /* Ensures two boxes per row */
  display: flex;
  align-items: center;
  background: #f4f3fa;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.design-box:hover {
  box-shadow: 0 8px 20px rgba(144, 115, 237, 0.4);
}

.design-icon i {
  background-color: #865ff0;
  color: #292635;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 20px;
  margin-top: 4px;
}

.design-text {
  font-size: 16px;
  color: #292635;
  line-height: 1.4;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .design-box {
    flex: 1 1 100%;
  }
}
.why-box-five2 {
    flex: 1 1 calc(30% - 2rem);
    max-width: 350px;
    border-radius: 12px;
    background: #f6f1ff;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    padding: 20px 15px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
