/* Section background and layout */
/* --- Power Innovation Card Group --- */
/* --- Power Innovation Section --- */
.power-innovation-section {
  position: relative;
  padding: 60px 0 0 0;
  min-height: 400px;
  background: transparent;
  overflow: hidden;
}
.power-innovation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.power-innovation-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}
.power-innovation-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 32px;
}
.power-innovation-card-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  margin-bottom: 0;
}
.power-innovation-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(38,40,58,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  min-height: 180px;
  padding: 12px 0 12px 0;
}
.power-innovation-card:hover {
  box-shadow: 0 8px 32px rgba(38,40,58,0.13);
  transform: translateY(-8px) scale(1.03);
}
.power-innovation-img {
  width: 90%;
  max-width:200px;
  height: 120px;
  object-fit: contain;
  background: #f3f4f6;
  border-radius: 16px;
  margin-top: 12px;
  margin-bottom: 0;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(38,40,58,0.08);
  display: block;
  padding: 0;
}
.power-innovation-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181818;
  margin: 18px 0 0 0;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.01em;
}
.power-innovation-info {
  width: 100%;
  background: none;
  padding: 10px 0 0 0;
  text-align: center;
}
.power-innovation-short {
  font-size: 1rem;
  color: #181818;
  font-weight: 400;
  margin: 0 0 0 0;
  text-align: center;
}
.power-innovation-desc {
  font-size: 0.98rem;
  color: #222;
  font-weight: 400;
  margin: 8px 0 0 0;
  text-align: center;
  width: 100%;
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .power-innovation-row { gap: 18px; }
  .power-innovation-card-group { width: 180px; min-width: 180px; max-width: 180px; }
  .power-innovation-card { min-height: 140px; }
  .power-innovation-img { height: 70px; max-width: 110px; }
  .power-innovation-card h5 { font-size: 1rem; }
}
@media (max-width: 900px) {
  .power-innovation-row {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }
  .power-innovation-card-group { width: 45vw; min-width: 120px; max-width: 45vw; }
  .power-innovation-card { min-height: 100px; }
  .power-innovation-img { height: 14vw; min-height: 40px; max-width: 70px; }
}
@media (max-width: 600px) {
  .power-innovation-section { padding: 18px 0 0 0; min-height: 200px; }
  .power-innovation-row { gap: 8px; flex-wrap: wrap; }
  .power-innovation-card-group { width: 98vw; min-width: 98vw; max-width: 98vw; }
  .power-innovation-card { min-height: 80px; }
  .power-innovation-img { height: 18vw; min-height: 30px; max-width: 60px; }
  .power-innovation-card h5 { font-size: 0.93rem; }
}
/* Hide scroll bar for row on desktop */
.power-innovation-row::-webkit-scrollbar {
  display: none;
}
.power-innovation-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.advanced-features-section {
  background: #fff;
  padding: 30px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.advanced-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1vw;
}

.advanced-features-subtitle {
  display: inline-block;
  background: #f3f4f6;
  color: #1b263b;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 18px;
  padding: 5px 18px;
  margin-bottom: 18px;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.advanced-features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: left;
  line-height: 1.1;
}

