/* ============================================================
   EVEREST SCALES — NAVBAR STYLES
   All classes prefixed with  ev-  to avoid collisions
   ============================================================ */

:root {
  --ev-red:        #d72b2b;
  --ev-nav-bg:     #2c2c2c;
  --ev-nav-text:   #f0f0f0;
  --ev-drop-bg:    #ffffff;
  --ev-drop-head:  #d72b2b;
  --ev-drop-hover: #fff3f3;
  --ev-drop-border:#e8e8e8;
  --ev-shadow:     0 8px 32px rgba(0,0,0,0.22);
  --ev-transition: 0.22s ease;
  --ev-font-head:  'Barlow Condensed', sans-serif;
  --ev-font-body:  'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--ev-font-body);
  background: #f2f2f2;
}

/* ============================================================
   NAVBAR SHELL
   ============================================================ */
.ev-navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--ev-nav-bg);
  padding: 0 28px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

/* Logo */
.ev-navbar__logo {
  flex-shrink: 0;
  display: flex;
  background-color: black;
  align-items: center;
}
.ev-navbar__logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links — desktop */
.ev-navbar__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
  flex: 1;
  justify-content: center;
}

.ev-navbar__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ev-navbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  height: 100%;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ev-nav-text);
  text-decoration: none;
  position: relative;
  transition: color var(--ev-transition);
  white-space: nowrap;
}

/* Red underline on hover */
.ev-navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--ev-red);
  border-radius: 3px 3px 0 0;
  transition: width var(--ev-transition);
}
.ev-navbar__item:hover > .ev-navbar__link::after { width: 65%; }
.ev-navbar__item:hover > .ev-navbar__link { color: #fff; }

/* Chevron */
.ev-navbar__chevron {
  font-size: 10px;
  color: #aaa;
  transition: transform var(--ev-transition), color var(--ev-transition);
}
/* Desktop: rotate on hover */
.ev-navbar__item--has-dropdown:hover .ev-navbar__chevron {
  transform: rotate(180deg);
  color: var(--ev-red);
}
/* Mobile: rotate via JS class */
.ev-navbar__chevron--open {
  transform: rotate(180deg) !important;
  color: var(--ev-red) !important;
}

/* ============================================================
   MEGA DROPDOWN — DESKTOP ONLY (hover-driven)
   ============================================================ */
.ev-dropdown {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--ev-drop-bg);
  border-radius: 4px;
  box-shadow: var(--ev-shadow);
  border-top: 3px solid var(--ev-red);

  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--ev-transition), transform var(--ev-transition), visibility var(--ev-transition);
}

/* Desktop: show on hover */
.ev-navbar__item--has-dropdown:hover .ev-dropdown,
.ev-navbar__item--has-dropdown:focus-within .ev-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Column */
.ev-dropdown__col {
  padding-bottom: 14px;
  border-right: 1px solid var(--ev-drop-border);
}
.ev-dropdown__col:last-child { border-right: none; }

/* Heading */
.ev-dropdown__heading {
  font-family: var(--ev-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--ev-drop-head);
  padding: 9px 14px;
  margin-bottom: 4px;
}

/* Items */
.ev-dropdown__list { list-style: none; }

.ev-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-family: var(--ev-font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background var(--ev-transition), color var(--ev-transition), padding-left var(--ev-transition);
}
.ev-dropdown__item:hover {
  background: var(--ev-drop-hover);
  color: var(--ev-red);
  padding-left: 20px;
}

.ev-dropdown__icon {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 3px;
  background: #efefef;
  flex-shrink: 0;
}

/* ============================================================
   RIGHT SECTION
   ============================================================ */
