body {
  color: #292635;
}


/* Container */
.ev-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  padding: 0 0 70px 0;
  box-sizing: border-box;
}

/* Section Header */
.ev-header {
  margin-bottom: 25px;
  text-align: left;
}

.ev-header h3 {
  color: #292635;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.ev-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #292635;
}

/* Main Grid Layout */
.ev-content-grid {
  display: flex;
  gap: 30px;
  align-items: stretch; /* Equal height columns */
  flex-wrap: wrap;
}

/* Image Column */
.ev-image {
  flex: 1 1 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex; /* Allow image inside to stretch */
}

.ev-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Icon Boxes Column */
.ev-boxes {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-boxes > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Individual Icon Box */
.ev-box {
  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;
}

.ev-box:hover {
  box-shadow: 0 8px 20px rgba(144, 115, 237, 0.4);
}

/* Icon Style */
.ev-icon {
  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;
}

/* Text in Icon Boxes */
.ev-box-text {
  font-size: 16px;
  line-height: 1.5;
}

.ev-box-text strong {
  font-weight: 600;
}

/* Custom SVG icon style (optional) */
.energy-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .ev-content-grid {
    flex-direction: column;
  }

  .ev-container {
    padding: 30px 20px;
  }

  .ev-image {
    height: auto;
  }

  .ev-image img {
    height: auto;
  }

  .ev-header {
    margin-bottom: 30px;
  }
}


.equipment-verification-section {
  
  margin: 0 auto;
  
  background-color: #ffffff;
 
}
.equipment-verification-section2 {
  
  margin: 0 auto;
  
  background-color: #ffffff;
  padding-top:60px;
}
.solar-section-clean {
  background-color: #f4f3fa; /* Optional soft background */
  padding: 60px 20px 40px; /* Top space, side padding */
  font-family: 'Roboto', sans-serif;
}

.solar-heading {
  font-size: 16px;
  font-weight: 700;
  color: #292635;
  margin-bottom: 20px;
}

.solar-paragraph {
  font-size: 16px;
  color: #292635;
  line-height: 1.7;
  max-width: 100%;
}

/* Optional responsive tweak */
@media (max-width: 768px) {
  .solar-heading {
    font-size: 16px;
  }

  .solar-paragraph {
    font-size: 16px;
  }
}

