/*
 Theme Name:   Electres Child
 Theme URI:    https://generatepress.com
 Description: Child theme of GeneratePress
 Author:       Techindustan
 Author URI:   https://yourwebsite.com
 Template:     generatepress
 Version:      1.1
*/

/* ==========================================================================
   Electres Website Stylesheet
   ========================================================================== */

@import url(https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap);

:root {
  --color-primary: #e21e31;
  --color-secondary: #000000;
  --color-accent: #cfcac2;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark-grey: #1a1a1a;
  --color-text-main: #000000;
  --color-text-muted: #666666;
  --color-bg-light: #f9f9f9;
  --color-bg-card: #f4f4f4;
  --color-border-light: #eeeeee;
  --container-wide-width: 1440px;
  --section-gap: 120px;
  --font-primary: "Google Sans", sans-serif;
  --transition-standard: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
}

html {
  scroll-behavior: smooth;

}

/* Scrollbar */
::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-track {
  background: 0 0;
}

::-webkit-scrollbar-thumb {
  background-color: #e21e31;
  border-radius: 2px;
  border: 0.25px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b91625;
}

p {
  margin-bottom: 0;
}

body {
  font-family: "Google Sans", sans-serif;
}

.mg-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.pro-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.grecaptcha-badge {
  display: none !important;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Base fixed header ── */
#main-header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0;
  background: transparent;
  /* Spring return (scroll up), snappy leave (scroll down via .is-hidden) */
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Slide header off-screen fast when scrolling down */
#main-header.header.is-hidden {
  transform: translateY(-100%);
  transition: transform 0.28s cubic-bezier(0.55, 0, 1, 0.45);
}

/* Logo SVG fill switches to brand red on scroll */
#main-header.is-scrolled .logo svg.site-logo path {
  fill: #e21e31;
}

/* ── Keyframe: pill materialises with a gentle scale + fade from above ── */
@keyframes pillAppear {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    box-shadow: none;
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Pill container base ── */
#main-header .mg-container {
  transition:
    background 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.65s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.65s cubic-bezier(0.25, 1, 0.5, 1),
    margin-top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 1840px;
  padding: 0 20px;
  position: relative;
}

/* Pill shrinks width on scroll — smooth spring */
#main-header.is-scrolled .mg-container {
  width: 98%;
  border-radius: 12px;
  animation: pillAppear 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Mobile collapsed pill (small dark icon pill — mobile only) */
#main-header.is-scrolled.is-collapsed .mg-container {
  background: #000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  max-width: 52px;
  padding: 12px;
  border-radius: 8px;
  top: 10px;
  position: relative;
  width: 100%;
}

#main-header.header a.scrolled-logo-link,
#main-header.is-scrolled.is-collapsed a.site-logo-link,
.is-collapsed .header-wrap .header-cta-block {
  display: none;
}

#main-header.is-scrolled.is-collapsed a.scrolled-logo-link {
  display: flex;
}

.header-cta-block,
.header-menu {
  transition:
    opacity 0.5s,
    margin 0.5s,
    width 0.5s;
  opacity: 1;
  width: auto;
  white-space: nowrap;
}

/* After-icon arrow stroke — always black, instant */
#main-header .after-icon svg path,
#main-header.is-scrolled .after-icon svg path {
  stroke: #000000;
  transition: stroke 0.3s ease;
}

/* Header wrap height transition */
#main-header .header-wrap {
  display: flex;
  transition: min-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

#main-header .v-center {
  align-items: center;
  justify-content: space-between;
}

#main-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(12px, 1.3vw, 20px);
  justify-content: center;
}

#main-header a {
  text-decoration: none;
}

#main-header .item-left {
  flex: 0 0 17%;
}

#main-header .item-center {
  flex: 0 0 66%;
}

#main-header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#main-header .logo {
  opacity: 1;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

#main-header .logo a {
  display: flex;
}

#main-header .logo path {
  fill: #e21e31;
}

/* Alternate logo: slides in from above when scrolled */
#main-header .onscroll-logo {
  position: absolute;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#main-header.is-scrolled .onscroll-logo {
  opacity: 1;
  transform: translateY(0);
}

.header-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 9px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.header-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

#main-header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
}

#main-header .menu-item {
  padding: 10px 0;
}

/* Nav link colour: smooth transition for home page white→black */
#main-header .menu>ul>li>a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
}

/* Active Menu Item Color */
.menu-main .current-menu-item>a,
.menu-main .current_page_item>a,
.menu-main .current-menu-ancestor>a,
.menu-main .current_page_ancestor>a {
  color: var(--color-primary, #e21e31) !important;
}

.after-icon {
  display: flex;
  margin-left: 6px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

#main-header.is-scrolled .menu>ul>li>a {
  color: #000;
}

/* .has-mega-menu {
  display: none;
} */

.mega-content {
  white-space: normal;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-menu-heading {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.mega-desc {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.mega-link-sec {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.mega-menu-icon svg {
  transform: translateY(1px);
}

a.mega-menu-links {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  align-items: center;
  gap: 4px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  outline: none !important;
}

a.mega-menu-links:focus,
a.mega-menu-links:active,
.mega-item:focus,
.mega-item:active,
.mega-menu-dropdown *:focus,
.mega-menu-dropdown *:active {
  outline: none !important;
}

.mega-menu-icon {
  display: flex;
}

.mega-item {
  background: rgb(206 206 206 / 30%);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mega-img {
  display: flex;
  width: 100%;
}

.mega-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

@media (min-width: 992px) {
  .mega-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }

  .mega-item:hover .mega-img img {
    transform: scale(1.05);
  }

  .mega-item:hover .mega-menu-heading {
    color: #ea4636;
  }
}

#main-header .menu>ul>li .sub-menu {
  padding: 20px 0;
  border-top: none;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  position: absolute;
  background: rgb(255, 255, 255);
  left: -1px;
  right: -1px;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}


#main-header .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#main-header .mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

#main-header .item-right a:hover,
#main-header .menu a:hover {
  color: #ea4636;
}

#main-header .mobile-menu-head,
#main-header .mobile-menu-trigger {
  display: none;
}

#main-header .mobile-menu-trigger svg path {
  stroke: #000;
}

.home #main-header .mobile-menu-trigger svg path,
body:has(.banner-dark) #main-header .mobile-menu-trigger svg path {
  stroke: #ffffff;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.675);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  height: 100dvh;
}

.hero-section {
  overflow: hidden;
  padding: 140px 48px;
  width: 100%;
  min-height: clamp(600px, 100vh, 900px);
  position: relative;
  max-height: 900px;
  display: block;
}

.hero-content {
  display: inline-block;
  width: 100%;
  max-width: 860px;
  padding: 0 20px;
}

.hero-content.top-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content.bottom-left {
  position: absolute;
  left: 0;
  transform: translateX(0);
  bottom: 0;
  padding-bottom: 20px;
  padding-left: 20px;
}

.hero-heading {
  color: #fff;
  text-align: center;
  font-size: clamp(38px, 4.25vw, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 12px;
}

.hero-subheading {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-black:hover {
  background-color: #333;
}

.btn-outline-black {
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.btn-outline-black:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-outline,
.btn-solid {
  padding: 12px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition-standard);
}

.btn-outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  margin-right: 12px;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-solid {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-solid:hover {
  background-color: #f0f0f0;
}

button {
  cursor: pointer;
}

button:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

.btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-standard);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 140%;
  font-weight: 500;
  gap: 4px;
  min-width: 150px;
  outline: 0;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #c4192b;
  color: var(--color-white);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-black);
  width: fit-content;
  padding-bottom: 2px;
}

.learn-more i {
  font-size: 12px;
  transition: transform 0.2s;
}

.learn-more:hover i {
  transform: translateX(4px);
}

.hero {
  height: 100dvh;
  min-height: 100dvh;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  padding-block: calc(60px + var(--header-height));
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 0;
  opacity: 0.5;
}

.category-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.category-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.energy_section {
  padding-top: 104px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
}

.card-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/0.511;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .card-image img {
  transform: scale(1.03);
}

.card-text {
  max-width: 60vw;
}

.category-card .card-content {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.card-title-text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.card-title-sub-text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.6;
}

.category-card .card-features {
  gap: 40px;
  padding-top: 2.5rem;
  width: 100%;
}

.category-card .card-features .feature-item {
  border-top: 1px solid rgb(207 202 194 / 45%);
  padding-top: 16px;
}

.feature-title {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.heading-comm-sec {
  color: #000;
  font-size: clamp(24px, 2.85vw, 42px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  max-width: 880px;
  margin-bottom: 12px;
}

.child-comm-subheading {
  color: #000;
  font-size: clamp(14px, 1.85vw, 18px);
  font-style: normal;
  font-weight: 400;
  opacity: 0.6;
  line-height: 140%;
}

.showcase-section {
  padding: 64px 40px;
}

.showcase-content .main-title {
  max-width: 850px;
}

.child-inner-heading {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}

.child-inner-description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.6;
  display: inline-flex;
  line-height: 140%;
}

.productDesc {
  color: var(--White, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 32px;
  opacity: 0.8;
  max-width: clamp(36rem, 33vw, 72rem);
}

.badge {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: var(--White, #fff);
  border-radius: 50px;
}

.badge-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-image-wrapper {
  position: relative;
  width: 100%;
  margin-top: 56px;
  display: flex;
  user-select: none;
}

.showcase-image-wrapper:before {
  opacity: 0.7;
  background: linear-gradient(0deg, #000 38.3%, rgba(0, 0, 0, 0) 96.1%);
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 240px;
  height: 100%;
  left: 0;
}

.showcase-image-wrapper .image-banner {
  aspect-ratio: 1/0.5;
  position: relative;
}

.showcase-image-wrapper .image-banner .image-banner-image {
  position: absolute;
  inset: 0;
}

.showcase-image-wrapper .image-banner .image-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0) 100%);
  opacity: 0.7;
}

.showcase-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 40px;
}

.showcase-card-content {
  padding: 32px 40px;
  color: var(--color-white);
  max-width: 750px;
}

.showcase-card-content .showcase-card-title {
  font-size: 24px;
  font-weight: 500;
}

.showcase-card-content .showcase-card-description {
  opacity: 0.8;
  margin-top: 10px;
}

.showcase-card-content .badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.showcase-card-content .badge-group .badge {
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 10px;
  min-width: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: normal;
}

.toggle-group {
  display: flex;
  gap: 0;
  background: var(--color-bg-card);
  border-radius: 0;
  padding: 0;
  margin: 40px auto 0;
  justify-content: center;
  width: max-content;
}

.toggle-group .toggle-item {
  border-radius: 0;
  outline: 0;
  border: 0;
  background: 0 0;
  font-size: 14px;
  display: flex;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s;
}

.toggle-group .toggle-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  z-index: -1;
  border-radius: 0;
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s;
}

.toggle-group .toggle-item.active {
  background: 0 0;
  color: var(--color-white);
}

.toggle-group .toggle-item.active::before {
  transform: scale(1);
  opacity: 1;
}

.reliability-section {
  padding: 64px 40px;
}

.reliability-section .reliability-image,
.reliability-section .reliability-video {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 56px;
}

.reliability-section .reliability-image img,
.reliability-section .reliability-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.newsroom {
  padding: 64px 40px;
  overflow: hidden;
}

.news-tag-text {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #ebebeb;
  margin-bottom: 8px;
}

.news-card-content {
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  margin: 0 auto;
  display: flex;
  bottom: 12px;
  left: 12px;
  min-height: 10rem;
}