.ev-navbar__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social buttons */
.ev-navbar__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ev-navbar__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: transform var(--ev-transition), box-shadow var(--ev-transition);
}
.ev-navbar__social-btn:hover {
  transform: scale(1.13);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.ev-navbar__social-btn--fb { background: #fc1414; }
.ev-navbar__social-btn--ig {
  background: #fc1414;;
}

/* ============================================================
   HAMBURGER (hidden on desktop)
   ============================================================ */
.ev-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: background var(--ev-transition);
}
.ev-hamburger:hover { background: rgba(255,255,255,0.08); }

.ev-hamburger__bar {
  display: block;
  width: 24px; height: 2px;
  background: #f0f0f0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.ev-hamburger--open .ev-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ev-hamburger--open .ev-hamburger__bar:nth-child(2) { opacity: 0; width: 0; }
.ev-hamburger--open .ev-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BACKDROP
   ============================================================ */
.ev-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.ev-nav-backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   BANNER
   ============================================================ */
.banner { width: 100%; overflow: hidden; }
.banner-img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ============================================================
   TABLET  ≤ 991px
   ============================================================ */
@media (max-width: 991px) {

  .ev-navbar {
    height: 64px;
    padding: 0 20px;
    justify-content: space-between;
  }

  .ev-navbar__logo img { height: 70px; }

  /* Slide-in drawer */
  .ev-navbar__links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    gap: 0;

    position: fixed;
    top: 64px; left: 0;
    width: 280px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;

    background: #1e1e1e;
    z-index: 9999;
    padding: 12px 0 24px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);

    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .ev-navbar__links--open { transform: translateX(0); }

  .ev-nav-backdrop { display: block; }

  /* Items full-width */
  .ev-navbar__item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .ev-navbar__link {
    width: 100%;
    height: 100%;
    padding: 13px 22px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: space-between;
  }
  .ev-navbar__link::after { display: none; }
  .ev-navbar__item:hover > .ev-navbar__link {
    background: rgba(255,255,255,0.05);
    color: #fff;
  }

  /* ---- MOBILE DROPDOWN ----
     COMPLETELY override desktop hover behaviour.
     Dropdown is hidden by default, shown only via JS class.
  ---- */
  .ev-dropdown {
    /* reset desktop positioning */
    position: static !important;
    transform: none !important;
    left: auto !important;

    /* reset desktop show state */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    /* layout */
    display: none;           /* hidden until JS adds open class */
    grid-template-columns: 1fr;
    width: 100%;

    /* styling */
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--ev-red);
    border-radius: 0;
    background: #272727;
  }

  /* CRITICAL: kill desktop hover show on mobile */
  .ev-navbar__item--has-dropdown:hover .ev-dropdown,
  .ev-navbar__item--has-dropdown:focus-within .ev-dropdown {
    display: none;
  }

  /* JS-controlled open class — this is the ONLY trigger on mobile */
  .ev-dropdown--mobile-open {
    display: grid !important;
  }

  /* Column adjustments */
  .ev-dropdown__col {
    padding-bottom: 8px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .ev-dropdown__col:last-child { border-bottom: none; }

  .ev-dropdown__heading {
    font-size: 11px;
    padding: 8px 18px;
  }

  .ev-dropdown__item {
    padding: 8px 18px;
    color: #ccc;
    font-size: 13px;
  }
  .ev-dropdown__item:hover {
    background: rgba(215,43,43,0.12);
    color: var(--ev-red);
    padding-left: 26px;
  }

  /* Show hamburger */
  .ev-hamburger { display: flex; }
}

/* ============================================================
   MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

  .ev-navbar {
    height: 100%;
    padding: 0 14px;
  }

  .ev-navbar__logo img { height: 56px; }

  .ev-navbar__links {
    top: 56px;
    max-height: calc(100vh - 58px);
    width: 260px;
  }

  .ev-navbar__social-btn { width: 32px; height: 32px; font-size: 13px; }
  .ev-hamburger { width: 36px; height: 36px; }
}

/* SECTION */
.evr-about-section {
  padding: 80px 0;
  background: #f7f7f7;
}

/* CONTAINER */
.evr-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ROW */
.evr-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* COLUMNS */
.evr-col {
  flex: 1;
  min-width: 300px;
}

/* IMAGE */
.evr-image-box img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TAG */
.evr-tag {
  font-size: 14px;
  font-weight: 600;
  color: #f4a100;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.evr-tag-box {
  background: #999;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}

/* TITLE */
.evr-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d2547;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* TEXT */
.evr-text {
  font-size: 15px;
  color: #555;
  font-weight: 600;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.evr-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #888;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
  transition: 0.3s;
}

.evr-btn:hover {
  background: #f4a100;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .evr-row {
    flex-direction: column;
  }

  .evr-title {
    font-size: 24px;
  }
}
/* REVEAL BASE */
.evr-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.evr-reveal.evr-active {
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL: different directions */
.evr-left.evr-reveal {
  transform: translateX(-80px);
}

.evr-right.evr-reveal {
  transform: translateX(80px);
}

/* ACTIVE overrides */
.evr-left.evr-active,
.evr-right.evr-active {
  transform: translateX(0);
}


/* ===== SECTION ===== */
.wu-section {
  padding: 50px 20px;
  background: #f9f7f6;
}

.wu-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.wu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
/* ══════════════════════════════════════════
       NEWSLETTER
    ══════════════════════════════════════════ */
    .es-newsletter-section {
      background: #d72b2b;
      padding: 72px 48px;
    }

    .es-newsletter-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

    .es-newsletter-text {}

    .es-newsletter-eyebrow {
      font-family: 'Barlow', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 10px;
    }

    .es-newsletter-title {
      font-family: 'Barlow', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.1;
    }

    .es-newsletter-form {
      display: flex;
      gap: 0;
      flex-shrink: 0;
      max-width: 480px;
      width: 100%;
    }

    .es-newsletter-input {
      flex: 1;
      padding: 16px 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      background: rgba(0,0,0,0.2);
      border: 1px solid rgba(255,255,255,0.25);
      border-right: none;
      color: #fff;
      outline: none;
    }

    .es-newsletter-input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .es-newsletter-btn {
      padding: 16px 28px;
      background: #1a1a1a;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .es-newsletter-btn:hover {
      background: #000;
    }
    
.wu-title {
  font-size: 30px;
      font-family: 'Barlow', sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

.wu-line {
  width: 60px;
  height: 4px;
  background: #c55a11;
  margin-top: 10px;
}

.wu-desc {
  max-width: 500px;
  font-weight: 600;
  font-size: 18px;
  color: #555;
  text-align: justify;
  line-height: 1.6;
}

/* ===== GRID ===== */
.wu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.wu-card {
  background: #5f5e5e;
  padding: 40px 25px;
  position: relative;
  color: white;
  transition: 0.4s;
}

.wu-card:hover {
  background: #1c1c1c;
  transform: translateY(-8px);
}

/* ICON */
.wu-icon {
  position: absolute;
  top: -25px;
  left: 20px;
  background: red;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */
.wu-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 20px;
}

.wu-card p {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 8px;
  opacity: 0.8;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .wu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wu-grid {
    grid-template-columns: 1fr;
  }

  .wu-title {
    font-size: 32px;
  }

  .wu-cta-box {
    flex-direction: column;
    text-align: center;
  }
}
.ev-counter-section {
  background: #777;
  padding: 80px 20px;
}

.ev-counter-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.ev-counter-box {
  color: #fff;
}

.ev-counter-icon {
  width: 80px;
  height: 80px;
  background: #f5a623;
  margin: 0 auto 20px;
  border-radius: 20px 50% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-counter-icon i {
  font-size: 30px;
  color: #000;
}

.ev-counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #f5a623;
  margin-bottom: 10px;
}

.ev-counter-box p {
  font-size: 16px;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .ev-counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 500px) {
  .ev-counter-container {
    grid-template-columns: 1fr;
  }
}



  .clt-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
  }

  .clt-title {
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 2px;
  }

  .clt-slider {
    overflow: hidden;
    margin-bottom: 40px;
  }

  /* KEY FIX: no gap on the flex container */
  .clt-track {
    display: flex;
    gap: 0;
    width: max-content;
  }

  /* spacing lives on the image instead */
  .clt-track img {
    height: 90px;
    margin: 0 30px; /* <-- spacing here, not gap */
    padding: 10px 20px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .clt-track img:hover {
    transform: scale(1.1);
  }

  .clt-left .clt-track {
    animation: cltMoveLeft 18s linear infinite;
  }

  .clt-right .clt-track {
    animation: cltMoveRight 18s linear infinite;
  }

  @keyframes cltMoveLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes cltMoveRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }


  .reels-container {
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 20px;
}

.reels-title {
  text-align: center;
  margin-bottom: 15px;
}

.reels-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.reel-card {
  width: 250px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ Mobile Fix */
@media (max-width: 600px) {
  .reels-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .reel-card {
    flex: 0 0 75%;
    height: 400px;
    scroll-snap-align: center;
  }

  .reels-slider::-webkit-scrollbar {
    display: none;
  }
}

/* SECTION */
.evr-products-section{
  padding:80px 20px;
  background-color: #777777;
}

/* HEADING */
.evr-heading{text-align:center;margin-bottom:60px;}

.evr-heading__label{
  font-size:12px;
  letter-spacing:5px;
  color:#c0392b;
  font-weight:700;
}

.evr-heading__title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:52px;
  letter-spacing:3px;
  color:#1a1e26;
}

.evr-heading__title span{color:#c0392b;}

.evr-heading__bar{
  width:60px;
  height:4px;
  background:#c0392b;
  margin:14px auto;
}

/* SLIDER */
.evr-slider-outer{
  max-width:1200px;
  margin:auto;
  position:relative;
}

.evr-slider-viewport{
  overflow:hidden;
}

.evr-slider-track{
  display:flex;
  gap:28px;
  transition:0.5s ease;
}

/* CARD */
.evr-product-card{
  flex:0 0 270px;
  background:#ffffff;
  border-radius:16px;
  padding:28px 22px;
  text-align:center;
  position:relative;
  transition:0.35s ease;
}



.evr-product-card:hover::before{
  opacity:1;
}



/* IMAGE BOX */
.evr-card-img-box{
  width:160px;
  height:150px;
  margin:auto;
  margin-bottom:20px;
  background:#f3f6fa;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.evr-card-img-box img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  transition:0.4s;
}

.evr-product-card:hover img{
  transform:scale(1.08);
}

/* TEXT */
.evr-card-name{
  font-size:22px;
  font-weight:700;
  color:#1a1e26;
  margin-bottom:12px;
  letter-spacing:1px;
}

/* BUTTON */
.evr-card-link{
  display:inline-block;
  padding:10px 20px;
  border:1px solid #c0392b;
  color:#c0392b;
  text-decoration:none;
  font-size:13px;
  border-radius:30px;
  transition:0.3s;
}

.evr-card-link:hover{
  background:#c0392b;
  color:#fff;
}

/* BUTTONS */
.evrr-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.2);
  cursor:pointer;
}

.evrr-btn--prev{left:-25px;}
.evrr-btn--next{right:-25px;}

/* DOTS */
.evr-dots{
  display:flex;
  justify-content:center;
  margin-top:30px;
  gap:8px;
}

.evr-dot{
  width:8px;
  height:8px;
  background:#bbb;
  border:none;
  border-radius:50%;
}

.evr-dot.active{
  width:22px;
  border-radius:10px;
  background:#c0392b;
}

/* MOBILE */
@media(max-width:768px){
  .evr-product-card{
    flex:0 0 220px;
  }
}
/* WHATSAPP FLOAT BUTTON */
.rp-wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER */
.rp-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* PULSE ANIMATION */
.rp-wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: rp-wa-pulse 1.8s infinite;
  z-index: -1;
}

@keyframes rp-wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
    @media (max-width: 960px) {


      .es-about-hero-inner { padding: 64px 24px 48px; }

      .es-story-section { padding: 64px 24px; }
      .es-story-container { grid-template-columns: 1fr; gap: 48px; }
      .es-story-image-wrap { max-height: 340px; overflow: hidden; }
      .es-story-image-wrap img { height: 340px; }

      .es-mct-section { padding: 64px 24px; }
      .es-mct-container { grid-template-columns: 1fr; gap: 40px; }
      .es-mct-divider-line { display: none; }

      .es-whyus-section { padding: 64px 24px; }
      .es-whyus-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .es-whyus-grid { grid-template-columns: 1fr 1fr; }

      .es-vm-section { padding: 64px 24px; }
      .es-vm-grid { grid-template-columns: 1fr; }
      .es-vm-card { padding: 48px 32px; }

      .es-newsletter-section { padding: 56px 24px; }
      .es-newsletter-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
      .es-newsletter-form { max-width: 100%; width: 100%; flex-direction: column; }

      .es-footer-wrap { padding: 0 24px; }
      .es-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .es-footer-brand-col { grid-column: 1 / -1; }
      .es-footer-bottom { padding: 20px 24px; }
    }