/* General Section Styling */
/* Reduced vertical space between sections */
.bom-intro-section,
.bom-solutions-section {
  padding: 20px 20px 0px 20px;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

section{
    padding: 0px 50px;
}

/* Mobile fix */
@media (max-width: 767px) {
  section {
    padding: 50px 5px !important;
  }
}

/* Shared Container */
.bom-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Headings */
.bom-heading {
  font-size: 1.8rem;
  color: #292635;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.bom-subheading {
  font-size: 2.5rem;
  color: #292635;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

/* Paragraphs */
.bom-description {
  font-size: 1rem;
  color: #292635;
  line-height: 1.7;
  max-width: 900px;
  text-align: left;
  
}

/* Responsive */
@media (max-width: 768px) {
  .bom-heading,
  .bom-subheading {
    font-size: 1.5rem;
  }

  .bom-description {
    font-size: 1rem;
  }
}
.bom-info-box {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px 40px;
  background: linear-gradient(135deg, #865ff0 0%, #6b57d8 100%);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(144, 115, 237, 0.4);
  color: #292635;
  font-family: 'Roboto', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bom-info-box h4 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #292635;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.bom-info-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #292635;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Hover effect */
.bom-info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(144, 115, 237, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .bom-info-box {
    padding: 25px 20px;
    max-width: 90%;
  }

  .bom-info-box h4 {
    font-size: 1.5rem;
  }

  .bom-info-box p {
    font-size: 1rem;
  }
}
.bom-container {
  max-width: 1200px; /* container width */
  margin: 40px auto 0;
  padding: 0px 20px 60px 0px;
  
  font-family: 'Roboto', sans-serif;
  color: #292635;
}

.bom-container h4 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #865ff0;
  margin-bottom: 15px;
  text-align: left;
}

.bom-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .bom-container h4 {
    font-size: 1.5rem;
  }

  .bom-container p {
    font-size: 1rem;
  }
}
.sku-synchronization-section {
  padding: 60px 20px;
  background: #f4f3fa;
}

.sku-container {
  max-width: 1140px;
  margin: 0 auto;
}

.sku-header {
  margin-bottom: 40px;
}

.sku-header h3 {
  font-size: 2rem;
  color: #292635;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.sku-header p {
  font-size: 16px;
  color: #292635;
  font-family: 'Roboto', sans-serif;
}

.sku-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sku-image img {
  width: 100%;
  border-radius: 20px;
}

.sku-boxes {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sku-box {
  display: flex;
  align-items: center; /* ✅ This ensures vertical centering */
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sku-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sku-box-text {
  color: #292635;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.sku-box-text strong {
  color: #292635;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .sku-content-grid {
    grid-template-columns: 1fr;
  }

  .sku-image {
    order: 1;
  }

  .sku-boxes {
    order: 2;
  }
}.sku-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  padding: 0px 0px 60px 0px;
  box-sizing: border-box;
}

.sku-header {
  margin-bottom: 40px;
  text-align: left;
}

.sku-header h3 {
  color: #292635;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.sku-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #292635;
}

.sku-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sku-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.sku-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sku-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sku-box {
  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;
}

.sku-box:hover {
  box-shadow: 0 8px 20px rgba(144, 115, 237, 0.4);
}

.sku-icon {
  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;
}

.sku-box-text {
  font-size: 16px;
  line-height: 1.5;
  color: #292635;
}

.sku-box-text strong {
  font-weight: 600;
}
.sku-verification-section {
  padding: 60px 50px;
  background: #f4f3fa;
}

/* Responsive */
@media (max-width: 992px) {
  .sku-content-grid {
    grid-template-columns: 1fr;
  }

  .sku-image {
    height: 250px;
  }

  .sku-header {
    margin-bottom: 30px;
  }

  .sku-container {
    padding: 30px 20px;
  }
}
/* Container */
.bom-tools-section {
  padding: 2rem 3rem;
  font-family: 'roboto', sans-serif;
  font-size: 16px;
  color: #292635;
}

.sku-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sku-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bom-tools-description {
  font-size: 16px;
  line-height: 1.6;
  margin: 1rem 0;
  color: #292635;
  max-width: 100%;
}

/* Icon Box Row */
.bom-icon-boxes-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* Square Boxes - reduced height */
.bom-icon-box {
  background-color: #ffffff;
  width: 150px;
  height: 140px; /* Reduced height */
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 3rem; /* Reduced padding */
}
@media (max-width: 768px) {
  .bom-icon-box {
    margin-bottom: 1.5rem;
  }
}
.bom-icon-box:hover {
  transform: translateY(-5px);
}

/* Icon (half out of box) with updated colors */
.bom-icon {
  position: absolute;
  top: -22px; /* Adjusted closer to box */
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background-color: #865ff0;       /* Now background is purple */
  color: #292635;                  /* Now icon is dark */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Text label under icon */
.bom-label {
  font-weight: 500;
  padding: 0 0.4rem;
  font-size: 16px;
  color: #292635;
  margin-top: 10px; /* Reduced space between icon and text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bom-icon-boxes-row {
    justify-content: center;
  }

  .bom-icon-box {
    width: 120px;
    height: 120px;
  }

  .bom-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    top: -18px;
  }

  .bom-label {
    font-size: 14px;
    margin-top: 8px;
  }
}
.bom-cleansing-section{
padding-top:60px;
}

.modular-section {
  background-color: #F9FAFB;
  color: #0F172A;
  padding: 60px 40px;
  font-family: 'Roboto', sans-serif;
}

.modular-header h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.modular-header p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
}
.pillar-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
  color: #0F172A;
}

.pillar-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-heading {
  font-weight: 700;
  font-size: 1.8rem;
  color: #865ff0;
  margin-bottom: 15px;
  text-align: left;
}


.pillar-intro {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  max-width: 800px;
  margin-bottom: 48px;
}

.pillar-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pillar-box {
  background-color: #F9FAFB;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.pillar-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.pillar-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
  color: #10B981;
}

.pillar-box h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar-box p {
  font-size: 16px;
  line-height: 1.5;
}

/* Container styling to limit max width and center content */
.spcontainer {
  max-width: 1200px; /* or your preferred max width */
  margin-left: auto;
  margin-right: auto;
  
   background-color: #f7f7ff;
}

/* Move padding and background color here to keep section within container */
.spcontainer > .split-hero {
  background-color: #f7f7ff;
  color: #1E1E1E;
  padding: 60px 22px;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.hero-left {
  flex: 1;
  position: relative;
  min-width: 300px;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius:20px;
}

.overlay-tagline {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  color: #10B981;
  font-weight: 500;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  padding-left: 40px;
  box-sizing: border-box;
}

.hero-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  color:#865ff0;
  font-weight:700;
}

.hero-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align:justify;
}

.cta-button {
  display: inline-block;
  background-color: #10B981;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0ea373;
}
/* Container */
.energy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0px;
  font-family: 'Roboto', sans-serif;
}

/* Heading */
.energy-header h3 {
  color: #292635;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: left;
}

.energy-header p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

/* Flex container for boxes */
.energy-boxes-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

/* Each box */
.energy-box {
  background: #ffffff; /* light soft purple */
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 270px;
  min-height: 240px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.energy-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Icon container */
.energy-icon {
  text-align: center;
  margin-bottom: 16px;
  color: #865ff0;
}

.energy-icon i {
  font-size: 48px; /* Big icons */
  color: #865ff0;  /* Purple brand color */
  transition: transform 0.3s ease;
}

.energy-box:hover .energy-icon i {
  transform: scale(1.1);
}

/* Text inside box */
.energy-box-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
      font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .energy-boxes-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .energy-box {
    max-width: 100%;
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .energy-box {
    flex: 1 1 100%;
  }

}
/* Section Container */
.bess-site-section {
  padding: 60px 50px;
  background-color: #f9f9f9;
}

.bess-site-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.bess-site-title {
  font-size: 32px;
  color: #292635;
  margin-bottom: 20px;
  font-weight: 700;
}

.bess-site-subtitle {
  font-size: 24px;
  margin: 40px 0 20px;
  color: #292635;
}

.bess-site-intro,
.bess-site-box p {
  font-size: 16px;
  color: #292635;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout */
.bess-site-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* Equal Icon Boxes */
.bess-site-box {
  background-color: #ffffff;
  border-radius: 10px;
  width: 280px;
  height: 180px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  transition: transform 0.3s ease;
}

/* Icon Square */
.bess-site-icon {
  width: 40px;
  height: 40px;
  background-color: #865ff0;
  color: #292635;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .bess-site-box {
    width: 100%;
  }
}
.bess-site-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #292635;
}

/* Grid Layout */
.bess-site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Box */
.bess-site-grid-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100px;
}

/* Icon Square */
.bess-site-icon-square {
  width: 40px;
  height: 40px;
  background-color: #865ff0;
  color: #292635;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 18px;
  margin-right: 16px;
  flex-shrink: 0;
}

/* Text */
.bess-site-grid-item p {
  font-size: 16px;
  color: #292635;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  line-height: 1.4;
}
.solar-container {
      display: flex;
      position: relative;
      border-radius: 30px;
      padding: 60px 20px 20px 20px; /* top padding = 60px */
      background-color: #f3eeff;
      max-width: 1200px;
      margin: 0px auto;
      overflow: hidden;
    }

    .solar-text-content {
      width: 60%;
      padding-right: 20px;
      box-sizing: border-box;
    }

    .solar-text-content p {
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
      font-size: 16px;
      color: #333;
    }

    .solar-text-content h3 {
      margin-top: 0;
      font-family: Arial, sans-serif;
      font-size: 18px;
      color: #222;
      padding-bottom: 10px;
      font-weight:600;
    }

    .solar-image-wrapper {
      position: absolute;
      right: 3px;
      bottom: 3px;
      top: 60px;
      width: 38%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      overflow: hidden;
      border-bottom-right-radius: 30px;
    }

    .solar-image-wrapper img {
      width: 100%;
      height: auto;
      border-radius: 2px 2px 30px 0px;
      object-fit: cover;
    }
    .solar-header{
    padding-bottom:20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: #292635;
    
    }
    process-header2{
        font-size:2rem;
    }
    .services-sectionnew{
    width: 100%;
    background-color: #fff;
    background-size: cover;
    padding: 4rem 2rem 4rem;
    margin:0 auto;
    max-width:1200px;
    
}
.services-sectionnew h1{
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    color: #292635;
    margin-bottom: 1rem;
}
.services-sectionnew h2{
   font-weight: 700;
   font-size: 40px;
   line-height: 130%;
   color: #292635;
   margin-bottom: 1rem;
}
.services-sectionnew h3{
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: #292635;
    margin: 1rem 0rem;
}
.services-sectionnew h4{
font-weight: 700;
font-size: 24px;
line-height: 150%;
color: #292635;
margin-bottom: 1rem;
}
.services-sectionnew h5{
font-weight: 600;
font-size: 20px;
line-height: 140%;
color: #292635;
margin-bottom: 1rem;
}
.services-sectionnew p{
font-weight: 400;
font-size: 16px;
line-height: 130%;
text-align: justify;
color: #545454;
margin-bottom: 2rem;
}
.services-sectionnew h6{
font-weight: 600;
font-size: 18px;
line-height: 150%;
color: #292635;
margin-bottom: 1rem;
}
.services-sectionnew .row .col-2 img {
    width: 55px;
}
.services-sectionnew ul{
    line-height: 160%;
}
.why-inner-sections2 {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    perspective: 1000px;
    padding: 3rem 3rem ;
}
.why-front2 {
  display: flex;
  align-items: center;      /* Align vertically center */
  gap: 10px;                /* Space between icon and text */
  padding: 1rem;            /* Optional: adjust as needed */
  background-color: #f5f5f5; /* Optional: visual clarity */
  border-radius: 8px;       /* Optional: styling */
}

.why-front2 img {
  width: 40px;              /* Adjust icon size as needed */
  height: 40px;
}

.why-text2 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
/* Back (on hover) */
.why-back2 {
  background-color: #865ff0; /* purple */
  color: #fff;
  transform: rotateY(180deg);
  padding: 2rem;
}
.fire-safety-section {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  overflow: hidden;
}

.fire-safety-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* Text content */
.fire-safety-content {
  flex: 1 1 500px;
  z-index: 3;
  position: relative;
}

.fire-safety-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #292635;
}