.news-title-text {
  margin: 0;
  color: #010101;
  font-size: clamp(14px, 1.2vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  min-height: clamp(80px, 5vw, 110px);
}

.news-date,
.news-read-time,
.news-separator {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.news-list-item .news-separator {
  width: 4px;
  height: 4px;
  background: #b5b5b5;
  border-radius: 50%;
}

.slider-arrow-container {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 100%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-arrow {
  background: #ffff;
  width: 49px;
  height: 49px;
  border-radius: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #ffff;
}

.arrow-icon {
  display: flex;
}

.news-prev svg {
  transform: rotate(180deg);
}

.swiper-button-disabled {
  visibility: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
  margin-top: auto;
}

.news-bg-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  aspect-ratio: 1.55/1;
  width: 100%;
  transition: transform 0.3s;
  max-height: clamp(255px, 40vw, 294px);
  object-fit: cover;
}

.news-slider-container {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
}

.news-slider-container a {
  text-decoration: none;
  display: block;
}

.news-title-text {
  transition: color 0.3s;
}

img.news-bg-img {
  transition: transform 0.4s;
  will-change: transform;
}

.news-slider-container a:hover .news-title-text {
  color: #e21e31;
}

.news-slider-container a:hover img.news-bg-img {
  transform: translateY(-4px);
}

.news-slider {
  max-width: 100%;
  overflow: visible;
  width: 100%;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  column-gap: 40px;
}

.news-header .section-desc {
  color: var(--color-text-muted);
  max-width: 600px;
}

.news-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  box-sizing: border-box;
  height: auto;
  padding-right: 40px;
}

.news-card {
  background: #f4f4f4;
  overflow: hidden;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.news-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.about {
  padding-top: 104px;
}

.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: auto;
}

.stat-item {
  text-align: left;
  position: relative;
  padding-left: 64px;
  padding-right: 64px;
  min-width: 148px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #cfcac2;
  opacity: 0.6;
}

.stat-label {
  font-size: 14px;
  color: #0000;
  margin-bottom: 8px;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}

.counter-heading {
  opacity: 0.6;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
}

.counter-title {
  color: #000;
  font-size: clamp(24px, 3.56vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: end;
}

.counter-title .counter {
  padding: 0 2px;
}

.counter-title-2 span:nth-child(3),
.counter-title-3 span:nth-child(3) {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.stat-value {
  font-size: 42px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}

.stat-value small {
  font-size: 18px;
  font-weight: 500;
}

.about-values {
  padding: clamp(32px, 2.75vw, 64px) clamp(0px, 2.2vw, 40px);
  background: #fff;
}

.values-header {
  margin-bottom: 80px;
}

.values-list-wrapper {
  border-top: 1px solid #e5e5e5;
}

.values-item {
  display: flex;
  align-items: center;
  padding: 45px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.3s;
}

.values-index {
  font-size: clamp(16px, 2.5vw, 24px);
  color: #444444ff;
  min-width: 60px;
  font-weight: 400;
}

.values-title-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 35%;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  flex-shrink: 0;
}

.value-icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.values-inner-title {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
  color: #000;
  margin: 0;
}

.values-inner-desc {
  flex: 1;
  padding-left: 20px;
}

.values-inner-desc p {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #000;
  line-height: 140%;
  margin: 0;
  opacity: 0.6;
}

.promo-banner {
  padding: 20px 40px 80px;
}

.promo-container {
  background-color: var(--color-bg-card);
  position: relative;
  box-shadow: none;
  min-height: 390px;
  background-position: right;
  display: flex;
  align-items: stretch;
  background-size: cover;
  justify-content: stretch;
}

.promo-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.promo-image-container .promo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 450px;
}

.promo-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.promo-image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-desktop-img {
  display: block;
}

.promo-mobile-img {
  display: none;
}

.promo-text {
  position: relative;
  z-index: 1;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  align-items: flex-start;
}

.promo-text .child-inner-description {
  max-width: clamp(25rem, 33vw, 30rem);
  color: #fff;
}

.promo-text .heading-comm-sec {
  color: #fff;
}

.btn-red {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-standard);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.btn-red i {
  transition: transform 0.2s;
}

.btn-red:hover {
  background-color: #c4192b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 30, 49, 0.25);
}

.btn-red:hover i {
  transform: translateX(4px);
}

.call_to_action {
  border-radius: 48px;
  background: var(--Red, #e21e31);
  height: 48px;
  padding: 6px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  margin-top: 52px;
  transition: 0.3s;
}

.call_to_action:hover {
  background-color: #c4192b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 30, 49, 0.25);
}

footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 100px 40px 56px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 490px;
  background:
    linear-gradient(180deg,
      #000 0,
      rgba(0, 0, 0, 0.5) 66.22%,
      rgba(97, 20, 27, 0.2) 100%),
    #000;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 2.2fr 1fr 1.3fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.footer-widget-area .widget-title {
  margin-bottom: 24px;
  color: var(--Warm-Grey, #cfcac2);
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.footer-1 .textwidget {
  color: var(--Warm-Grey, #cfcac2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--color-accent);
}

.footer-logo {
  margin-bottom: 18px;
  display: flex;
  line-height: normal;
}

.footer-logo a {
  display: flex;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.8;
}

.social-links {
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
}

.social-links a {
  display: flex;
  transition: var(--transition-standard);
}

.social-links a svg {
  width: 40px;
  height: 40px;
  display: flex;
  display: -webkit-flex;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 30, 49, 0.25);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col li.menu-item a {
  color: var(--White, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
  font-family: "Google Sans", sans-serif;
  transition: var(--transition-standard);
  text-decoration: none;
}

.footer-col li.menu-item a:hover,
.footer-col li.menu-item.current-menu-item a,
.footer-col li.menu-item.current_page_item a,
.footer-col li.menu-item.active a {
  color: var(--Red, #e21e31);
}

.footer-4 .custom-html-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-4 .custom-html-widget a,
.footer-4 .custom-html-widget p {
  color: var(--White, #fff);
  font-family: "Google Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  text-decoration: none;
  transition: var(--transition-standard);
}

.footer-4 .custom-html-widget .email-link {
  color: var(--Red, #e21e31);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 0;
}

.email-link:hover,
.footer-4 .custom-html-widget a:hover {
  color: var(--Red, #e21e31);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #cfcac22b;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer-text {
  color: var(--Warm-Grey, #cfcac2);
  text-align: center;
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  gap: 2px;
  flex-wrap: wrap;
  ;
}

.footer-text .footer-link {
  color: var(--Warm-Grey, #cfcac2);
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  padding: 0 3px;
  /* display: none; */
}

.tech-link {
  color: var(--Warm-Grey, #cfcac2);
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  padding: 0 0 0 3px;
  transition: var(--transition-standard);
}

.tech-link:active,
.tech-link:focus,
.tech-link:hover {
  color: #ff4d4f;
  text-decoration: underline;
  text-decoration-color: #ff4d4f;
  text-underline-offset: 2px;
}

/* 
.footer-separator {
  display: none;
} */

.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-copy img {
  display: flex;
  width: 14px;
}

.footer-rights {
  display: inline-flex;
}

.address {
  max-width: 290px;
}

.cf7-popup.mdal-popup-landing {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s,
    visibility 0.45s;
}

.cf7-popup.mdal-popup-landing.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cf7-popup.mdal-popup-landing .cf7-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s;
}

.cf7-popup.mdal-popup-landing.active .cf7-popup-overlay {
  opacity: 1;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content {
  position: relative;
  max-width: 760px;
  width: calc(100% - 24px);
  padding: clamp(32px, 3.75vw, 40px) clamp(24px, 2.75vw, 30px);
  border-radius: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s;
  height: calc(100% - 100px);
  max-height: 820px;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body {
  max-height: calc(80vh - 12rem);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body::-webkit-scrollbar {
  display: none;
}

.cf7-popup.mdal-popup-landing .early-access-textarea:focus {
  outline: 0;
  color: #fff;
}

.cf7-popup.mdal-popup-landing.active .cf7-popup-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.overflow_hidden {
  overflow: hidden;
}

.cf-form-title {
  font-size: clamp(24px, 2.75vw, 36px);
  margin-bottom: clamp(24px, 3.75vw, 40px);
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cf7-popup.mdal-popup-landing .cf7-close {
  position: absolute;
  top: clamp(-12px, -1.75vw, -12px);
  right: clamp(-12px, -1.75vw, -12px);
  width: clamp(36px, 2.75vw, 42px);
  height: clamp(36px, 2.75vw, 42px);
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: clamp(20px, 3.75vw, 26px);
  cursor: pointer;
  transition: background 0.3s;
  padding: 4px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf7-popup.mdal-popup-landing .cf7-close:hover {
  background: rgba(216, 216, 216, 0.8);
}

.cf7-close svg,
.cf7-close svg * {
  pointer-events: none;
}

.cf7-close svg path {
  stroke: #000000;
}

.mdal-popup-landing .popup-inner-content .news-card {
  border-radius: 1rem;
  background: 0 0;
  gap: 0;
}

.mdal-popup-landing .popup-inner-content .news-card img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  object-position: top;
}

.mdal-popup-landing .popup-inner-content .news-card .news-card-content {
  position: static;
  width: 100%;
  max-height: max-content;
  row-gap: 0.5rem;
}

.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
  width: 100%;
}

.early-access-form br,
.early-access-form p {
  margin: 0;
  padding: 0;
}

.early-access-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

.early-access-action,
.early-access-field {
  display: flex;
  flex: 1;
  position: relative;
}

.early-access-field.full {
  flex: 0 0 100%;
}

.early-access-field input:-webkit-autofill,
.early-access-field input:-webkit-autofill:active,
.early-access-field input:-webkit-autofill:focus,
.early-access-field input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a00 inset !important;
  box-shadow: 0 0 0 1000px #1a1a1a00 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  border: 1px solid;
  transition: background-color 5000s ease-in-out;
}

.early-access-field .early-access-input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  outline: 0;
  transition:
    border-color 0.3s,
    box-shadow 0.4s,
    background 0.3s;
}

.contact-us .early-access-input option:first-child {
  color: #999;
}

.early-access-input,
.wpcf7-form select {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wpcf7-form select option {
  background-color: #0f1115;
  color: #fff;
}

.wpcf7-form select option:checked,
.wpcf7-form select option:hover {
  background-color: #1a1d23;
  color: #000;
}

.early-access-field .early-access-input:focus,
.early-access-textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.045),
    0 0 22px rgba(255, 255, 255, 0.043);
  animation: 1.6s ease-in-out infinite alternate inputGlow;
  color: #fff;
}

@keyframes inputGlow {
  from {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.12),
      0 0 1px rgba(255, 255, 255, 0.25);
  }

  to {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.25),
      0 0 6px rgba(255, 255, 255, 0.45);
  }
}

.early-access-textarea {
  width: 100%;
  min-height: 80px;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  resize: none;
  outline: 0;
  height: 120px;
  overflow: auto;
}

.early-access-input::placeholder,
.early-access-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.dd-field {
  position: relative;
}

.dd-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 0 0;
  padding-right: 36px;
}

.dd-field::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.early-access-action .early-access-btn {
  height: clamp(48px, 4.5vw, 50px);
  padding: 0 28px;
  max-width: 250px;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff4d4f, #e31938);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.3s;
  outline: 0;
}

.early-access-btn:hover {
  transform: translateY(-2px);
}

.early-access-btn:active {
  transform: translateY(0);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form br,
.wpcf7 form p {
  margin: 0;
  padding: 0;
  width: 100%;
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  background: rgb(204 0 2 / 85%);
  backdrop-filter: blur(8px);
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  animation: 0.3s forwards errorFadeIn;
  z-index: 9;
}

@keyframes errorFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpcf7 form {
  position: relative;
}

.wpcf7-response-output {
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 250px;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 40px;
  margin: 0 !important;
  animation: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both responsePopIn;
}

@keyframes responsePopIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.wpcf7 form .wpcf7-response-output::before {
  content: "";
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  animation: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both iconScale;
}

@keyframes iconScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: linear-gradient(135deg,
      rgba(52, 211, 153, 0.15) 0,
      rgba(10, 10, 10, 0.95) 100%);
  color: #fff;
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(52, 211, 153, 0.1);
}

.wpcf7 form.sent .wpcf7-response-output::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334d399'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'%2F%3E%3C%2Fsvg%3E");
}

.wpcf7 form.failed .wpcf7-response-output {
  background: linear-gradient(135deg,
      rgba(239, 68, 68, 0.15) 0,
      rgba(10, 10, 10, 0.95) 100%);
  color: #ffd1d1;
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(239, 68, 68, 0.1);
}

.wpcf7 form.failed .wpcf7-response-output::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'%2F%3E%3C%2Fsvg%3E");
}


/* Contact Us Form Start */
.contact-popup-layout .cf-subtitle-super {
  margin-bottom: 24px;
}

.contact-popup-layout .cf-form-title {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.75vw, 32px);
  line-height: 120%;
}

.contact-popup-layout .ea-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-popup-layout .dd-field::after {
  content: '';
  top: calc(50% + 11px);
  width: 8px;
  height: 8px;
  border-color: rgb(255 255 255 / 40%);
}

.contact-popup-layout select:first-child {
  color: #878787;
  font-size: 14px;
  border-radius: 6px;
  width: 100%;
}

.contact-popup-layout .early-access-field .early-access-input {
  height: 42px;
  padding: 6px 16px;
}

.contact-popup-layout .early-access-action .early-access-btn {
  height: 44px;
  max-width: 190px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .contact-popup-layout .datasheet-right {
    width: 50%;
    padding: clamp(16px, 4vw, 12px) clamp(12px, 3vw, 40px);
    padding-right: clamp(4px, 1vw, 16px);


  }

  .contact-popup-layout .datasheet-left {
    width: 50%;
    background: linear-gradient(180deg, #7a0000, #000);
    color: white;
    padding: clamp(16px, 4vw, 80px) clamp(12px, 3vw, 30px);
  }
}

@media (max-width: 768px) {

  .contact-popup-layout .cf7-popup-content.datasheet-layout {
    padding: 0 !important;
  }

  .contact-popup-layout .datasheet-right {
    padding: 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* Contact Us Form End */

.brochure-form-wrapper .wpcf7 form.sent .wpcf7-response-output,
.datasheet-popup-x .wpcf7 form .wpcf7-response-output,
.mobile-cta {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.making_image_content_section {
  position: relative;
  min-height: clamp(520px, 80vh, 1024px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 12vh, 80px) clamp(20px, 4vw, 40px);
}

.making_image_content_section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 2.54%, #fff 93.25%);
  max-height: clamp(150px, 40vh, 445px);
}

.making-image-content-heading {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  font-weight: 600;
  color: #000;
  margin-bottom: clamp(12px, 1.8vw, 20px);
  text-transform: capitalize;
}

.making-image-subtitle {
  font-size: clamp(14px, 3.85vw, 18px);
  line-height: 140%;
  color: #656565;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.make-section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  max-height: 100%;
}

section.making_image_content_section.make-section-overlay:after {
  background: linear-gradient(0deg, #000000de 2.54%, rgba(0, 0, 0, 0.00) 50.25%);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.making-image-overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  width: 100%;
  padding: 0 2px;
}

.image-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.2vw, 14px) clamp(22px, 3vw, 32px);
  background: #e21e31;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s,
    color 0.35s;
}

.image-btn-cta svg {
  transition: transform 0.35s;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-align: center;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.discliamer-con {
  display: flex;
  font-size: clamp(10px, 1.2vw, 12px);
  opacity: 0.6;
  line-height: 140%;
}

.journey-form-section {
  padding: 104px 0 0;
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.journey-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3.25vw, 40px);
  max-width: 1080px;
  margin: 0 auto;
}

.journey-left {
  flex: 0 0 auto;
  max-width: 253px;
}

.journey-title {
  margin-bottom: 0;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  max-width: clamp(253px, 27vw, 100%);
}

.journey-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.25vw, 70px);
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.form-group-journey {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 0 0 auto;
}

.journey-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.select-wrapper {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0;
  transition: border-color 0.3s;
}

.select-wrapper:hover {
  border-color: #000;
}

.journey-select {
  width: 100%;
  border: none;
  background: 0 0;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  padding-left: 0;
  cursor: pointer;
  outline: 0;
  line-height: 1.4;
  font-family: inherit;
}

.journey-select:focus {
  background: 0 0;
  border-color: #000;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.journey-submit-btn {
  background-color: var(--color-primary, #e21e31);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  width: 146px;
  height: 42px;
  padding: 6px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.journey-submit-btn:hover {
  background-color: #c01525;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 30, 49, 0.2);
}

.journey-submit-btn .btn-icon {
  display: flex;
  align-items: center;
}

.journey-submit-btn svg {
  display: block;
}

.custom-journey-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  font-size: 20px;
  color: #000;
  font-family: inherit;
}

.select-trigger {
  padding-right: 30px;
  padding-bottom: 8px;
  padding-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  line-height: normal;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 999;
  padding: 0;
  margin-top: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
}

.custom-journey-select.open .select-options {
  display: block;
  animation: 0.2s fadeIn;
}

.custom-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  color: #000;
  transition: background-color 0.2s;
  font-weight: 400;
}

.custom-option:hover {
  background-color: #efefef;
}

.custom-option.selected {
  color: #000;
  font-weight: 400;
}

.custom-option.selected::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L13 1' stroke='%23E21E31' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  margin-left: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toggle-item {
  position: relative;
  overflow: hidden;
}

.progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--color-primary, #e21e31);
  width: 0%;
  z-index: 1;
}

.mobile-feature-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.accordion-item {
  border-bottom: 1px solid rgb(207 202 194 / 50%);
}

.accordion-item:last-child {
  border: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-header .feature-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.acc-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-icon::after,
.acc-icon::before {
  content: "";
  position: absolute;
  background-color: #000;
  transition: transform 0.3s;
}

.acc-icon::before {
  width: 100%;
  height: 2px;
}

.acc-icon::after {
  width: 2px;
  height: 100%;
}

.accordion-item.active .acc-icon::after {
  transform: rotate(90deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s,
    opacity 0.35s,
    margin 0.35s;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 24px;

}

.accordion-body .feature-content {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.6;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.about-hero {
  padding-top: clamp(100px, 10vw, 130px);
}

.about-stats {
  padding-top: clamp(50px, 2.75vw, 64px);
  padding-bottom: clamp(32px, 2.75vw, 64px);
  padding-left: 40px;
  padding-right: 40px;
}

.about-hero-top {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  margin-bottom: clamp(36px, 2.5vw, 50px);
  padding: 0 clamp(20px, 4vw, 40px);
}

.about-hero-header {
  max-width: 100%;
}

.about-hero-content {
  width: calc(100% - 60px);
}

.about-hero-image img {
  width: 100%;
  min-height: clamp(280px, 65vw, 700px);
  object-fit: cover;
}

.about-hero-image video {
  width: 100%;
}

.about-stats-header {
  max-width: 800px;
  margin-bottom: clamp(36px, 2.5vw, 50px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: #f4f4f4;
  padding: clamp(24px, 2.2vw, 40px);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 12px;
}

.stat-text {
  opacity: 0.6;
  line-height: 140%;
  font-size: clamp(14px, 1.25vw, 16px);
  color: #000;
  font-style: normal;
  font-weight: 400;
}

.values-header {
  max-width: 900px;
  margin-bottom: clamp(36px, 2.5vw, 50px);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-image img {
  width: 100%;
}

.values-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon img {
  width: clamp(24px, 2.85vw, 40px);
}

.about-team {
  padding-top: clamp(32px, 2.75vw, 64px);
  padding-bottom: clamp(32px, 2.75vw, 64px);
  padding-left: clamp(20px, 2.2vw, 40px);
  padding-right: clamp(20px, 2.2vw, 40px);
}

.team-header {
  max-width: 800px;
  margin-bottom: clamp(36px, 2.5vw, 50px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  z-index: 2;
  transition: 0.4s;
}

.team-card-title {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card-designation {
  font-size: clamp(14px, 1.5vw, 16px);
  opacity: 0.85;
}

.team-hover-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  z-index: 3;
}

.team-hover-top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.linkedin-icon {
  border-radius: 50px;
  border: 1px solid rgba(207, 202, 194, 0.3);
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.linkedin-icon svg {
  width: 22px;
  height: 22px;
}

.team-hover-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 16px 0 20px;
}

.team-member-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 140%;
  opacity: 0.9;
}

.team-card:hover img {
  transform: scale(1.08);
}


@media screen and (min-width: 1024px) {
  /* .team-card:hover .team-overlay {
    opacity: 0;
  } */

  .team-card:hover .team-hover-content {
    opacity: 1;
    transform: translateY(0);
    display: none;
  }
}


/* Touch device tap-to-toggle (phones & tablets) */
@media (hover: none) and (pointer: coarse) {
  .team-card-active img {
    transform: scale(1.08);
  }

  /* .team-card-active .team-overlay {
    opacity: 0;
  } */

  .team-card-active .team-hover-content {
    opacity: 1;
    transform: translateY(0);
    display: none;
  }
}

.about-impact {
  padding: clamp(32px, 2.75vw, 64px) clamp(0px, 2.2vw, 40px);
  overflow: hidden;
}

.impact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(36px, 2.5vw, 50px);
  gap: clamp(24px, 1.75vw, 32px);
}

.impact-header-left {
  max-width: 650px;
}

.impact-slider {
  width: 100%;
}

.impact-slider .swiper-wrapper {
  align-items: stretch;
  gap: 20px;
}

.impact-slider .swiper-slide {
  transition: 0.6s;
  height: clamp(600px, 45vw, 720px);
  overflow: hidden;
  padding: 0;
}

.impact-card {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: 0.6s;
  cursor: pointer;
}

.impact-img-wrap {
  position: absolute;
  inset: 0;
}

.impact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  transition: transform 1.2s;
}

.swiper-slide-active .impact-img-wrap img {
  transform: scale(1.08);
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000000a3 38.3%, rgb(0 0 0 / 0%) 96.1%);
  height: clamp(230px, 25vw, 280px);
  bottom: 0;
  top: unset;
}

.impact-content {
  position: relative;
  padding: clamp(16px, 1.75vw, 40px);
  z-index: 2;
  width: 100%;
  color: #fff;
}

.impact-content .slide-title-vertical {
  opacity: 0;
  transition: opacity 0.5s;
}

.impact-content.vertical-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-content.vertical-active .slide-title-vertical {
  opacity: 1;
  transition-delay: 0.5s;
}

.impact-content.vertical-active .impact-content-wrap {
  width: 0;
  height: 0;
}

.slide-title-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(16px, 1.75vw, 20px);
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  opacity: 1;
  transition: 0.4s;
  margin: 0;
}

.swiper-slide-active .slide-title-vertical {
  opacity: 0;
  visibility: hidden;
}

.impact-content-wrap {
  opacity: 0;
  transition: 0.5s;
}

.swiper-slide-active .impact-content-wrap {
  opacity: 1;
  transform: translateY(0);
}

.slide-title-horizontal {
  font-size: clamp(16px, 2.75vw, 28px);
  font-weight: 500;
  margin-bottom: clamp(8px, 1.75vw, 12px);
}

.impact-card-desc {
  font-size: clamp(14px, 1.75vw, 18px);
  max-width: 550px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #ff1e2d;
  z-index: 5;
  transition: width 0.3s linear;
}

.custom-404 {
  min-height: clamp(60vh, 50vw, 90vh);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.svg-404 {
  margin-bottom: 20px;
}

.svg-text text {
  font-size: 180px;
  font-weight: 700;
  fill: none;
  stroke: #e21e31;
  stroke-width: 4;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation:
    6s infinite stroke,
    5s ease-in-out infinite float;
}

.title-404 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.desc-404 {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.btn-home {
  display: inline-block;
  background: #e21e31;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-home:hover {
  background: #c61a29;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(226, 30, 49, 0.3);
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.resources-sec {
  padding-top: clamp(100px, 10vw, 130px);
  padding-bottom: clamp(64px, 6vw, 130px);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2vw, 32px);
  margin-top: 48px;
}

.resource-card {
  background: #f4f4f4;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-8px);
}

.resource-image img {
  width: 100%;
  aspect-ratio: 9/7;
  object-fit: cover;
  display: block;
}

.resource-content {
  padding: clamp(20px, 1.25vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.spec-item-label {
  font-weight: 500;
}

.resource-title {
  color: #000;
  font-size: clamp(18px, 1.75vw, 22px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.resource-desc {
  margin-bottom: 24px;
  font-size: clamp(14px, 0.95vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.6;
  color: #000;
}

.resource-specs {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  row-gap: 14px;
  column-gap: clamp(12px, 1vw, 32px);
  border-top: 1px solid #cfcac2;
  padding-top: 24px;
}

.spec-box:first-child,
.spec-box:nth-child(4) {
  grid-column: 1;
}

.spec-box:nth-child(2),
.spec-box:nth-child(5) {
  grid-column: 3;
}

.spec-divider {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: #d9d6cf;
  width: 1px;
}

.spec-box {
  display: flex;
  gap: 4px;
}

.spec-img {
  display: flex;
  width: clamp(16px, 1.25vw, 18px);
  height: clamp(16px, 1.25vw, 18px);
  aspect-ratio: 1/1;
}

.spec-item {
  color: #000;
  font-size: clamp(12px, 0.75vw, 13px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: self-start;
  gap: 2px;
  flex-wrap: wrap;
}

.datasheet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e21e31;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 32px;
  color: #fff;
  font-size: clamp(14px, 1.75vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.datasheet-btn:hover {
  background: #c8192a;
  color: #fff;
}

.rs-child-form-title {
  color: #cfcac2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.containe-child-text {
  display: none;
}

.cf-subtitle-super {
  margin: 0;
  font-size: clamp(14px, 1.75vw, 18px);
  color: #F2E9E3;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
  margin-bottom: 40px;
}

.fm-rs-icon {
  display: flex;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.datasheet-popup-x input.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e21e31;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(14px, 1.75vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 48px;
}

.datasheet-popup-x .cf-form-title {
  margin-bottom: 14px;
}

.newsroom-header {
  padding: 80px 40px 40px;
  padding-top: clamp(100px, 10vw, 130px);
}

.newsroom-heading {
  color: #000;
  font-size: clamp(24px, 2.85vw, 42px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-transform: capitalize;
  max-width: 880px;
  margin-bottom: 8px;
}

.newsroom-subtitle {
  color: #000;
  font-size: clamp(14px, 1.85vw, 18px);
  font-style: normal;
  font-weight: 400;
  opacity: 0.6;
  line-height: 140%;
  max-width: 680px;
}

.date-separator {
  opacity: 0.45;
  background: var(--Warm-Grey, #cfcac2);
  width: 1px;
  height: 20px;
}

.newsroom-featured {
  padding: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.ns-featured-card:first-child {
  grid-column: 1/-1;
  min-height: clamp(350px, 48vw, 760px);
}

.ns-featured-card:nth-child(2),
.ns-featured-card:nth-child(3) {
  min-height: clamp(300px, 38vw, 480px);
}

.ns-featured-card:first-child .news-title {
  font-size: clamp(24px, 2.8vw, 28px);
}

.ns-featured-card {
  position: relative;
  overflow: hidden;
  background: #ffffffdc;
  transition:
    transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ns-featured-image {
  position: absolute;
  inset: 0;
}

.ns-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ns-featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.featured-info-block {
  flex: 1 0 0;
  max-width: 75%;
}

.featured-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(24px, 3.4vw, 36px);
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.featured-content:after {
  content: "";
  opacity: 0.7;
  background: linear-gradient(0deg, #000 38.3%, rgba(0, 0, 0, 0) 96.1%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.news-title {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  margin-bottom: clamp(12px, 1vw, 16px);
}

.featured-info-block .news-meta {
  color: #ffff;
}


.featured-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.newsroom-filters {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #cfcac25c;
  padding-bottom: 32px;
  scrollbar-width: none;
}

.newsroom-filters::-webkit-scrollbar {
  display: none;
}

button.filter-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(207, 202, 194, 0.45);
  background: #fff;
  color: #000;
  font-family: "Google Sans";
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 400;
  padding: clamp(6px, 0.8vw, 8px) clamp(12px, 1.4vw, 16px);
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

button.filter-btn:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

button.filter-btn.active {
  background: #e21e31;
  border-color: #e21e31;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(226, 30, 49, 0.35);
}

.newsroom-latest {
  padding: 60px 40px 100px;
}

.newsroom-list-heading {
  margin-bottom: 32px;
  color: #000;
  font-family: "Google Sans";
  font-size: clamp(28px, 2vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-list-item {
  display: grid;
  grid-template-columns: clamp(220px, 48vw, 445px) 1fr;
  gap: clamp(20px, 4vw, 40px);
  text-decoration: none;
  color: #111;
  align-items: center;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: clamp(20px, 5vw, 32px) 0;
  border-bottom: 1px solid #eee;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-thumb a {
  display: flex;
}

.news-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-info {
  position: relative;
}

.news-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #ebebeb;
  color: #000;
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.news-title a {
  color: #000;
  font-family: "Google Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.news-info .news-meta {
  color: var(--Black, #0000006a);
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 32px;
}

.news-footer {
  display: block;
}

.btn-read-more {
  background: #e30613;
  color: #fff;
  width: clamp(24px, 10vw, 40px);
  height: clamp(24px, 10vw, 40px);
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  padding: 0;
  border: none;
  position: relative;
}

.btn-read-more span {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  width: 0;
  opacity: 0;
  display: inline-block;
  transition:
    width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.4s,
    margin 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-right: 0;
  overflow: hidden;
  vertical-align: middle;
}

.btn-read-more svg {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newsroom-cta {
  position: relative;
  min-height: clamp(520px, 65vh, 900px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 5vh, 60px) clamp(20px, 5vw, 40px);
}

.newsroom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 2.54%, #fff 93.25%);
  max-height: clamp(150px, 40vh, 445px);
}

.cta-overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.newsroom-cta-heading {
  font-size: clamp(32px, 4.2vw, 44px);
  line-height: 1.15;
  font-weight: 600;
  color: #000;
  margin-bottom: clamp(12px, 1.8vw, 20px);
  text-transform: capitalize;
}

.newsroom-cta-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #656565;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.btn-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(11px, 1.75vw, 14px) clamp(22px, 3vw, 32px);
  background: #e21e31;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    background 0.35s;
}

.btn-cta-contact:hover {
  color: #fff;
  background-color: #c10b17;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer-placeholder {
  display: grid;
  grid-template-columns: clamp(220px, 48vw, 445px) 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(20px, 5vw, 32px) 0;
  border-bottom: 1px solid #eee;
}

.shimmer-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: 0 0/1000px 100% no-repeat #f6f7f8;
  background-image: linear-gradient(to right,
      #f6f7f8 0,
      #edeef1 20%,
      #f6f7f8 40%,
      #f6f7f8 100%);
  animation: 1.5s linear infinite shimmer;
  border-radius: 4px;
}

.shimmer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shimmer-line {
  height: 16px;
  background: 0 0/1000px 100% no-repeat #f6f7f8;
  background-image: linear-gradient(to right,
      #f6f7f8 0,
      #edeef1 20%,
      #f6f7f8 40%,
      #f6f7f8 100%);
  animation: 1.5s linear infinite shimmer;
  border-radius: 4px;
}

.shimmer-line.title {
  height: 24px;
  width: 70%;
}

.shimmer-line.meta {
  width: 40%;
}

.shimmer-line.btn {
  height: 32px;
  width: 100px;
  border-radius: 16px;
  margin-top: 12px;
}

.positions-list {
  margin-top: 40px;
}

.department-post-container {
  display: grid;
  grid-template-columns: clamp(180px, 30vw, 560px) 1fr;
  gap: 0 clamp(24px, 4vw, 60px);
  padding: clamp(28px, 4vw, 32px) 0;
  border-top: 1px solid #e9e9e9;
}

.department-post-container:first-child {
  border-top: none;
  padding-top: 0;
}

.department-post-container:last-child {
  border-bottom: 1px solid #e9e9e9;
}

.department-heading {
  font-size: clamp(20px, 2.3vw, 24px);
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.department-group {
  display: flex;
  flex-direction: column;
}

.department-group .position-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(24px, 4vw, 32px) 0;
  border-bottom: 1px solid #e9e9e9;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.department-group .position-card:first-child {
  padding-top: 0;
}

.department-group .position-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-hero-image {
  display: flex;
  overflow: hidden;
}

.job-section-header {
  padding-top: clamp(48px, 12vw, 64px);
}

.job-post-list-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.job-post-list-section .newsroom-filters {
  padding-bottom: 40px;
}

.position-title {
  color: #000;
  font-size: clamp(15px, 1.4vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
}

.position-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.position-date,
.position-exp {
  font-size: clamp(12px, 1vw, 13px);
  color: #888;
  font-weight: 400;
  line-height: 1;
}

.position-meta-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.position-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: clamp(450px, 48vw, 680px);
}

.position-apply-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.why-join-electres {
  padding: 80px 40px;
  background: #fff;
  overflow: hidden;
}

.why-join-electres .intro {
  max-width: clamp(550px, 80vw, 880px);
  margin-bottom: clamp(40px, 4vw, 56px);
}

.why-join-electres .intro h2 {
  font-size: clamp(24px, 2.85vw, 42px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}

.why-join-electres .intro p {
  font-size: clamp(14px, 4vw, 16px);
  color: #6b6b6b;
  line-height: 1.6;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  background: #f5f5f5;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 0;
  transition: 0.3s;
  height: 100%;
}

.benefit-icon {
  display: inline-flex;
  margin-bottom: clamp(48px, 4vw, 80px);
}

.benefit-icon img {
  width: clamp(48px, 4vw, 52px);
  height: clamp(48px, 4vw, 52px);
  object-fit: contain;
}

.benefit-heading {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-description {
  font-size: clamp(14px, 4vw, 16px);
  color: #6f6f6f;
  line-height: 1.6;
}

.benefit:hover {
  transform: translateY(-6px);
}

.benefits-swiper-wrapper {
  overflow: visible;
}

.single-position-page {
  padding-top: clamp(100px, 10vw, 130px);
}

.sp-container {
  width: calc(100% - 160px);
  margin: 0 auto;
  max-width: 1840px;
}

.sp-hero {
  background: #f7f7f7;
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid #ebebeb;
}

.sp-title {
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  margin: 0 0 clamp(10px, 1.2vw, 16px);
}

.sp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.sp-meta-date,
.sp-meta-dept,
.sp-meta-exp {
  font-size: clamp(12px, 1vw, 14px);
  color: #6b7280;
  font-weight: 400;
}

.sp-meta-sep {
  display: flex;
  align-items: center;
}

.sp-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 1.2vw, 13px) clamp(20px, 2.5vw, 28px);
  background: #e21e31;
  color: #fff;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.sp-apply-btn:hover {
  background: #c41727;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(226, 30, 49, 0.3);
  color: #fff;
}

.sp-apply-btn:active,
.sp-apply-btn:focus {
  background: #c41727;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(226, 30, 49, 0.3);
  color: #fff;
}

.sp-content-sec {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid #ebebeb;
}

.sp-content {
  max-width: 820px;
  color: #111;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
}

.sp-content p {
  margin: 0 0 20px;
  color: #141211;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.sp-content h2,
.sp-content h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: #000;
  margin: clamp(32px, 4vw, 48px) 0 clamp(12px, 1.5vw, 18px);
  line-height: 1.3;
}

.sp-content h2:first-child,
.sp-content h3:first-child {
  margin-top: 0;
}

.sp-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.6;
  color: #141211;
  font-style: normal;
}

.sp-content ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e21e31;
  margin-top: 8px;
}

.sp-apply-sec {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 7vw, 100px);
}

.sp-apply-heading {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: #000;
  margin: 0 0 clamp(28px, 3vw, 40px);
}

.sp-apply-sec .wpcf7 {
  max-width: 760px;
}

.sp-apply-sec .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 24px);
}

.sp-apply-sec .wpcf7-form label {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin-bottom: 4px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.career-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sp-apply-sec .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.sp-apply-sec .wpcf7-form .wpcf7-required,
.sp-apply-sec .wpcf7-form label span,
.sp-apply-sec .wpcf7-form .red-asterisk {
  color: #e21e31;
}

.sp-apply-sec .wpcf7-form label span.wpcf7-form-control-wrap {
  color: inherit;
}

.sp-apply-sec .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-apply-sec .wpcf7-form .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-apply-sec .wpcf7-form input[type="number"]::-webkit-outer-spin-button,
.sp-apply-sec .wpcf7-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.sp-apply-sec .wpcf7-form input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.sp-apply-sec .wpcf7-form input[type="email"],
.sp-apply-sec .wpcf7-form input[type="number"],
.sp-apply-sec .wpcf7-form input[type="tel"],
.sp-apply-sec .wpcf7-form input[type="text"],
.sp-apply-sec .wpcf7-form select,
.sp-apply-sec .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  background: #fff;
  outline: 0;
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
}

.sp-apply-sec .wpcf7-form input::placeholder,
.sp-apply-sec .wpcf7-form textarea::placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

.sp-apply-sec .wpcf7-form input:focus,
.sp-apply-sec .wpcf7-form select:focus,
.sp-apply-sec .wpcf7-form textarea:focus {
  border-color: #e21e31;
}

.sp-apply-sec .wpcf7-form textarea {
  min-height: 120px;
  resize: none;

}

.sp-apply-sec .wpcf7-form input[type="file"] {
  border: 1.5px dashed #e5e7eb;
  background: transparent;
  padding: 60px 24px;
  text-align: center;
  cursor: pointer;
  color: transparent !important;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  z-index: 4;
}

.upload-box {
  position: relative;
}

.upload-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  width: 90%;
  text-align: center;
}

.upload-box.has-file input[type="file"] {
  border-color: #1C8012;
  border-style: solid;
  background: rgba(28, 128, 18, 0.05);
}

.upload-box.has-file .upload-text {
  display: flex;
  align-items: center;
  color: #1C8012;
  font-weight: 500;
  text-decoration: none;
}

.upload-box.has-file .upload-text::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C8012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sp-apply-sec .wpcf7-form input[type="file"]::file-selector-button {
  display: none;
}

/* .sp-apply-sec .wpcf7-form input[type="file"]::before {
  content: 'drop your file here to upload';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9ca3af;
  font-size: 15px;
  font-family: inherit;
  pointer-events: none;
  text-decoration: underline;
} */

.sp-apply-sec .wpcf7-form input[type="submit"],
.sp-apply-sec .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #e21e31;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  width: auto;
}

.sp-apply-sec .wpcf7-form input[type="submit"]:hover {
  background: #c41727;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(226, 30, 49, 0.3);
}


@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-apply-sec .wpcf7-form.sent .wpcf7-response-output {
  position: unset;
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid #1C8012;
  background: #1C8012;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: flex-start;
  padding: 24px 16px;
  min-height: auto;
  animation: slideUpFade 0.4s ease-out forwards;
  display: none;
}

.sp-apply-sec .wpcf7-form.sent .wpcf7-response-output::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16.0013' cy='16' r='13.3333' fill='white' /%3E%3Cpath d='M16.0013 29.3333C23.3651 29.3333 29.3346 23.3638 29.3346 16C29.3346 8.63616 23.3651 2.66663 16.0013 2.66663C8.63751 2.66663 2.66797 8.63616 2.66797 16C2.66797 23.3638 8.63751 29.3333 16.0013 29.3333Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M12 16L14.6667 18.6666L20 13.3333' stroke='%231C8012' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.res-head {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}

.res-para {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sp-apply-sec .wpcf7 form.failed .wpcf7-response-output,
.sp-apply-sec .wpcf7 form.invalid .wpcf7-response-output,
.sp-apply-sec .wpcf7 form.unaccepted .wpcf7-response-output {
  position: unset;
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid #e21e31;
  background: #ff001914;
  color: #e21e31;
  text-align: left;
  display: flex;
  align-items: flex-start;
  padding: 24px 16px;
  min-height: auto;
  font-size: 14px;
  animation: slideUpFade 0.4s ease-out forwards;
}

.sp-apply-sec .wpcf7 form.failed .wpcf7-response-output::before,
.sp-apply-sec .wpcf7 form.invalid .wpcf7-response-output::before,
.sp-apply-sec .wpcf7 form.unaccepted .wpcf7-response-output::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 8px;
  margin-bottom: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='13.33' fill='white' /%3E%3Cpath d='M11 11l10 10m0-10l-10 10' stroke='%23e21e31' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.brochure-cta-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(20px, 3.75vw, 100px);
  position: relative;
}


.brochure-cta-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF 0%, #F4F4F4 64.45%);
  padding: 0 40px;
}

.brochure-cta-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://electres.wordpress.thcs.in/wp-content/uploads/2026/03/background-broimg.svg);
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0.7;
}


.brochure-title {
  font-size: clamp(24px, 2.75vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
  max-width: clamp(400px, 35vw, 640px);
  color: #000;
}

.brochure-desc {
  color: #fff;
  font-size: clamp(14px, 1.75vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.8;
  max-width: clamp(300px, 35vw, 550px);
  display: none;
}

.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: clamp(32px, 3.75vw, 40px);
}

.brochure-form-wrapper .early-access-field {
  flex-direction: column;
}

.brochure-btn:hover {
  background: #e21e31;
  color: #fff;
}

.brochure-btn:hover svg path {
  stroke: #fff;
}

.brochure-btn .btn-icon {
  display: flex;
}



.brochure-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: none;
}



.brochure-form-wrapper .early-access-field {
  flex: 1;
}

/* labels */
.brochure-form-wrapper .ea-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #111;
}

.brochure-form-wrapper .ea-label span {
  color: #e11d2e;
}

/* inputs */
.brochure-form-wrapper .early-access-input,
.brochure-form-wrapper .early-access-input:focus {
  width: 100%;
  border: 1px solid #e5e7eb;
  padding: 0 15px;
  transition: .3s;
  background: #ffff;
  color: #000;
}

.brochure-form-wrapper .early-access-input:focus {
  border-color: #e11d2e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.08);
}

.brochure-form-wrapper .early-access-input::placeholder {
  color: #6c757d;
}

.brochure-form-wrapper .early-access-field input:-webkit-autofill {
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
}

/* phone */
.brochure-form-wrapper .phone-input-wrapper {
  display: flex;
  align-items: center;
  /* border: 1px solid #e5e7eb;
  overflow: hidden; */
}

.brochure-form-wrapper .country-flag {
  padding: 0 12px;
  border-right: 1px solid #e5e7eb;
  height: 32px;
  width: 48px;
  display: flex;
  align-items: center;
  left: 0;
}


/* button */
.brochure-form-wrapper .dt-dwn-btn input {
  background: #e11d2e;
  border: none;
  color: white;
  height: 52px;
  padding: 0 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
}

.brochure-form-wrapper .dt-dwn-btn input:hover {
  background: #c51625;
}

/* right image */
.brochure-form-wrapper .brochure-image {
  position: relative;
}

.brochure-form-wrapper .early-access-action .dt-dwn-btn {
  margin-top: 32px;
}

/* Blog Page CSS */


.blogs-archive {
  padding-bottom: 0;
  padding-top: clamp(100px, 10vw, 130px);
}

.blogs-header {
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: clamp(36px, 6.5vw, 56px);
  padding-left: 40px;
  padding-right: 40px;
}

.blogs-heading {
  font-size: clamp(24px, 2.85vw, 42px);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 140%;
}

.blogs-subtitle {
  color: #000;
  font-size: clamp(14px, 1.85vw, 18px);
  font-style: normal;
  font-weight: 400;
  opacity: 0.6;
  line-height: 140%;
}

.blogs-main-layout {
  display: flex;
  gap: clamp(40px, 26vw, 60px);
  align-items: flex-start;
  padding-bottom: 100px;
  padding-left: 80px;
  padding-right: 80px;
}

.blogs-sidebar {
  width: clamp(200px, 20vw, 360px);
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}

.blogs-content {
  flex-grow: 1;
  min-width: 0;
  width: 100%;
}

.blogs-featured-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 40px;
  background: #000;
  display: block;
}

.blogs-featured-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.blogs-featured-image img {
  width: 100%;
  height: clamp(390px, 40vw, 580px);
  object-fit: cover;
  opacity: 0.85;
  display: block;
}

.blogs-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 1.5vw, 40px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blogs-featured-card .blogs-category {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.blogs-featured-card .blogs-title {
  font-size: clamp(20px, 1.85vw, 24px);
  margin-bottom: 15px;
  max-width: 700px;
  line-height: 1.3;
  max-width: 80%;
}

.blogs-meta {
  display: flex;
  gap: 8px;
  font-size: clamp(12px, 1.25vw, 15px);
  color: #141211;
  opacity: 0.5;
  align-items: center;
  font-weight: 400;
}

.separator {
  width: 1px;
  height: 16px;
  background-color: #CFCAC2;
  border-radius: 0;
}

.blogs-featured-card .blogs-meta {
  color: #ffffff;
  opacity: 1;
}

.blogs-featured-card .blogs-meta .separator {
  background: #ffff;
}

.blog-arrow-featured {
  position: absolute;
  right: clamp(24px, 2vw, 30px);
  bottom: clamp(24px, 2vw, 30px);
  background: #e51b23;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.blogs-filters {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 4px solid #EBEBEB;
}

.blogs-filter {
  padding: 12px;
  padding-left: 20px;
  margin-left: -4px;
  border-radius: 0;
  border: none;
  border-left: 4px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  font-family: inherit;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #000;
  font-weight: 400;
}

.blogs-filter:hover {
  color: #E21E31;
  background: transparent;
}

.blogs-filter.active {
  background: transparent;
  color: #E21E31;
  border-left: 4px solid #E21E31;
  font-weight: 500;
}

.blogs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  display: flex;
  text-decoration: none;
  color: inherit;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.blog-card img {
  width: 100%;
  height: clamp(260px, 19vw, 340px);
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card-content {
  padding: 25px 25px 80px 25px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.4;
  color: #111;
}

.blog-card .meta {
  color: #667085;
  font-size: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-title {
  margin-bottom: 12px;
  margin-top: 12px;
  min-height: 52px;
}

.blog-title,
.blog-title a {
  color: #000;
  font-size: clamp(16px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  line-height: 140%;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title,
.blog-card:hover .blog-title a,
.blog-title a:hover {
  color: #E21E31;
}

.blog-info {
  padding: clamp(16px, 1.5vw, 24px);
  background: #F4F4F4;
  height: 100%;
}

.blog-arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e51b23;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.blog-category {
  position: static;
  padding: 6px 8px;
  border-radius: 0;
  font-size: 12px;
  color: #000;
  display: inline-block;
  border: 1px solid #ffffff;
  font-weight: 500;
  background: #ffffff;
}

.blogs-empty {
  text-align: center;
  padding: 60px;
  color: #98a2b3;
}

/* Main wrapper */
.blogs-pagination {
  width: 100%;
}

.blogs-pagination:has(.ajax-pagination) {
  margin-top: clamp(30px, 2.5vw, 60px);
  padding-top: clamp(24px, 2vw, 40px);
  border-top: 1px solid #EBEBEB;
}

/* Pagination layout */
.blogs-pagination .ajax-pagination {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Numbers center */
.blogs-pagination .page-numbers-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: auto;
}

/* Buttons */
.blogs-pagination .page-btn,
.blogs-pagination .page-btn a {
  border: none;
  background: transparent;
  color: #6f6f6f;
  font-size: clamp(14px, 2vw, 16px);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: .25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blogs-pagination button.page-btn.disabled {
  opacity: 0.5;
  cursor: default;
}

/* Hover */
.blogs-pagination .page-btn:hover {
  color: #000;
}

/* Active */
.blogs-pagination .page-btn.active {
  background: #000;
  color: #fff;
  width: clamp(24px, 3vw, 40px);
  height: clamp(24px, 3vw, 40px);
  padding: 0;
  justify-content: center;
}

/* Previous */
.blogs-pagination .prev-btn a {
  color: #000;
  font-weight: 500;
}

/* Next */
.blogs-pagination .next-btn {
  color: #000;
  font-weight: 500;
  justify-content: end;
}

/* SVG */
.blogs-pagination .page-btn svg {
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
}

/* SVG color when active */
.blogs-pagination .page-btn.active svg path {
  stroke: #fff;
}

.blogs-pagination .ajax-pagination .arrow {
  display: flex;
  align-items: center;
}

.blogs-pagination .ajax-pagination .page-numbers {
  text-decoration: none;
}

/* Mobile */
@media(max-width:768px) {

  .blogs-pagination .ajax-pagination {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .blogs-pagination .prev-btn,
  .blogs-pagination .next-btn {
    width: auto;
    flex-shrink: 0;
  }

  .blogs-pagination .page-numbers-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .blogs-pagination .page-numbers-wrap::-webkit-scrollbar {
    display: none;
  }

}


/* 
 * Single Post Custom ACF Post Layout Styles
 * Add these to your theme's style.css
 */

.custom-single-post {
  padding-top: clamp(80px, 10vw, 100px);
  padding-bottom: 60px;
}

.single-post-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.csp-post-header {
  margin-top: 40px;
  margin-bottom: 30px;
}

/* Breadcrumbs Styling */
.csp-post-header .breadcrumbs,
.csp-post-header .breadcrumb,
.csp-post-header #breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #888;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid #ebebeb;
}

.csp-post-header .breadcrumbs svg {
  display: flex;
  width: 10px;
  height: 10px;
}

.csp-post-header .breadcrumbs a,
.csp-post-header .breadcrumb a,
.csp-post-header #breadcrumbs a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.csp-post-header .breadcrumbs a:hover,
.csp-post-header .breadcrumb a:hover,
.csp-post-header #breadcrumbs a:hover {
  color: #e21e31;
}

.csp-post-header .breadcrumbs .separator,
.csp-post-header .breadcrumb .separator,
.csp-post-header #breadcrumbs .separator {
  color: #888;
  font-size: 13px;
  margin: 0 4px;
}

.csp-category {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.csp-category .blog-category {
  background: #EBEBEB;
}

.csp-title {
  color: #000;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}

.csp-excerpt {
  color: #141211;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
}

.csp-meta {
  color: #141211;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
  margin-bottom: 0;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.csp-meta-divider {
  width: 1px;
  height: 16px;
  background-color: rgb(20 18 17 / 20%);
  color: transparent;
  display: inline-block;
  margin: 0;
  overflow: hidden;
  user-select: none;
}

/* Hero Image */
.csp-hero-image img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(32px, 4vw, 50px);
  aspect-ratio: 16 / 9;
  object-fit: cover;

}

/* Main Layout Grid */
.csp-layout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}

.csp-main-content {
  flex: 1;
  min-width: 0;
  width: 100%;
  border-right: 1px solid rgb(207 202 194 / 40%);
  padding-right: 40px;
}

.csp-sidebar {
  width: 350px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  height: 100%;
}

/* Content Blocks */


/* Single Text Block (Editor Content) */
.text-editor-content {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #222;
  line-height: 1.6;
}

.text-editor-content:first-child p,
.text-editor-content:first-child h1,
.text-editor-content:first-child h2,
.text-editor-content:first-child h3,
.text-editor-content:first-child h4,
.text-editor-content:first-child h5,
.text-editor-content:first-child h6 {
  margin-top: 0;
}

.text-editor-content h1 {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 600;
  color: #000;
  margin: 1.5em 0 0.5em 0;
}

.text-editor-content h2 {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  color: #000;
  margin: 1.5em 0 0.5em 0;
}

.text-editor-content h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: #000;
  margin: 1.5em 0 0.5em 0;
}

.text-editor-content h4 {
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 500;
  color: #000;
  margin: 1.2em 0 0.5em 0;
}

.text-editor-content h5 {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  color: #000;
  margin: 1.2em 0 0.5em 0;
}

.text-editor-content h6 {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  color: #000;
  margin: 1.2em 0 0.5em 0;
}

.text-editor-content p {
  font-size: clamp(14px, 1.25vw, 16px);
  margin-bottom: 1.5em;
}

.text-editor-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2em 0;
  font-size: clamp(14px, 1.25vw, 16px);
}

.text-editor-content li {
  position: relative;
  padding-left: 1.33em;
  margin-bottom: 1.25em;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 150%;
}

.text-editor-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #E21E31;
  border-radius: 50%;
}

.text-editor-content ol {
  padding-left: 1.25em;
  margin: 0 0 2em 0;
  font-size: clamp(16px, 1.25vw, 18px);
}

.text-editor-content ol li {
  padding-left: 0.5em;
  margin-bottom: 1.25em;
  font-size: clamp(16px, 1.25vw, 18px);
}

.text-editor-content li:last-child {
  margin-bottom: 0;
}

.csp-main-content a,
.text-editor-content a {
  color: #E21E31;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.csp-main-content a:hover,
.text-editor-content a:hover {
  color: #E21E31;
  text-decoration-color: transparent;
}

.text-editor-content strong,
.text-editor-content b {
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 18px);
}

.text-editor-content em,
.text-editor-content i {
  font-style: italic;
  font-size: clamp(16px, 1.25vw, 18px);
}

.text-editor-content blockquote {
  font-size: clamp(18px, 1.35vw, 20px);
  font-style: italic;
  border-left: 4px solid #E21E31;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #444;
}

.text-editor-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
}

.quote-section {
  border-left: 4px solid #2a2a2a21;
  background: #F4F4F4;
  padding: clamp(24px, 4.5vw, 40px) clamp(20px, 4.5vw, 32px);
  margin: clamp(24px, 2.5vw, 32px) 0;
}

.quote-section:not(:has(.quote-location)) blockquote.custom-quote {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.bq-icon {
  display: flex;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.quote-location {
  color: #0e0e0e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
}

blockquote.custom-quote {
  border: none;
  padding: 0;
  margin: 0;
  color: #0E0E0E;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  border-bottom: 1px solid #cfcac29c;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

/* Highlight Box (Pink with Lightning) */
.csp-highlight-box {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.csp-highlight-box .csp-icon {
  width: 30px;
  height: auto;
  margin-right: 20px;
  margin-top: 5px;
}

.csp-highlight-text {
  font-size: 17px;
  color: #222;
}

.csp-highlight-text p:last-child {
  margin-bottom: 0;
}

.csp-highlight-text strong {
  font-weight: 700;
}

/* additional notes */
.info-highlight {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(226, 30, 49, 0.15);
  background: #FFF9F9;
  margin: 32px 0;
}

.info-highlight:first-child {
  margin-top: 0;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.info-icon {
  width: 24px;
  height: 24px;
  display: flex;
}

.info-highlight .info-title {
  color: #000;
  font-family: "Google Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.info-description p,
.info-description {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.info-description p {
  margin-bottom: 8px;
}

.info-description p:last-child {
  margin-bottom: 0;
}

/* Dark Stats Box */
.csp-dark-box {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 0;
  /* padding if content, 0 if image */
  margin: 40px 0;
  overflow: hidden;
}

.csp-dark-box img {
  width: 100%;
  height: auto;
  display: block;
}

.csp-dark-content {
  padding: 30px;
  color: #fff;
}

/* Alert Box (Grey with Red Cross) */
.csp-alert-box {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background-color: #f7f7f7;
  border-radius: 8px;
  margin: 30px 0;
}

.csp-alert-box .csp-icon {
  width: 24px;
  height: auto;
  margin-right: 20px;
  margin-top: 5px;
}

.csp-alert-text {
  font-size: 17px;
  color: #333;
}

.csp-alert-text p:last-child {
  margin-bottom: 0;
}

/* Data Table (Cost Comparison) */
.csp-data-table {
  margin: 40px 0;
  overflow-x: auto;
}

.csp-data-table table {
  width: 100%;
  border-collapse: collapse;
}

.csp-data-table th,
.csp-data-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.csp-data-table th {
  background-color: #000;
  color: #fff;
  font-weight: 600;
}

.csp-data-table tr:nth-child(even) {
  background-color: #fafafa;
}

.csp-data-table td {
  font-size: 16px;
  color: #333;
}

.image-section {
  display: flex;
  width: 100%;
  margin: 24px 0;
}

.image-section img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* FAQs Section */
.csp-faq-section {
  margin: 50px 0;
}

.csp-faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.csp-faq-question {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.csp-faq-q-icon {
  color: #E22B29;
  /* Red 'Q' */
  margin-right: 15px;
}

.csp-faq-answer {
  font-size: 16px;
  color: #555;
  padding-left: 32px;
  /* aligns with question text */
}

/* Author & Share Section */
.csp-author-share-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(207 202 194 / 40%);
  border-bottom: 1px solid rgb(207 202 194 / 40%);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 0;
  gap: 20px;
}

.csp-author-details {
  display: flex;
  align-items: center;
}

.csp-author-avatar img {
  border-radius: 50%;
  margin-right: 15px;
}

.csp-author-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.csp-author-info span {
  font-size: 14px;
  color: #777;
}

.csp-share-wrap {
  display: flex;
  align-items: center;
  color: #000;
  font-size: clamp(14px, 2vw, 16px);
}

.csp-share-wrap span {
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.csp-share-icons {
  display: flex;
  gap: 8px;
  margin-left: 12px;
}

.csp-share-icon {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  transition: all 0.3s ease;
}

.csp-share-icon:hover {
  transform: translateY(-3px);
  color: #e21e31;
}

.csp-share-icon svg path {
  transition: all 0.3s ease;
}


/* SIDEBAR CSS */
/* CTA Box */
.csp-sidebar-cta {
  color: #fff;
  padding: 24px;
  text-align: center;
  margin-bottom: 40px;
  background: #E21E31;
}

.csp-sidebar-cta h3 {
  margin-top: 0;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.csp-sidebar-cta p {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.csp-btn-white {
  display: inline-flex;
  background-color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #e21e31;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.csp-btn-white svg {
  transition: transform 0.3s ease;
}

.csp-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #e21e31;
  opacity: 0.9;
}

.csp-btn-white:hover svg {
  transform: translateX(4px);
}

/* Widgets Default */

/* Table of Contents */
.csp-toc-widget {
  margin-bottom: 24px;
  border-top: 1px solid #cfcac269;
  border-bottom: 1px solid #cfcac269;
  padding-bottom: 24px;
  padding-top: 24px;
  max-height: 300px;
  overflow: auto;
}

.csp-widget-title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 16px;
  opacity: 0.5;
}

.csp-toc-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.csp-toc-widget li {
  margin-bottom: 16px;
}

.csp-toc-widget li:last-child {
  margin-bottom: 0;
}

.csp-toc-widget a {
  color: #0E0E0E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s;
}

.csp-toc-widget a::before {
  counter-increment: toc-counter;
  content: counter(toc-counter) ". ";
  color: #E21E31;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.csp-toc-widget a:hover,
.csp-toc-widget a.active {
  color: #E21E31;
}

/* Related Articles */
.csp-related-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.csp-related-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.csp-related-thumb {
  width: 90px;
  height: 60px;
  flex-shrink: 0;
}

.csp-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csp-related-info h5 {
  font-size: 14px;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.csp-related-info h5 a {
  color: #222;
  text-decoration: none;
}

.csp-related-info h5 a:hover {
  color: #E22B29;
}

.csp-related-meta {
  font-size: 12px;
  color: #888;
  display: block;
}

.blog-faqs {
  margin: auto;
}

.blog-faqs h2 {
  font-size: clamp(28px, 2vw, 32px);
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #111;
}

/* Accordion item */
.blog-faqs .accordion-collapse {
  border-bottom: 1px solid #e3e3e3;
  padding: 18px 0;
  transition: .3s ease;
}

/* Question row */
.blog-faqs .custom-accordions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  transition: .3s;
  gap: 10px;
}

/* Hover effect */
.blog-faqs .custom-accordions:hover .accordion-header {
  color: #E21E31;
}

/* Question text */
.blog-faqs .accordion-header {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: #222;
  margin: 0;
  padding-left: 30px;
  position: relative;
  transition: .3s;
}

/* Red Q */
.blog-faqs .accordion-header:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 20px;
  color: #E21E31;
  font-weight: 600;
}

/* Icon container */
.droit-accordion_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}

/* Icon animation */
.droit-accordion_icon svg {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  transition: .35s ease;
}

/* Default states */
.droit-accordion-icon-closed {
  display: none;
}

.droit-accordion-icon-opend {
  display: none;
}

/* When active */
.droit-accordion-icon-closed.active {
  display: block;
}

.droit-accordion-icon-opend.active {
  display: block;
  animation: rotateIcon .3s ease;
}

/* Icon rotate animation */
@keyframes rotateIcon {
  from {
    transform: rotate(90deg);
    opacity: .5;
  }

  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

/* Answer wrapper smooth open */
.blog-faqs .droit-accordion-content-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
}

/* Active open state */
.blog-faqs .droit-accordion-content-wrapper.dl-active {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

/* Answer text */
.blog-faqs .full_desc {
  padding-left: 30px;
}

.blog-faqs .full_desc p {
  color: #141211;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

/* First & last spacing */
.blog-faqs .accordion-collapse:first-child {
  padding-top: 10px;
}

.blog-faqs .accordion-collapse:last-child {
  border-bottom: none;
}

.blog-faqs .accordion-collapse:hover {
  padding-left: 8px;
}

.dg-cost-card {
  background: #1b1f27;
  padding: clamp(16px, 1.5vw, 24px);
  margin: clamp(24px, 1.5vw, 32px) 0;
  color: #9aa4b2;
  user-select: none;
}

.dg-cost-card .dg-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: clamp(13px, 1.5vw, 14px);
  color: #ffffff;
}

.dg-cost-card .icon {
  margin-right: 12px;
  font-size: 14px;
}

.dg-cost-card .dg-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #2a303a;
}

.dg-cost-card .left {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #a6b0bf;
  font-weight: 400;
}

.dg-cost-card .right {
  font-size: clamp(12px, 1.5vw, 16px);
  color: #d6dde6;
  font-weight: 500;
  text-align: right;
}

.dg-cost-card .highlight {
  color: #ffcc33;
  font-weight: 700;
}

.dg-cost-card .total {
  border-bottom: none;
  padding-top: 28px;
}

.dg-cost-card .total .left {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: #e6edf5;
}

.dg-cost-card .danger {
  color: #ff6b6b;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}

.dg-cost-card .dg-note {
  margin-top: 25px;
  color: #7f8a9a;
  font-size: clamp(12px, 1.5vw, 14px);
  font-style: italic;
  line-height: 1.7;
}

.dg-cost-card .dg-row:last-child {
  border-bottom: none;
}



.acf-table-wrapper {
  margin: 20px 0;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  font-family: Arial, sans-serif;
  -webkit-overflow-scrolling: touch;
}

/* Table */
.acf-table-wrapper .acf-table {
  width: 100%;
  /* min-width: 720px; */
  border-collapse: collapse;
  margin: 0;
  border: none;
  font-family: var(--font-primary);
}

/* Header */
.acf-table-wrapper .acf-table thead {
  background: #000;
}

.acf-table-wrapper .acf-table thead th {
  color: #fff;
  text-align: left;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* Rows */
.acf-table-wrapper .acf-table tbody tr {
  border-bottom: 1px solid #e5e5e5;
  transition: .3s;
}

.acf-table-wrapper .acf-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.acf-table-wrapper .acf-table tbody tr:nth-child(even) {
  background: #F4F4F4;
}

/* Cells */
.acf-table-wrapper .acf-table tbody td {
  padding: 12px 20px;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}

/* First column */
.acf-table-wrapper .acf-table tbody td:first-child {
  font-weight: 500;
  color: #000;
}

/* Hover effect */
/* .acf-table-wrapper .acf-table tbody tr:hover {
  background: #d4d4d4;
} */

/* Remove last border */
.acf-table-wrapper .acf-table tbody tr:last-child {
  border-bottom: none;
}

/* Scrollbar */
.acf-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.acf-table-wrapper::-webkit-scrollbar-track {
  background: #eee;
}

.acf-table-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.acf-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Mobile */
@media(max-width:768px) {

  .acf-table-wrapper .acf-table thead th {
    font-size: 15px;
    padding: 14px 16px;
  }

  .acf-table-wrapper .acf-table tbody td {
    font-size: 14px;
    padding: 14px 16px;
  }



}

/* Responsive adjustments */
@media (max-width: 991px) {
  .csp-layout-grid {
    flex-direction: column;
  }

  .csp-sidebar {
    width: 100%;
  }

  .csp-author-share-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .csp-share-wrap {
    margin-top: 15px;
  }

  .csp-main-content {
    border-right: none;
    padding-right: 0;
  }

  .csp-post-header .breadcrumbs,
  .csp-toc-widget {
    display: none;
  }

  .csp-related-widget {
    padding-top: 24px;
    border-top: 1px solid #cfcac269;
  }
}


/* Responsive */

@media(max-width: 991px) {
  .blogs-main-layout {
    flex-direction: column;
    gap: 30px;
  }

  .blogs-sidebar {
    width: 100%;
    position: static;
  }

  .blogs-filters {
    flex-direction: row;
    flex-wrap: nowrap;
    border-left: none;
    border-bottom: none;
    box-shadow: inset 0 -4px 0 0 #EBEBEB;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
  }

  .blogs-filters::-webkit-scrollbar {
    display: none;
  }

  .blogs-filter {
    border-left: none;
    border-bottom: 4px solid transparent;
    padding: 0 0 12px 0;
    margin-left: 0;
    margin-bottom: 0;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .blogs-filter.active {
    border-left: none;
    border-bottom: 4px solid #E21E31;
  }

  .blogs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blogs-featured-image img {
    height: 390px;
  }


}




/* responsive */
@media screen and (min-width: 1200px) and (max-width: 1380px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-item {
    font-size: 13px;
  }
}

@media (hover: hover) and (min-width: 300px) {
  .image-btn-cta:hover {
    transform: translateY(-2px);
    background: #cc1829;
    color: #fff;
    box-shadow: 0 10px 20px rgba(204, 24, 41, 0.2);
  }

  .image-btn-cta:hover svg {
    transform: translateX(4px);
  }

  .btn-cta-contact:hover {
    transform: translateY(-2px);
    background: #cc1829;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .tab-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 991px) {
  .impact-slider .swiper-slide {
    flex-shrink: unset !important;
  }

  .about-hero-top .heading-comm-sec {
    margin: 0;
  }
}

@media screen and (min-width: 991px) {

  .home #main-header .menu>ul>li>a,
  body:has(.banner-dark) #main-header .menu>ul>li>a {
    color: #fff;
  }

  .home #main-header .after-icon svg path,
  body:has(.banner-dark) #main-header .after-icon svg path {
    stroke: #ffffff;
  }

  .home #main-header .mega-open .menu>ul>li>a,
  .home #main-header.is-scrolled .menu>ul>li>a,
  body:has(.banner-dark) #main-header .mega-open .menu>ul>li>a,
  body:has(.banner-dark) #main-header.is-scrolled .menu>ul>li>a {
    color: #000;
  }

  .home #main-header .mega-open .after-icon svg path,
  .home #main-header.is-scrolled .after-icon svg path,
  body:has(.banner-dark) #main-header .mega-open .after-icon svg path,
  body:has(.banner-dark) #main-header.is-scrolled .after-icon svg path {
    stroke: #000000;
  }

  .home #main-header.is-scrolled .mobile-menu-icon svg,
  body:has(.banner-dark) #main-header.is-scrolled .mobile-menu-icon svg {
    background: #ffffff6e;
  }
}

@media (min-width: 992px) {


  .header-logo {
    flex: 1 0 0;
  }

  .header-cta-block {
    flex: 1 0 0;
    justify-content: flex-end;
    display: flex;
  }

  .header-menu {
    flex: 1 0 0;
  }

  .header-menu.desktop-hide-nav {
    display: none;
  }

  li.hide_mega_menu {
    display: none !important;
  }

  #main-header .sub-menu .mg-container {
    max-width: 1200px;
  }

  #main-header .menu-item:hover .after-icon {
    transform: rotate(180deg);
  }

  #main-header.is-scrolled {
    background: transparent;
    border-bottom: none;
  }

  /*
   * ── Desktop glass pill ──────────────────────────────────────────────────────
   * Appears when scrolled OR when the mega menu is open.
   * ──────────────────────────────────────────────────────────────────────────
   */
  #main-header>.mg-container.mega-open,
  #main-header.is-scrolled>.mg-container {
    background: rgb(241 241 241 / 95%);
    border: 1px solid rgb(190 190 190 / 4%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    margin-top: 8px;
    backdrop-filter: blur(4px);
  }

  /* Flatten bottom corners when mega menu drops open — merges seamlessly */
  #main-header>.mg-container.mega-open,
  #main-header.is-scrolled>.mg-container.mega-open {
    border-radius: 8px 8px;
    border-bottom: none;
    width: 98%;
  }

  .main-navigation {
    position: static;
  }

  .inside-header {
    overflow: visible !important;
  }

  .menu-item {
    position: static;
  }







  #main-header .menu>ul>li.menu-item.mega-active:hover .sub-menu {

    visibility: visible;
    opacity: 1;
  }


  .mega-menu-dropdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  #main-header .mb-hd-cta {
    display: none !important;
  }

  .newsroom-filters {
    flex-wrap: wrap;
    overflow: visible;
  }

  .brochure-image img {
    transform: none;
    min-height: 450px;
    object-fit: contain;
    object-position: bottom;
  }
}

@media (min-width: 1024px) {
  .desktop-grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .desktop-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .desktop-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .desktop-static-grid .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transform: none !important;
    transition-property: none !important;
  }

  .desktop-static-grid .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .desktop-hide {
    display: none !important;
  }

  .desktop-static-grid .swiper-wrapper:has(.swiper-slide:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }

  .desktop-static-grid .swiper-wrapper:has(.swiper-slide:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-static-grid .swiper-wrapper:has(.swiper-slide:first-child:last-child) {
    grid-template-columns: 1fr;
  }
}

@media (hover: hover) and (min-width: 1025px) {
  .ns-featured-card:hover {
    transform: translateY(clamp(-4px, -0.6vw, -8px));
    box-shadow: 0 clamp(12px, 2vw, 20px) clamp(24px, 4vw, 40px) rgba(0, 0, 0, 0.18);
  }

  .news-list-item:hover {
    background: #fdfdfd;
    transform: translateX(12px);
  }

  .news-list-item:hover .btn-read-more {
    width: 140px;
    padding: 0 16px;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
  }

  .news-list-item:hover .btn-read-more span {
    width: 74px;
    opacity: 1;
  }

  .btn-read-more:hover {
    width: 140px;
    padding: 0 16px;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    color: #fff;
  }

  .btn-read-more:hover span {
    width: 74px;
    opacity: 1;
  }

  .btn-read-more:hover svg {
    transform: translateX(2px);
  }

  .department-group .position-card:hover .position-title {
    color: #e21e31;
  }

  .department-group .position-card:hover .btn-read-more {
    width: 130px;
    padding: 0 16px;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(226, 30, 49, 0.3);
  }

  .department-group .position-card:hover .btn-read-more span {
    width: 80px;
    opacity: 1;
  }


}

@media (min-width: 1280px) {
  .desktop-static-grid .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }

  .resources-sec {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .newsroom-featured {
    padding: 0 40px 40px;
  }
}

@media (min-width: 1400px) {
  .desktop-static-grid .swiper-wrapper {
    gap: clamp(1.5rem, 2.2vw, 2.5rem);
  }
}

@media (min-width: 1580px) {
  .news-card-content {
    min-height: 9rem;
  }
}

@media screen and (max-width: 1440px) {
  .mg-container {
    padding: 0 30px;
  }

  .pro-container {
    padding: 0 30px;
  }

  .blogs-header {
    padding-left: 0;
    padding-right: 0;
  }

  .mg-container.blogs-main-layout {
    padding-bottom: clamp(40px, 10vw, 80px);
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .why-join-electres {
    padding: 60px 0;
  }

  .newsroom,
  .reliability-section,
  .showcase-section {
    padding: 32px 0;
  }

  .about,
  .energy_section {
    padding-top: 80px;
  }

  .stat-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .promo-text {
    padding: 40px;
  }

  footer {
    padding: 64px 0 40px;
  }

  .showcase-image-wrapper {
    margin-top: 48px;
    min-height: 575px;
  }

  .showcase-card {
    padding: 24px;
  }

  .toggle-group {
    margin-top: 32px;
  }

  .reliability-section .reliability-video video {
    min-height: 475px;
  }

  .promo-banner {
    padding: 20px 0 80px;
  }

  .swiper-slide {
    padding-right: 24px;
  }

  .category-card .card-content {
    padding: 32px 20px;
  }

  .category-card .card-features {
    gap: 24px;
    padding-top: 2rem;
  }

  .newsroom-header {
    padding-left: 0;
    padding-right: 0;
  }

  .newsroom-latest {
    padding: 60px 0;
  }

  .job-post-list-section {
    padding: 0;
  }
}



@media (max-width: 1200px) {
  .journey-form-section {
    padding: 80px 0 0;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-impact,
  .about-stats {
    padding-inline: 0 !important;
  }

  .about-hero-top {
    padding: 0;
    gap: 30px;
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-image img {
    aspect-ratio: 9/6;
  }

  .resource-content {
    padding: 24px 16px;
  }


  .brochure-cta-sec {
    padding: 0;
  }
}


@media screen and (min-device-width: 768px) and (max-device-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-hover-content {
    padding: 20px;
  }

  .team-hover-top {
    margin-bottom: 10px;
  }

  .team-hover-divider {
    margin: 0 0 10px;
  }
}

@media (max-width: 1024px) {
  .sp-container {
    width: calc(100% - 40px);
  }

  .values-title-group {
    flex: 0 0 45%;
  }





  .newsroom-featured .mg-container.swiper {
    overflow: hidden;
    padding: 0 20px;
  }

  .featured-grid.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  .ns-featured-card.swiper-slide {
    grid-column: auto !important;
    height: auto;
    min-height: 480px;
  }

  .ns-featured-card:first-child .news-title {
    font-size: clamp(18px, 2vw, 22px);
  }

  .news-list-item a {
    grid-template-columns: 1fr;
  }

  .why-join-electres {
    padding: 40px 0;
  }

  .benefits {
    display: flex;
    grid-template-columns: unset;
    gap: 0;
  }

  .benefit {
    height: auto;
    box-sizing: border-box;
  }

}

@media screen and (max-width: 1024px) {
  .mg-container {
    padding: 0 20px;
  }

  .pro-container {
    padding: 0;
  }
}

@media (max-width: 991px) {

  .header-cta,
  .header-menu.mobile-hide-nav {
    display: none;
  }

  .mega-menu-dropdown {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 40px;
  }

  #main-header .menu .header-cta-mb.menu-item a {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 9px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    height: 48px;
    width: 100%;
    justify-content: center;
  }

  #main-header .menu>ul>li.header-cta-mb {
    padding: 40px 12px;
    border-bottom: none;
  }

  #main-header .menu>ul>li.header-cta-mb>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  #main-header .menu>ul>li.header-cta-mb>a::after {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M18 8L22 12L18 16' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/><path d='M2 12H22' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  }

  .mobile-menu-icon svg {
    border-radius: 6px;
    border: 1px solid rgb(145 145 143 / 20%);
    box-shadow: inset 0 2px 30px 0 rgb(255 255 255 / 30%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
  }

  #main-header.is-scrolled.is-collapsed svg {
    border: none;
    background: 0 0;
    padding: 0;
    width: 26px;
    height: 26px;
    box-shadow: none;
  }

  #main-header.is-scrolled.is-collapsed .mobile-menu-trigger {
    margin-right: 8px;
  }

  .header .menu>ul>li>a .after-icon svg {
    width: 24px;
    height: 24px;
  }

  .mobile-menu-close {
    height: 50px;
    width: 50px;
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000;
    font-size: 25px;
  }

  #main-header .mg-container {
    padding: 20px;
    position: relative;
  }

  .header-logo .logo .site-logo {
    max-width: 190px;
  }

  #main-header.is-scrolled.is-collapsed .mg-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: max-content;
    border-radius: 8px;
    top: 10px;
    position: relative;
    width: 100%;
    padding: 10px 12px;
    align-items: center;
  }

  #main-header.is-scrolled.is-collapsed .site-logo {
    max-width: 130px;
    height: 24px;
  }

  #main-header.is-scrolled.is-collapsed .mobile-menu-icon svg path {
    stroke: #ffffff;
  }

  #main-header.is-scrolled.is-collapsed .header-cta-block {
    position: unset;
    display: block;
  }

  #main-header.is-scrolled.is-collapsed .header-wrap {
    flex-direction: row-reverse;
  }

  .mobile-menu-icon {
    display: flex;
  }

  .header-cta-block {
    position: absolute;
    left: 20px;
  }

  #main-header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  #main-header .item-left,
  #main-header .item-right {
    flex: auto;
  }

  #main-header .v-center {
    justify-content: center;
  }

  #main-header .mobile-menu-trigger {
    display: flex;
    width: 30px;
    height: 30px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  #main-header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 550px;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: 0.4s;
    z-index: 1099;
    overflow: hidden;
  }

  #main-header .menu.active {
    transform: translateX(0);
    height: 100dvh;
  }

  #main-header .menu>ul>li {
    display: block;
    margin: 0;
    border-bottom: 1px solid var(--Warm-Grey, #cfcac280);
    padding: 12px 0;
  }

  #main-header .menu>ul>li>a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 50px 0 15px;
    color: #000;
  }

  #main-header .menu .mobile-menu-head {
    display: flex !important;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 501;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }

  #main-header .menu .mobile-menu-head .go-back {
    visibility: hidden;
    opacity: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
  }

  #main-header .menu .mobile-menu-head.active .go-back {
    visibility: visible;
    opacity: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 500;
    color: #1A1A1A;
    text-decoration: none;
  }

  #main-header .menu .menu-main {
    height: 100%;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .current-menu-title {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  #main-header.header .menu>ul>li .sub-menu,
  #main-header.header .menu>ul>li .sub-menu.mega-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 65px 0 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0);
    overflow-y: auto;
  }

  #main-header.header .menu>ul>li .sub-menu.active {
    display: block;
    z-index: 6;
  }

  #main-header.header .menu>ul>li .sub-menu.active .mg-container {
    background: #f5f5f5;
  }

  .current-menu-title a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .current-menu-title a.site-logo-link .site-logo path {
    fill: red;
  }

  .current-menu-title a.site-logo-link .site-logo {
    width: 150px;
  }

  #main-header.is-scrolled.is-collapsed .mobile-menu-head .current-menu-title a.site-logo-link {
    display: flex;
  }

  #main-header.is-scrolled.is-collapsed .mobile-menu-head .current-menu-title a.site-logo-link svg.site-logo {
    max-width: 130px;
    height: auto;
    width: 100%;
  }

  .header .menu>ul>li>a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s;
  }

  .header .menu>ul>li>a .after-icon {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header .menu>ul>li>a .after-icon svg path {
    stroke: #000000;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      opacity: 0;
      transform: translateX(40px);
    }
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-grid>*:first-child {
    grid-column: span 2;
  }

  .showcase-image-wrapper {
    max-height: 575px;
  }

  .showcase-image-wrapper img {
    width: 100%;
    object-fit: cover;
  }

  .promo-container {
    min-height: auto;
  }

  .promo-image-container {
    position: relative;
    width: 50%;
    right: 0;
    top: 0;
    transform: none;
    height: auto;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .category-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .category-card {
    background: 0 0;
  }

  .journey-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .journey-content-wrapper form {
    width: 100%;
  }

  .journey-form-section {
    padding: 80px 0 40px;
  }

  .journey-left {
    max-width: 100%;
    width: 100%;
  }

  .journey-right {
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
  }

  .form-group-journey {
    flex: 1;
    min-width: 250px;
  }

  .submit-wrapper {
    margin-top: 10px;
  }

  .select-options {
    width: 100%;
    min-width: 200px;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .desktop-feature-grid {
    display: none;
  }

  .card-mobile-header {
    margin-bottom: 32px;
  }

  .category-card .card-content {
    padding: 0;
  }

  .card-mobile-header .card-title-text {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000;
  }

  .card-mobile-header .card-title-sub-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
  }

  #commercial_and_industrial {
    background: #f4f4f4;
    padding: 40px 0;
  }

  .about-hero-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-hero-content,
  .about-hero-header {
    width: 100%;
    max-width: 100%;
  }

  .about-hero-top,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-top,
  .impact-slider .swiper-wrapper {
    gap: 0;
  }

  .impact-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .about-stats .stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-team {
    padding-left: 0;
    padding-right: 0;
  }

  .impact-slider {
    overflow: visible;
  }

  .about-hero-content .child-comm-subheading {
    max-width: 100%;
  }

  .impact-content-wrap {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media screen and (max-width: 991px) {
  .resource-specs {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .spec-divider {
    display: none;
  }

  .spec-box:first-child,
  .spec-box:nth-child(2),
  .spec-box:nth-child(4),
  .spec-box:nth-child(5) {
    grid-column: 1;
  }

  .brochure-cta-wrap {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .brochure-cta-sec::before {
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
  }

  .brochure-cta-sec {
    background: transparent;
  }

  .brochure-image img {
    width: 94%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-values {
    padding-inline: 0;
  }

  .values-item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }

  .values-index {
    display: none;
  }

  .values-title-group {
    flex: none;
    width: 100%;
    gap: 8px;
  }

  .values-inner-desc {
    padding-left: 0;
  }

  .values-list-wrapper {
    gap: 0 !important;
  }

  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .news-header {
    margin-bottom: 48px;
  }

  .promo-desktop-img {
    display: none;
  }

  .promo-mobile-img {
    display: block;
  }

  .spec-divider {
    display: none;
  }

  .resource-specs {
    grid-template-columns: 1fr;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    border-top: 1px solid #cfcac2;
    padding-top: 24px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .ns-featured-card {
    min-height: clamp(240px, 60vw, 360px);
  }

  .featured-info-block {
    max-width: 90%;
  }

  .newsroom-cta {
    min-height: clamp(360px, 70vh, 520px);
  }

  .newsroom-cta-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .newsroom-cta-subtitle {
    font-size: 15px;
  }

  .department-post-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  .department-heading {
    padding-top: 0;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 24px;
  }

  .department-group .position-card:first-child {
    padding-top: 20px;
  }

  .sp-apply-sec .name-row {
    grid-template-columns: 1fr;
  }

  .sp-content ul li {
    font-size: 14px;
  }

  .early-access-row {
    flex-direction: column;
  }

  .brochure-form-wrapper .early-access-action .dt-dwn-btn {
    width: 100%;
  }

  .brochure-form-wrapper .dt-dwn-btn input {
    width: 100%;
    height: 48px;
  }

  .blogs-list {
    grid-template-columns: 1fr;
  }

  .about-stats .stats-grid {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 768px) {
  .news-info {
    padding: 24px;
  }

  .news-category {
    background: #fff;
    border: 1px solid #eee;
    font-size: 13px;
    padding: 4px 8px;
  }

  .news-list {
    gap: 24px;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 0;
    background: #f4f4f4;
    text-decoration: none;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0;
    border-bottom: none;
  }

  .news-list-item .news-title a {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.4;
  }

  .news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .news-list-item .news-meta {
    font-size: 13px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .newsroom-filters {
    margin-bottom: 32px;
  }

  .btn-read-more svg {
    width: 14px;
    height: 14px;
    aspect-ratio: 1/1;
  }

  .shimmer-placeholder {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: #f4f4f4;
  }

  .shimmer-info {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 180px;
  }

  .toggle-group .toggle-item {
    font-size: 14px;
    padding: 12px 30px;
  }

  .card-content {
    flex-direction: column;
    gap: 20px;
  }

  .card-features,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .promo-container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
    align-items: flex-start;
    background-position: right bottom;
    min-height: 720px;
  }

  .promo-text {
    width: 100%;
    padding: 40px 24px;
  }

  .call_to_action {
    margin-top: 40px;
    transition: 0.3s;
  }

  .promo-image-container {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    height: auto;
    justify-content: center;
    order: 2;
    min-height: 250px;
  }

  .promo-img {
    max-height: 300px;
    width: 100%;
  }

  .card-text {
    max-width: 100%;
  }

  .btn-red {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid>*:first-child {
    grid-column: auto;
  }

  .card-image {
    aspect-ratio: 1/1;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid #eaeaea;
    padding-left: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid #eaeaea;
  }

  .stats-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }

  .stat-item {
    padding: 16px 12px 16px 32px;
  }

  .slider-arrow-container {
    display: none;
  }

  section.news-featured-image {
    padding: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-card {
    min-height: 380px;
  }

  .impact-slider .swiper-slide {
    height: 420px !important;
  }
}

@media (max-width: 600px) {
  .journey-right {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }

  .journey-submit-btn {
    justify-content: center;
    width: 100%;
    height: 48px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 24px;
  }

  .header-logo .logo .site-logo {
    max-width: 150px;
  }

  .blogs-featured-image img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .toggle-group .toggle-item.active {
    font-size: 13px;
  }

  .toggle-group .toggle-item {
    font-size: 12px;
    padding: clamp(10px, 2.75vw, 12px) clamp(6px, 2vw, 20px);
    min-width: clamp(90px, 27vw, 150px);
  }

  .cf7-popup.mdal-popup-landing .early-access-row {
    flex-direction: column;
  }

  .cf7-popup.mdal-popup-landing .cf7-popup-content {
    padding: 40px 16px;
  }

  .cf7-popup.mdal-popup-landing .early-access-field .early-access-input {
    height: 48px;
  }

  .cf7-popup.mdal-popup-landing .early-access-action .early-access-btn {
    height: 48px;
    max-width: 100%;
  }

  .swiper-slide {
    padding-right: 20px;
  }

  .btn,
  .call_to_action,
  .card-btn-wrapper.mobile-cta {
    width: 100%;
  }

  .footer-text {
    font-weight: 400;
    max-width: 250px;
    display: block;
    line-height: 1.5;
  }

  .image-btn-cta {
    width: 100%;
  }
}

/* Brochure Form Section */

/* .brochure-grid-bg {
  background-color: #fafafe !important;
  background-image:
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px) !important;
  background-size: 30px 30px !important;
  border-radius: 12px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 60px 50px !important;
} */

/* update download brochure */

.cf7-popup.mdal-popup-landing .datasheet-layout {
  display: flex;
  max-width: 1200px;
  padding: 20px;
  border: none;
  align-items: stretch;
}

.phone-input-wrapper {
  position: relative;
}

.country-flag {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.country-flag img {
  width: 24px;
  height: 24px;
  display: block;
}

.phone-input {
  padding-left: 60px !important;
}


/* .phone-input-wrapper:after {
  content: "";
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: #2a2a2a;
} */



/* LEFT PANEL */
.background-video-datasheet {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 0;
}

.background-video-datasheet video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.datasheet-left-inner {
  z-index: 1;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.datasheet-left {
  width: 50%;
  background: linear-gradient(180deg, #7a0000, #000);
  color: white;
  padding: clamp(16px, 4vw, 50px) clamp(12px, 3vw, 30px);
  position: relative;
  height: auto;
  overflow: hidden;
}

.renewable-title {
  color: #fff;
  font-size: clamp(24px, 2.75vw, 36px);
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 140%;
  margin: clamp(60px, 8.75vw, 130px) 0 clamp(24px, 9vw, 32px);
}

.datasheet-left-inner .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  /* margin-top: 40px; */
}

.datasheet-left-inner .stat-box h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(16px, 1.75vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.datasheet-left-inner .stat-box p {
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.datasheet-left-inner .social-links a:hover {
  box-shadow: none;
  opacity: 0.8;
}

/* RIGHT PANEL */
.responsive-layout {
  display: none;
}

.datasheet-right .early-access-field {
  flex-direction: column;
}

.datasheet-right {
  width: 50%;
  padding: clamp(16px, 4vw, 40px) clamp(12px, 3vw, 40px);
  padding-right: clamp(4px, 1vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FORM */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}


.ea-label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.ea-label span {
  color: #ff3b3b;
  margin-left: 3px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {

  .datasheet-right .early-access-row {
    flex-direction: column;
  }

  .cf-subtitle-super {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .datasheet-left {
    display: none;
  }

  .responsive-layout {
    display: block;
    margin: 0 -20px;
    position: relative;
  }

  .datasheet-right {
    width: 100%;
    padding: 0 20px 40px;
    justify-content: start;
  }

  .responsive-layout::before {
    background: linear-gradient(0deg, #000 6.33%, rgba(0, 0, 0, 0.50) 64.7%);
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .datasheet-popup .cf7-popup-content.datasheet-layout {
    padding: 0;
  }

  .brand-logo {
    margin-top: 6px;
    margin-bottom: 20px;
    padding: 0 20px;
    z-index: 9;
    position: relative;
  }

  .datasheet-popup-x .cf7-popup-content.datasheet-layout .datasheet-right {
    /* height: 80vh; */
    min-height: 350px;
    overflow: auto;
  }

  .datasheet-popup-x .dt-dwn-btn,
  .datasheet-popup-x input.wpcf7-submit {

    width: 100%;
  }

  .cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body {
    max-height: 100%;
  }
}

/* ==========================================
   Sticky Get in Touch Button
   ========================================== */
.sticky-get-in-touch {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: radial-gradient(circle, #e51b23 0%, #e11d2e 100%);
  color: #ffffff;
  font-family: var(--font-primary, sans-serif);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 80, 80, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(226, 30, 49, 0.7);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-standard, all 0.3s ease);
  animation: pulse-border 6s infinite;
}

.sticky-get-in-touch:active,
.sticky-get-in-touch:focus,
.sticky-get-in-touch:visited,
.sticky-get-in-touch:hover {
  background: radial-gradient(circle, #e11d2e 0%, #e21e31 100%);
  color: #ffffff;
  border-color: rgba(255, 100, 100, 0.8);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 0 0 rgba(226, 30, 49, 0.7);
  animation: none;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(226, 30, 49, 0.7);
  }

  70% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 15px rgba(226, 30, 49, 0);
  }

  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(226, 30, 49, 0);
  }
}

@media screen and (min-width: 769px) {
  .sticky-get-in-touch {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .sticky-get-in-touch {
    bottom: 20px;
    right: 20px;
    padding: 10px 24px;
  }
}

.concent-box {
  padding: 0;
  margin-top: 0;
}

.concent-box .wpcf7-list-item {
  margin: 0;
  display: block;
}

.concent-box label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.concent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: #e31938;
  cursor: pointer;
}

.concent-box .wpcf7-list-item-label {
  font-size: 12px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ==========================================
   Privacy Policy & Content Pages
   ========================================== */

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
  background-color: #ffffff;
}

.content-container h1 {
  font-size: clamp(24px, 3.5vw, 34px);
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 24px;
}

.page-content {
  font-family: var(--font-primary, sans-serif);
  color: #4a4a4a;
  line-height: 1.8;
  font-size: clamp(14px, 1.25vw, 16px);
  margin-top: 0 !important;
}

.page-content h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  color: #1a1a1a;
  margin-top: clamp(24px, 2vw, 36px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
}

.page-content h3 {
  font-size: clamp(17px, 2vw, 20px);
  color: #2a2a2a;
  margin-top: clamp(24px, 2vw, 36px);
  margin-bottom: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
}

.page-content p {
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin: 16px 0 32px 0;
  list-style-type: none;
  padding-left: 24px;
}

.page-content ul ul,
.page-content ul ol,
.page-content ol ul,
.page-content ol ol {
  margin: 12px 0 0 0;
  padding-left: 12px;
}

.page-content ol {
  counter-reset: custom-counter;
}

.page-content ul>li,
.page-content ol>li {
  position: relative;
  margin-bottom: 16px;
  line-height: 150%;
}

.page-content ul>li {
  padding-left: 20px;
}

.page-content ol>li {
  padding-left: 24px;
  counter-increment: custom-counter;
}

.page-content ul>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.7em - 2px);
  width: 7px;
  height: 7px;
  background-color: #e51b23;
  border-radius: 50%;
}

.page-content ol>li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #e51b23;
  font-weight: 500;
  line-height: inherit;
}

/* For prefixed lists (e.g., 5.1, 5.2) */
.content-container {
  counter-reset: h2-counter;
}

.page-content h2 {
  counter-increment: h2-counter;
}

.page-content ol.list-style-number-inside>li {
  padding-left: 34px;
  /* Needs slightly more space for double digits */
}

.page-content ol.list-style-number-inside>li::before {
  /* Uses CSS variable --prefix if provided inline, otherwise falls back to automatically counting h2 elements */
  content: var(--prefix, counter(h2-counter)) "." counter(custom-counter);
}

.page-content ol.list-style-alpha>li::before {
  content: counter(custom-counter, lower-alpha) ")";
}

.page-content a {
  color: #e51b23;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.page-content a:hover {
  color: #b01017;
  text-decoration: underline;
}

.page-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Tables within Page Content */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  text-align: left;
  border: 1px solid #f0f0f0;
}

.page-content table thead tr {
  background-color: #fdfdfd;
  color: #1a1a1a;
  text-align: left;
  font-weight: 600;
}

.page-content table th,
.page-content table td {
  padding: 12px 16px;
  border: 1px solid #f0f0f0;
  vertical-align: top;
  line-height: 1.8;
}

.page-content table tbody tr {
  background-color: #ffffff;
}

.page-content table tbody td {
  color: #4a4a4a;
}

.page-content table p {
  margin-bottom: 0;
  font-size: calc(14px + 0.15vw);
}

@media screen and (max-width: 768px) {
  .page-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }


  .content-container {
    padding: 80px 20px;
  }

  .content-container h1 {
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

  .page-content h2 {
    margin-top: 40px;
  }

  .page-content h3 {
    margin-top: 28px;
  }
}

/* Hide desktop header block when mobile menu is open to prevent overlay bleeding */
#main-header.mobile-menu-open>.mg-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ==========================================================================
   Wiki Modal Tooltip Styles
   ========================================================================== */
#wiki-modal {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.25s ease-out;
  padding-top: 15px;
  /* Invisible bridge connecting the link to the card */
}

#wiki-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#wiki-modal::before {
  content: "";
  position: absolute;
  top: 5px;
  /* Positions the arrow right above the modal card */
  left: calc(50% + var(--arrow-offset, 0px));
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  pointer-events: none;
  transition: left 0.2s ease;
}

.wiki-card {
  width: 90%;
  max-width: 320px;
  min-width: 240px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}

.wiki-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.wiki-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.wiki-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.wiki-card a {
  color: #E21E31;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  font-size: 12px;
}