.advanced-features-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.advanced-features-col {
  flex: 1 1 30%;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.advanced-features-center-img {
  flex: 1 1 30%;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.advanced-features-center-img img {
  width: 100%;
  max-width: 260px;   /* Increased from 180px */
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

.advanced-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
  background: none;
  min-height: 70px;
}

.advanced-feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.advanced-feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
  background: #1b3957;
  flex-shrink: 0;
}

.advanced-feature-dot.secondary {
  background: #2d314d;
}

.advanced-feature-content {
  flex: 1 1 auto;
}

.advanced-feature-number {
  position: absolute;
  top: 0;
  right: -24px;
  font-size: 1rem;
  color: #444;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.advanced-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.1em;
  margin-top: 0;
  text-align: left;
}

.advanced-feature-desc {
  font-size: 0.98rem;
  color: #222;
  font-weight: 400;
  margin: 0;
  text-align: left;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .advanced-features-row {
    flex-direction: column;
    gap: 18px;
  }
  .advanced-features-col, .advanced-features-center-img {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100vw;
    align-items: center;
  }
  .advanced-features-center-img img { max-width: 220px; }
}

@media (max-width: 600px) {
  .advanced-features-section { padding: 16px 0 0 0; }
  .advanced-features-title { font-size: 1.1rem; margin-bottom: 14px; }
  .advanced-feature-title { font-size: 0.98rem; }
  .advanced-feature-desc { font-size: 0.93rem; }
  .advanced-feature-number { right: -16px; font-size: 0.9rem; }
  .advanced-feature-dot { width: 8px; height: 8px; margin-top: 3px; }
  .advanced-features-center-img img { max-width: 120px; }
}
/* --- Clean Future Section --- */
/* --- Clean Future Section --- */
/* --- Clean Future Section --- */
.nxte-clean-future-section {
  background: #fff;
  padding: 60px 0 0 0;
}
.nxte-clean-future-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}
.nxte-clean-future-section .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2vw;
  align-items: stretch;
}
.nxte-clean-future-section .col-lg-4 {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
  padding: 0 1vw;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.nxte-clean-future-section .col-lg-4.visible {
  opacity: 1;
  transform: translateY(0);
}
.nxte-clean-future-subtitle {
  display: inline-block;
  background: #f3f4f6;
  color: #181818;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 22px;
  padding: 7px 28px;
  margin-bottom: 32px;
  margin-top: 10px;
  letter-spacing: 0.01em;
  text-align: left;
}
.nxte-clean-future-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  line-height: 1.1;
  max-width: 500px;
}
.nxte-clean-future-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 24px;
  margin-top: 0;
  text-align: left;
}
.nxte-clean-future-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: item;
}
.nxte-clean-future-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  font-size: 1.15rem;
  color: #222;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.nxte-clean-future-list li.visible {
  opacity: 1;
  transform: translateY(0);
}
.nxte-clean-future-list li:last-child {
  margin-bottom: 0;
}
.nxte-clean-future-list li::before {
  content: counter(item);
  counter-increment: item;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #143a54;
  color: #fff;
  margin-right: 18px;
  flex-shrink: 0;
}
.nxte-clean-future-list.dark li::before {
  background: #2d314d;
}
.nxte-clean-future-list.dark li {
  color: #222;
}