.fire-safety-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

/* Image wrapper */
.fire-safety-image {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Keep capsules inside container */
}

/* Capsules (horizontal, left–right instead of vertical) */
.capsule {
  position: absolute;
  height: 100px;
  width: 250px;
  border-radius: 50px;
  opacity: 0.9;
  z-index: 1;
}

.capsule-top {
  top: 80px;
  left: -120px;
  background: #865ff0;
  animation: capsuleSlideLeft 1.5s ease forwards;
}

.capsule-bottom {
  bottom: 80px;
  right: -120px;
  background: #292635;
  animation: capsuleSlideRight 1.5s ease forwards;
}

/* Image styling */
.fire-safety-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  transform: translateX(150%);
  animation: imageSlideIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

/* Animations */
@keyframes capsuleSlideLeft {
  from { transform: translateX(-200%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes capsuleSlideRight {
  from { transform: translateX(200%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes imageSlideIn {
  from { transform: translateX(150%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .fire-safety-container {
    flex-direction: column;
    text-align: center;
  }

  .fire-safety-content {
    order: 2;
    text-align: left;
  }

  .fire-safety-image {
    order: 1;
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .fire-safety-image img {
    width: 100%;
    height: auto;
  }
}
.service-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  overflow: hidden;
}

/* Overlay with updated color */
.service-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

/* Content Layer */
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px; /* Keeps content from stretching too wide */
  margin: 0 auto;
}

/* Renewables (subheading) */
.service-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #865ff0;
  margin: 0 0 0.5rem;
  padding: 80px 0px 20px 0px;
}

/* Main heading */
.service-hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 55px;
  
  color: #ffffff;
  margin: 0 0 2rem;
  line-height: 1.1;
}

/* Subtext below heading */
.service-hero-content h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 23px;
  color: #ffffff;
  margin: 0 auto;
  line-height: 1.5;
  max-width: 800px; /* Limits width for readability */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-hero-content h1 {
    font-size: 50px;
  }

  .service-hero-content h4 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .service-subtitle {
    font-size: 18px;
  }

  .service-hero-content h1 {
    font-size: 36px;
  }

  .service-hero-content h4 {
    font-size: 18px;
    max-width: 90%;
  }
}
/* Hero Section */
.bess-hero-new {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

.bess-container-new {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 500px;
}

/* Image covers 70% width (desktop) */
.bess-image-new {
  flex: 0 0 70%;
  height: 100%;
  position: relative;
}

.bess-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text box vertically centered (desktop) */
.bess-text-new {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

.bess-text-new p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.bess-highlight-new {
  color: #865ff0;
}
.bess-text-new .col-3 img{
  width: 42px;
  padding: 10px 0px;
}
/* Button */
.bess-btn-new {
  display: inline-block;
  padding: 8px 20px;
  background-color: #865ff0;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  align-self: flex-start;
}

.bess-btn-new:hover {
  background-color: #6c56c9;
}

/* Responsive (mobile) */
@media (max-width: 992px) {
  .bess-container-new {
    flex-direction: column;
    min-height: auto;
  }

  .bess-image-new {
    width: 100%;
    height: 250px; /* control height */
    overflow: hidden;
  }

  .bess-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bess-text-new {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    margin: 0; /* remove negative margin */
    padding: 20px;
    box-shadow: none; /* optional: softer on mobile */
  }

  .bess-btn-new {
    align-self: flex-start;
  }
}



/* ✅ Mobile Animation Keyframes */
@keyframes bessMobileFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Section */
.bess-split-contained {
  width: 100%;
  padding: 60px 20px; /* spacing around container */
  box-sizing: border-box;
}

/* Container centered */
.bess-split-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px; /* keeps content contained */
  margin: 0 auto;
  min-height: 500px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Image */
.bess-split-image {
  flex: 0 0 50%;
}

.bess-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text box */
.bess-split-text {
  flex: 0 0 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bess-split-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.bess-split-highlight {
  color: #865ff0;
}

/* Button */
.bess-split-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #865ff0;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
}

.bess-split-btn:hover {
  background-color: #6c56c9;
}

/* Responsive */
@media (max-width: 992px) {
  .bess-split-container {
    flex-direction: column;
    min-height: auto;
  }

  .bess-split-image {
    flex: 0 0 100%;
    height: 300px;
  }

  .bess-split-text {
    flex: 0 0 100%;
    padding: 20px;
    text-align: center;
  }

  .bess-split-btn {
    align-self: center;
  }
}
.bess-split-new{
margin-top:60px;
    
}
.faq-section .containers details div ul {
    margin-top: 10px; /* adjust the gap as needed */
    padding-left: 20px; /* optional, keep default indentation */
}
.sku-verification-section3{
    background-color:#f3eeff;
}

.bess-hero-overlay {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

.bess-container-overlay {
  position: relative;
  width: 100%;
  height: 500px;
}

.bess-image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.bess-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text box (desktop default: overlaid) */
.bess-text-overlay {
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  width: 75%;
  background: rgb(255 255 255 / 93%);
  padding: 30px 40px;
  color: #292635;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bess-text-overlay p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #292635;
}

.bess-btn-overlay {
  display: inline-block;
  padding: 8px 20px;
  background-color: #865ff0;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  align-self: flex-start;
}

.bess-btn-overlay:hover {
  background-color: #6c56c9;
}

/* ✅ Mobile override only */
@media (max-width: 992px) {
  .bess-container-overlay {
    height: auto;
  }

  .bess-image-overlay {
    height: auto;
  }

  .bess-image-overlay img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 🟢 Move text box below image on mobile */
  .bess-text-overlay {
    position: static; /* remove absolute */
    transform: none; /* remove translate */
    width: 100%;
    margin-top: 0;
    padding: 20px;
    box-shadow: none;
    background: rgb(255 255 255 / 93%);
    color: #292635;
    z-index: 1;
  }
}


/* Container */
.ethos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Styling */
.ethos-section {
  padding: 60px 0;
}

.ethos-title {
  font-size: 32px;
  font-weight: 600;
  color: #292635;
  margin-bottom: 3rem;
  text-align: left; /* aligned left */
}

/* Card Styling */
.ethos-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}

/* Hover Animation - rotate text */
.ethos-card:hover {
  transform: rotateX(5deg) rotateY(5deg);
}

/* Individual Backgrounds */
.ethos-card-1 {
  background-image: url('/assets/imgs/about-us/our-ethos1.png');
}

.ethos-card-2 {
  background-image: url('/assets/imgs/about-us/our-ethos2.png');
}

.ethos-card-3 {
  background-image: url('/assets/imgs/about-us/our-ethos3.png');
}

/* Icon Styling */
.ethos-icon {
  font-size: 48px;
  color: #fff;
  margin-bottom: 1rem;
}

/* Heading */
.ethos-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Paragraph */
.ethos-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}
.ethos-heading,
.ethos-text {
  display: inline-block; /* needed for transform */
  transition: transform 0.8s ease;
  backface-visibility: hidden; /* smoother animation */
  transform-style: preserve-3d;
}

.ethos-card:hover .ethos-heading,
.ethos-card:hover .ethos-text {
  transform: rotateY(360deg);
}
/* Slide from left */
[data-aos="slide-left"] {
  opacity: 0;
  transform: translateX(-100px);
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  transition-duration: 1000ms;
}
[data-aos="slide-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
[data-aos="slide-right"] {
  opacity: 0;
  transform: translateX(100px);
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  transition-duration: 1000ms;
}
[data-aos="slide-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from bottom (slide-up) */
[data-aos="slide-up"] {
  opacity: 0;
  transform: translateY(100px);
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  transition-duration: 1000ms;
}
[data-aos="slide-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .trusted-image-wrapper {
    display: none;
  }
}
.why-box-icon {
    width: 60px;      /* Set icon width */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* So it sits above heading */
    margin: 0 auto 10px auto;  /* Centered with gap below */
}
.finulent-section {
  padding: 0px 0;
  max-width:1200px;
}

.finulent-box {
 
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.finulent-textbox {
  background: #f3eeff; /* Light lavender background */
}

.finulent-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.shadow-img {
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.shadow-img:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}
.backup-systems-section {
  padding: 20px 0;
}

.backup-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left; /* Changed from center to left */
  color: #333;
}

.backup-box {
  display: flex;
  background: #f3eeff; /* Updated background color */
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
  align-items: center;
}

.backup-box:hover {
  box-shadow: 0 10px 25px rgba(108, 78, 210, 0.3); /* Same drop shadow as before */
  transform: translateY(-5px);
}

.icon-box {
  flex: 0 0 45px;
  height: 45px;
  width: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3eeff; /* Keep same as box background */
  margin-right: 12px;
}

.icon-box i {
  font-size: 20px;
  color: #865ff0; /* Icon color */
}

.backup-box p {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
/* Portfolio Heading */
h2.portfolio-heading {
  padding-left: 50px;
  padding-right: 50px;
 
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-weight:700;

}

@media (max-width: 768px) {
  h2.portfolio-heading {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Icon Boxes Container */
.portfolio-icon-box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 100px;
  padding-top: 50px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .portfolio-icon-box-container {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Individual Icon Box */
.portfolio-icon-box {
  background: #fff;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

.portfolio-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Style */
.portfolio-icon-box i {
  font-size: 36px;
  color: #865ff0 !important; /* icon color */
  margin-bottom: 10px;
}

/* Text below icon */
.portfolio-icon-box span {
  font-size: 16px;
  font-weight: 500;
  color: #292635;
}

/* Scroll animation */
.portfolio-icon-box {
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.8s forwards;
}

.portfolio-icon-box:nth-child(1) { animation-delay: 0.1s; }
.portfolio-icon-box:nth-child(2) { animation-delay: 0.2s; }
.portfolio-icon-box:nth-child(3) { animation-delay: 0.3s; }
.portfolio-icon-box:nth-child(4) { animation-delay: 0.4s; }
.portfolio-icon-box:nth-child(5) { animation-delay: 0.5s; }
.portfolio-icon-box:nth-child(6) { animation-delay: 0.6s; }
.portfolio-icon-box:nth-child(7) { animation-delay: 0.7s; }
.portfolio-icon-box:nth-child(8) { animation-delay: 0.8s; }
.portfolio-icon-box:nth-child(9) { animation-delay: 0.9s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Popup overlay */
#popupForm {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 38, 53, 0.8); /* dark semi-transparent overlay */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Form container */
#popupForm .form-container {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(134, 95, 240, 0.35); /* purple shadow */
  text-align: center;
  position: relative;
  animation: popupFade 0.5s ease forwards;
}

/* Form heading */
#popupForm h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #292635;
  font-weight: 600;
}

/* Input fields */
#popupForm input[type="email"],
#popupForm input[type="hidden"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

/* Submit and cancel buttons */
#popupForm button {
  width: 48%;
  padding: 12px 0;
  margin: 5px 1%;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#popupForm button[type="submit"] {
  background-color: #865ff0;
  color: #fff;
}

#popupForm button[type="submit"]:hover {
  background-color: #744de1;
  box-shadow: 0 6px 20px rgba(134, 95, 240, 0.35);
}

#popupForm button[type="button"] {
  background-color: #eee;
  color: #292635;
}

#popupForm button[type="button"]:hover {
  background-color: #ddd;
}

/* Fade-in animation */
@keyframes popupFade {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 480px) {
  #popupForm .form-container {
    padding: 20px 15px;
  }
}
/* Portfolio heading padding */
h2.portfolio-heading {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 100px;
  /* keep your existing top padding */
  box-sizing: border-box;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  h2.portfolio-heading {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
    .equipment-verification-section {
        padding: 30px 10px 0 10px !important; /* top, right, bottom, left */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
@media (max-width: 600px) {
    .bess-site-section {
        padding-left: 10px !important;
        padding-right:10px !important;
    }
}