/* Responsive */
@media (max-width: 900px) {
  .nxte-clean-future-section .row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nxte-clean-future-section .col-lg-4 {
    padding: 0;
    min-width: 0;
  }
  .nxte-clean-future-title { font-size: 1.5rem; }
  .nxte-clean-future-heading { font-size: 1.1rem; }
  .nxte-clean-future-list li { font-size: 1rem; margin-bottom: 18px; }
  .nxte-clean-future-list li::before { width: 32px; height: 32px; font-size: 1rem; margin-right: 12px; }
}
@media (max-width: 600px) {
  .nxte-clean-future-section { padding: 18px 0 0 0; }
  .nxte-clean-future-title { font-size: 1.1rem; }
  .nxte-clean-future-heading { font-size: 0.98rem; }
  .nxte-clean-future-list li { font-size: 0.93rem; margin-bottom: 8px; }
  .nxte-clean-future-list li::before { width: 18px; height: 18px; font-size: 0.8rem; margin-right: 6px; }
}
/* --- Quote Section --- */
.nxte-quote-section {
  display: flex;
  width: 100vw;
  min-height: 500px;
  height: 40vw;
  max-height: 650px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.nxte-quote-img {
  flex: 1 1 0;
  background: url('https://madebydesignesia.com/themes/autoev/images/background/2.webp') center center/cover no-repeat;
  min-width: 0;
  min-height: 100%;
}

.nxte-quote-content {
  flex: 1 1 0;
  background: #2d2e41;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 100%;
  padding: 0;
}

.nxte-quote-inner {
  max-width: 700px;
  margin: 0 5vw;
}

.nxte-quote-icon {
  font-size: 2.5rem;
  color: #7ed957;
  margin-bottom: 32px;
  display: block;
}

.nxte-quote-text {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}

.nxte-quote-author {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.85;
  display: block;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
  .nxte-quote-section { height: auto; min-height: 350px; }
  .nxte-quote-inner { max-width: 90vw; }
  .nxte-quote-text { font-size: 2rem; }
}
@media (max-width: 900px) {
  .nxte-quote-section { flex-direction: column; height: auto; min-height: 0; }
  .nxte-quote-img, .nxte-quote-content { min-height: 220px; height: 220px; }
  .nxte-quote-content { height: auto; min-height: 0; }
  .nxte-quote-inner { margin: 2vw; }
}
@media (max-width: 600px) {
  .nxte-quote-img, .nxte-quote-content { height: 160px; min-height: 160px; }
  .nxte-quote-text { font-size: 1.1rem; }
  .nxte-quote-author { font-size: 1rem; }
}
/* --- Testimonial Section --- */
.nxte-testimonial-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.nxte-testimonial-subtitle {
  display: inline-block;
  background: #f3f4f6;
  color: #181818;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 22px;
  padding: 7px 28px;
  margin-bottom: 32px;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.nxte-testimonial-title {
  font-size: 4rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.1;
}
.nxte-testimonial-link {
  font-weight: 700;
  font-size: 1.15rem;
  color: #181818;
  background: #f3f4f6;
  border-radius: 22px;
  padding: 7px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.nxte-testimonial-link:hover {
  background: #e9ecef;
}
.nxte-testimonial-carousel-wrapper {
  width: 100vw;
  overflow-x: auto;
  padding: 0 0 30px 0;
}
.nxte-testimonial-carousel {
  display: flex;
  gap: 32px;
  padding: 32px 5vw 0 5vw;
  scroll-behavior: smooth;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.nxte-testimonial-card {
  background: #f8f9fa;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  min-width: 340px;
  max-width: 400px;
  flex: 0 0 340px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  cursor: grab;
  border: 1px solid #e9ecef;
}
.nxte-testimonial-card:hover {
  background: #e9ecef;
  box-shadow: 0 8px 32px rgba(38,40,58,0.13);
  transform: translateY(-8px) scale(1.03);
}
.nxte-testimonial-rating {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.nxte-testimonial-author {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #181818;
}
.nxte-testimonial-author span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}
.nxte-testimonial-text {
  font-size: 1.15rem;
  color: #222;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .nxte-testimonial-title { font-size: 2.2rem; }
  .nxte-testimonial-card { min-width: 260px; max-width: 260px; padding: 18px 12px; }
  .nxte-testimonial-carousel { gap: 18px; }
}
@media (max-width: 900px) {
  .nxte-testimonial-title { font-size: 1.5rem; }
  .nxte-testimonial-card { min-width: 90vw; max-width: 90vw; }
  .nxte-testimonial-carousel { gap: 12px; padding: 18px 2vw 0 2vw; }
}
@media (max-width: 600px) {
  .nxte-testimonial-section { padding: 30px 0 0 0; }
  .nxte-testimonial-title { font-size: 1.1rem; }
  .nxte-testimonial-card { min-width: 98vw; max-width: 98vw; padding: 10px 6px; }
  .nxte-testimonial-carousel { gap: 8px; }
}
.nxte-testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.nxte-testimonial-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Section background and layout */
.explore-offerings-section {
  position: relative;
  background: #e5e7eb;
  padding: 60px 0 40px 0;
  min-height: 60vh;
  overflow: hidden;
}
.explore-offerings-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}
.explore-offerings-container {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2vw;
}
.explore-offerings-subtitle {
  display: block;
  background: #f3f4f6;
  color: #181818;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 22px;
  padding: 7px 28px;
  margin-bottom: 32px;
  margin-top: 10px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.explore-offerings-title {
  font-size: 4rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 60px;
  margin-top: 0;
  text-align: center;
  line-height: 1.1;
}
.explore-offerings-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 36px;
  margin: 0 auto;
  padding-bottom: 30px;
  overflow-x: auto;
}
.explore-offerings-card {
  background: #26283a;
  border-radius: 18px;
  box-sizing: border-box;
  width: 540px;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 36px;
  min-height: 140px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: none;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  position: relative;
}
.explore-offerings-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.explore-offerings-card:hover {
  box-shadow: 0 8px 32px rgba(38,40,58,0.13);
  background: #23243a;
}
.explore-offerings-card i {
  font-size: 4rem;
  color: #fff;
  background: none;
  border-radius: 12px;
  padding: 0;
  min-width: 80px;
  text-align: center;
  display: inline-block;
}
.explore-offerings-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0 0;
  line-height: 1.1;
  text-align: left;
  letter-spacing: 0.01em;
  display: inline-block;
}
@media (max-width: 1500px) {
  .explore-offerings-title { font-size: 3rem; }
  .explore-offerings-card { width: 340px; min-width: 240px; max-width: 340px; padding: 24px 18px; gap: 18px;}
  .explore-offerings-card i { font-size: 2.5rem; min-width: 60px; }
  .explore-offerings-card h4 { font-size: 1.2rem; }
}
@media (max-width: 1200px) {
  .explore-offerings-title { font-size: 2.2rem; }
  .explore-offerings-card { width: 240px; min-width: 180px; max-width: 240px; padding: 18px 10px; gap: 12px;}
  .explore-offerings-card i { font-size: 2rem; min-width: 40px; }
  .explore-offerings-card h4 { font-size: 1rem; }
}
@media (max-width: 900px) {
  .explore-offerings-row {
    gap: 18px;
    margin-left: 0;
    padding-bottom: 18px;
  }
  .explore-offerings-title { font-size: 1.5rem; margin-left: 0; }
  .explore-offerings-subtitle { margin-left: 0; }
  .explore-offerings-card { width: 90vw; min-width: 90vw; max-width: 90vw; }
  .explore-offerings-card i { font-size: 2rem; min-width: 40px; }
  .explore-offerings-card h4 { font-size: 1rem; }
}
@media (max-width: 600px) {
  .explore-offerings-section { padding: 30px 0 0 0; }
  .explore-offerings-title { font-size: 1.1rem; margin-bottom: 24px; }
  .explore-offerings-row { gap: 12px; }
  .explore-offerings-card { width: 98vw; min-width: 98vw; max-width: 98vw; padding: 10px 6px; gap: 8px;}
  .explore-offerings-card i { font-size: 1.2rem; min-width: 28px; }
  .explore-offerings-card h4 { font-size: 0.98rem; }
}
.explore-offerings-row::-webkit-scrollbar {
  display: none;
}
.explore-offerings-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* --- Counter Section --- */
/* --- Counter Section --- */
.bg-dark.section-dark {
  background: #1b263b !important;
  color: #fff;
  padding: 60px 0;
}
.bg-dark.section-dark .container {
  width: 100%;
  max-width: 100vw;
  padding-left: 6rem;
  padding-right: 6rem;
}
.bg-dark.section-dark .row.g-4 {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.bg-dark.section-dark .col-md-4,
.bg-dark.section-dark .col-sm-6 {
  flex: 1 1 0;
  max-width: 33.3333%;
  min-width: 0;
  margin-bottom: 0 !important;
  display: flex;
  justify-content: center;
}
.de_count {
  position: relative;
  background: transparent;
  border-radius: 18px;
  padding-left: 70px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: background 0.2s;
}
.de_count:hover {
  background: rgba(255,255,255,0.04);
}
.de_count i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #ced4da !important;
}
.de_count h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.de_count span.timer {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.2em;
  transition: color 0.2s;
}
.de_count:hover span.timer {
  color: #7ed957;
}
.de_count > span {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 0.2em;
  margin-left: 1rem;
}
@media (max-width: 1200px) {
  .bg-dark.section-dark .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .de_count { padding-left: 50px; min-height: 80px; }
  .de_count i { font-size: 2rem; }
  .de_count h3, .de_count span.timer { font-size: 1.5rem; }
  .de_count > span { font-size: 1rem; }
}
@media (max-width: 900px) {
  .bg-dark.section-dark .row.g-4 {
    flex-wrap: nowrap !important;
  }
  .bg-dark.section-dark .col-md-4,
  .bg-dark.section-dark .col-sm-6 {
    max-width: 33.3333%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .bg-dark.section-dark { padding: 30px 0; }
  .bg-dark.section-dark .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .de_count { padding-left: 36px; min-height: 60px; }
  .de_count i { font-size: 1.3rem; }
  .de_count h3, .de_count span.timer { font-size: 1.1rem; }
  .de_count > span { font-size: 0.9rem; }
}
/* --- FAQ Accordion Section --- */
/* --- FAQ Strict Grid --- */
/* FAQ Section Background Fix */
.nxte-faq-section {
  position: relative;
  padding: 60px 0 0 0;
  min-height: 600px;
  background: transparent;
  overflow: hidden;
}
.nxte-faq-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.nxte-faq-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent;
}
.nxte-faq-section .container {
  position: relative;
  z-index: 2;
  background: transparent;
}
.nxte-faq-row {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
  margin-top: 2rem;
}
.nxte-faq-col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.5vw;
}
.accordion.secondary {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.accordion-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  background: transparent;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #dee2e6;
  transition: background 0.2s, color 0.2s;
  position: relative;
  outline: none;
  margin: 0;
  display: flex;
  align-items: center;
}
.accordion-section-title::after {
  content: '\f078';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.1rem;
  color: #212529;
  position: absolute;
  right: 18px;
  transition: transform 0.3s;
}
.accordion-section-title.active {
  color: #143a54;
  background: #f8f9fa;
}
.accordion-section-title.active::after {
  transform: rotate(180deg);
}
.accordion-section-content {
  display: none;
  background: transparent;
  padding: 0 0 22px 0;
  font-size: 1.18rem;
  color: #222;
  animation: fadeInAccordion 0.4s;
  border-bottom: 1px solid #dee2e6;
}
.accordion-section-content.open {
  display: block;
}
.nxte-faq-btn {
  display: inline-block;
  background: #f3f4f6;
  color: #181818;
  font-weight: 700;
  font-size: 1.5rem;
  border: none;
  border-radius: 2em;
  padding: 10px 36px;
  margin-bottom: 24px;
  margin-top: 10px;
  letter-spacing: 0.01em;
  box-shadow: none;
  cursor: default;
  text-align: center;
}
@keyframes fadeInAccordion {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 900px) {
  .nxte-faq-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nxte-faq-col {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .accordion-section-title { font-size: 1rem; padding: 12px 28px 12px 0; }
  .accordion-section-content { font-size: 0.95rem; }
  .nxte-faq-section { padding: 18px 0 0 0; min-height: 300px; }
}