update home,about,solutions

This commit is contained in:
2026-06-01 20:20:14 +05:30
parent 8d74f7063e
commit a59a5e79dc
19 changed files with 3543 additions and 1381 deletions

View File

@@ -1,46 +1,122 @@
"use client";
import React, { useEffect, useRef } from "react";
import Link from "next/link";
import { ScrollReveal, SlideReveal } from "@/animations/Reveal";
import React, { useEffect, useRef, useState } from "react";
import dynamic from "next/dynamic";
import gsap from "gsap";
import { ScrollTrigger } from "gsap/ScrollTrigger";
// Drifting particle background — client-only, mounted behind the section.
const EVParticles = dynamic(() => import("./EVParticles"), { ssr: false });
if (typeof window !== "undefined") {
gsap.registerPlugin(ScrollTrigger);
}
const PILLS: { value: string; label: string }[] = [
{ value: "100%", label: "Electric Fleet" },
{ value: "Live", label: "Route Sync" },
{ value: "Real-time", label: "Battery Monitoring" },
];
const MINI_STATS: { value: number; decimals?: number; suffix: string; label: string }[] = [
{ value: 94, suffix: "K+", label: "Routes Optimised" },
{ value: 23, suffix: "%", label: "Avg Battery Saved" },
{ value: 1.4, decimals: 1, suffix: "x", label: "Charging Stops Saved" },
];
const FEATURES: { icon: string; title: string; desc: string }[] = [
{
icon: "⚡",
title: "Battery-Aware Routing",
desc: "Battery level, health, and degradation are first-class inputs to route optimization — not afterthoughts.",
},
{
icon: "🔌",
title: "Charging Integration",
desc: "Seamlessly integrate charging stops without compromising delivery windows or SLA commitments.",
},
{
icon: "⛰",
title: "Energy-Optimized Paths",
desc: "Factor in elevation, speed limits, payload weight, and live weather for maximum range efficiency.",
},
{
icon: "🛡",
title: "Predictable Operations",
desc: "EVs become predictable assets, not operational risks. Full visibility from depot to doorstep.",
},
];
const BOTTOM_STATS: { value: number; decimals?: number; suffix: string; label: string }[] = [
{ value: 120, suffix: "K+", label: "Deliveries Completed" },
{ value: 98, suffix: "%", label: "On-Time Rate" },
{ value: 31, suffix: "%", label: "Range Efficiency Gain" },
{ value: 340, suffix: "ms", label: "Avg Route Calc Time" },
];
/** Count-up that fires once when scrolled ~20% into view (ease-out cubic). */
function CountUp({
value,
decimals = 0,
suffix = "",
duration = 1700,
className,
}: {
value: number;
decimals?: number;
suffix?: string;
duration?: number;
className?: string;
}) {
const [n, setN] = useState(0);
const ref = useRef<HTMLElement>(null);
const done = useRef(false);
useEffect(() => {
const el = ref.current;
if (!el) return;
const reduced = window.matchMedia?.("(prefers-reduced-motion: reduce)").matches;
if (reduced) {
setN(value);
return;
}
const io = new IntersectionObserver(
(entries) => {
for (const e of entries) {
if (e.isIntersecting && !done.current) {
done.current = true;
const start = performance.now();
const ease = (t: number) => 1 - Math.pow(1 - t, 3);
const tick = (now: number) => {
const p = Math.min(1, (now - start) / duration);
setN(value * ease(p));
if (p < 1) requestAnimationFrame(tick);
else setN(value);
};
requestAnimationFrame(tick);
io.disconnect();
}
}
},
{ threshold: 0.2 }
);
io.observe(el);
return () => io.disconnect();
}, [value, duration]);
return (
<b ref={ref as React.RefObject<HTMLElement>} className={className}>
{n.toFixed(decimals)}
{suffix}
</b>
);
}
export default function EVSection() {
const headingContainerRef = useRef<HTMLDivElement>(null);
const bannerRef = useRef<HTMLDivElement>(null);
useEffect(() => {
// 1. Heading Scroll-Triggered Animation (Up & Down, Replay)
const headingEl = headingContainerRef.current;
if (headingEl) {
const trigger = ScrollTrigger.create({
trigger: headingEl,
start: "top 88%",
onEnter: () => {
headingEl.classList.add("animated");
},
onEnterBack: () => {
headingEl.classList.add("animated");
},
onLeave: () => {
headingEl.classList.remove("animated");
},
onLeaveBack: () => {
headingEl.classList.remove("animated");
},
});
return () => trigger?.kill();
}
}, []);
useEffect(() => {
// 2. Banner Native Background Parallax (GSAP ScrollTrigger)
// Banner Scroll-Triggered Parallax (Replicating background_image_parallax from theme.js exactly)
const banner = bannerRef.current;
if (!banner) return;
@@ -49,100 +125,297 @@ export default function EVSection() {
start: "top bottom",
end: "bottom top",
scrub: true,
onUpdate: (self) => {
// Subtle background offset to create beautiful native parallax depth
const yOffset = self.progress * 120;
gsap.set(banner, {
backgroundPosition: `center ${yOffset}px`,
});
onUpdate: () => {
if (window.innerWidth >= 1021) {
const scrollTop = window.scrollY;
const rect = banner.getBoundingClientRect();
const offsetTop = rect.top + scrollTop;
const from_top = scrollTop - offsetTop;
const yOffset = 0.3 * from_top;
gsap.set(banner, { backgroundPosition: `center ${yOffset}px` });
} else {
gsap.set(banner, { backgroundPosition: "" });
}
},
});
return () => parallaxTrigger?.kill();
}, []);
const renderAnimatedText = () => {
const lines = [
{ text: "Built for Electric.", highlight: true },
{ text: "Not Adapted.", highlight: false }
];
let letterCount = 0;
return lines.map((line, lineIdx) => {
const words = line.text.split(/\s+/);
return (
<div key={lineIdx} style={{ display: "block" }}>
{words.map((word, wordIdx) => {
const letters = word.split("");
return (
<span key={wordIdx} className="word" style={{ display: "inline-block", marginRight: "0.2em", whiteSpace: "nowrap" }}>
{letters.map((letter, letterIdx) => {
const delay = `${letterCount / 50}s`;
letterCount++;
return (
<span
key={letterIdx}
className="letter"
style={{
animationDelay: delay,
["--delay" as any]: delay,
}}
>
{letter}
</span>
);
})}
{/* Non-breaking space */}
&nbsp;
</span>
);
})}
</div>
);
});
};
return (
<>
<style dangerouslySetInnerHTML={{ __html: `
.logico-title .word {
display: inline-block;
white-space: nowrap;
margin-right: 0.15em;
/* ============================================================
EV-Native Design — redesigned section
bg #0d0d0d · red #dc2626 / #ef4444 · Syne + DM Sans
============================================================ */
#evnd, #evnd * { font-family: "Manrope", Sans-serif !important; }
.evnd {
position: relative;
isolation: isolate;
overflow: hidden;
background: #0d0d0d;
/* flat top so it connects seamlessly to the banner above; rounded
bottom only, and no top margin so there is no white gap */
border-radius: 0 0 clamp(16px, 2vw, 28px) clamp(16px, 2vw, 28px);
margin: 0 0 clamp(28px, 5vw, 64px);
padding: 56px 48px 64px;
}
.letter {
display: inline-block;
/* subtle diagonal light band for depth (matches reference) */
.evnd::before {
content: '';
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background: linear-gradient(120deg, transparent 28%, rgba(255,255,255,0.025) 50%, transparent 72%);
}
/* Native, scroll-triggered heading reveal matching WordPress/Elementor */
.logico_heading_animation .word .letter {
opacity: 0 !important;
transform: translateY(120%) !important;
animation: none !important;
.evnd__canvas {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}
.logico_heading_animation.animated .word .letter {
opacity: 0 !important;
transform: translateY(120%) !important;
animation: fadeIn 0.35s forwards, logico_heading_animation 0.7s cubic-bezier(.26, -.14, 0, 1.01) forwards !important;
.evnd__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
/* ---- TOP ROW ---- */
.evnd__top {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 44px;
align-items: center;
margin-bottom: 48px;
}
.evnd__eyebrow {
display: inline-flex;
align-items: center;
gap: 12px;
color: #dc2626 !important;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.16em;
font-size: 13px;
margin-bottom: 16px;
}
.evnd__eyebrow::before { content: ''; width: 24px; height: 2px; background: #dc2626; }
.evnd__title {
color: #fff !important;
font-weight: 800 !important;
font-size: clamp(30px, 4.4vw, 56px) !important;
line-height: 1.04 !important;
letter-spacing: -0.01em;
margin: 0;
}
.evnd__title .accent { color: #ef4444 !important; }
.evnd__pills { display: flex; flex-direction: column; gap: 12px; }
.evnd__pill {
display: flex;
align-items: center;
gap: 12px;
padding: 13px 20px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 100px;
}
.evnd__pill .dot {
flex: 0 0 auto;
width: 8px; height: 8px;
border-radius: 50%;
background: #22c55e;
box-shadow: 0 0 8px #22c55e;
animation: evndBlink 1.4s ease-in-out infinite;
}
.evnd__pill b { color: #ef4444 !important; font-weight: 800; font-size: 15px; }
.evnd__pill span { color: rgba(255,255,255,0.62) !important; font-size: 13px; }
/* ---- MAIN GRID ---- */
.evnd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.evnd__media { position: relative; }
.evnd__glow {
position: absolute;
left: 50%; bottom: -4%;
width: 72%; height: 64px;
transform: translateX(-50%);
background: radial-gradient(50% 50% at 50% 50%, rgba(220,38,38,0.5), transparent 72%);
filter: blur(30px);
z-index: 0;
animation: evndGlow 4s ease-in-out infinite;
}
.evnd__imgwrap { position: relative; z-index: 1; animation: evndFloat 7s ease-in-out infinite; will-change: transform; }
.evnd__img {
display: block;
width: 100%;
height: auto;
border-radius: 14px;
box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7);
}
.evnd__badge {
position: absolute;
z-index: 2;
display: flex;
flex-direction: column;
gap: 2px;
padding: 10px 14px;
background: rgba(10,10,10,0.88);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px;
}
.evnd__badge b { color: #ef4444 !important; font-weight: 800; font-size: 24px; line-height: 1; }
.evnd__badge span { color: rgba(255,255,255,0.55) !important; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.evnd__badge--tl { top: 14px; left: 14px; }
.evnd__badge--br { bottom: 14px; right: 14px; }
.evnd__ministats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.evnd__mini {
position: relative;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 10px;
padding: 18px 14px 14px;
overflow: hidden;
}
.evnd__mini::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, #dc2626, transparent);
}
.evnd__mini b { display: block; color: #fff !important; font-weight: 800; font-size: clamp(20px, 2.3vw, 28px); line-height: 1; margin-bottom: 6px; }
.evnd__mini span { color: rgba(255,255,255,0.5) !important; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.3; display: block; }
/* ---- Feature cards ---- */
.evnd__features { display: flex; flex-direction: column; gap: 10px; }
.evnd-feature {
position: relative;
display: grid;
grid-template-columns: 40px 1fr auto;
gap: 16px;
align-items: start;
background: rgba(255,255,255,0.028);
border: 1px solid rgba(255,255,255,0.07);
border-radius: 12px;
padding: 18px 20px;
overflow: hidden;
transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(.25,1,.5,1);
}
.evnd-feature::before {
content: '';
position: absolute;
left: 0; top: 0; bottom: 0;
width: 3px;
background: #dc2626;
transform: scaleY(0);
transform-origin: bottom;
transition: transform 0.35s ease;
}
.evnd-feature:hover { background: rgba(220,38,38,0.06); border-color: rgba(220,38,38,0.25); transform: translateX(4px); }
.evnd-feature:hover::before { transform: scaleY(1); }
.evnd-feature__icon {
width: 40px; height: 40px;
display: flex; align-items: center; justify-content: center;
background: rgba(220,38,38,0.1);
border: 1px solid rgba(220,38,38,0.2);
border-radius: 10px;
font-size: 18px;
}
.evnd-feature__title {
color: #fff !important;
font-weight: 700;
font-size: 15px !important;
text-transform: uppercase;
letter-spacing: 0.04em;
margin: 3px 0 7px;
transition: color 0.3s ease;
}
.evnd-feature:hover .evnd-feature__title { color: #ef4444 !important; }
.evnd-feature__desc {
color: rgba(255,255,255,0.75) !important;
font-weight: 400 !important;
font-size: 14.5px !important;
line-height: 1.65 !important;
margin: 0;
}
.evnd-feature__arrow {
color: rgba(255,255,255,0.2);
font-size: 14px;
align-self: flex-start;
transition: color 0.3s ease, transform 0.3s ease;
}
.evnd-feature:hover .evnd-feature__arrow { color: #ef4444; transform: translate(3px, -3px); }
/* ---- BOTTOM BAR ---- */
.evnd__bar {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
background: rgba(255,255,255,0.06);
border-radius: 12px;
overflow: hidden;
margin-top: 40px;
}
.evnd__bar-item {
background: #0d0d0d;
padding: 24px 22px;
display: flex;
flex-direction: column;
gap: 8px;
align-items: flex-start;
}
.evnd__bar-item .dot {
width: 7px; height: 7px;
border-radius: 50%;
background: #dc2626;
box-shadow: 0 0 8px rgba(220,38,38,0.85);
animation: evndBlink 1.4s ease-in-out infinite;
}
.evnd__bar-item b { color: #fff !important; font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); line-height: 1; }
.evnd__bar-item span { color: rgba(255,255,255,0.45) !important; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
@keyframes evndFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes evndGlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes evndBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
/* ---- Responsive ---- */
@media (max-width: 900px) {
.evnd { padding: 48px 28px 52px; }
.evnd__top { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
.evnd__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
.evnd { padding: 40px 18px 44px; }
.evnd__bar { grid-template-columns: repeat(2, 1fr); }
.evnd__pill { padding: 11px 16px; }
}
@media (prefers-reduced-motion: reduce) {
.evnd__imgwrap, .evnd__glow, .evnd__pill .dot, .evnd__bar-item .dot { animation: none !important; }
}
`}} />
<div className="elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent" data-id="bbc6760" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-bbc6760 e-con-full e-flex cut-corner-no sticky-container-off e-con e-parent" data-id="bbc6760" data-element_type="container" data-e-type="container" style={{ backgroundColor: "#0d0d0d", width: "calc(100% - 40px)", marginLeft: "20px", marginRight: "20px", borderRadius: "25px", overflow: "hidden" }}>
{/* Background Banner with Native GSAP Background Scroll Parallax */}
<div
<div
ref={bannerRef}
className="elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child"
data-id="7da6646"
data-element_type="container"
data-e-type="container"
data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"
style={{
className="elementor-element elementor-element-7da6646 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child"
data-id="7da6646"
data-element_type="container"
data-e-type="container"
data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"
style={{
backgroundPosition: "center 0px",
backgroundImage: "url(/images/home4-banner-4.png)",
backgroundImage: "url(/images/bg-header-5.png)",
backgroundSize: "cover",
backgroundRepeat: "no-repeat"
backgroundRepeat: "no-repeat",
position: "relative",
zIndex: 2,
borderRadius: "25px 25px 0 0",
overflow: "hidden"
}}
></div>
@@ -169,164 +442,89 @@ export default function EVSection() {
</div>
</div>
<div className="elementor-element elementor-element-b6e14bd e-flex e-con-boxed cut-corner-no sticky-container-off e-con e-child" data-id="b6e14bd" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="e-con-inner">
<div className="elementor-element elementor-element-90cc867 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child" data-id="90cc867" data-element_type="container" data-e-type="container">
<ScrollReveal delay={0.05} duration={0.7} yOffset={20}>
<div className="elementor-element elementor-element-24c0280 elementor-widget__width-inherit elementor-widget elementor-widget-logico_heading" data-id="24c0280" data-element_type="widget" data-e-type="widget" data-widget_type="logico_heading.default">
<div className="elementor-widget-container">
<div className="logico-title">/ EV-Native Design /</div>
</div>
</div>
</ScrollReveal>
{/* ===== EV-Native Design (redesigned) ===== */}
<section className="evnd" id="evnd" aria-label="EV-Native Design">
<div className="evnd__canvas-wrap" style={{ position: "absolute", inset: 0, zIndex: 0, pointerEvents: "none" }}>
<EVParticles />
</div>
<div className="elementor-element elementor-element-2ed47f3 e-con-full e-grid cut-corner-no sticky-container-off e-con e-child" data-id="2ed47f3" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-36efec7 e-con-full e-flex cut-corner-no sticky-container-off e-con e-child" data-id="36efec7" data-element_type="container" data-e-type="container">
<div ref={headingContainerRef} className="elementor-element elementor-element-778840d elementor-widget elementor-widget-logico_heading logico_heading_animation" data-id="778840d" data-element_type="widget" data-e-type="widget" data-widget_type="logico_heading.default">
<div className="elementor-widget-container">
<h3 className="logico-title" data-animate="true">
{renderAnimatedText()}
</h3>
</div>
<div className="evnd__inner">
{/* TOP ROW */}
<div className="evnd__top">
<div className="evnd__head">
<span className="evnd__eyebrow">/ EV-Native Design /</span>
<div className="evnd__title">
BUILT FOR ELECTRIC. <span className="accent">NOT ADAPTED.</span>
</div>
</div>
<div className="evnd__pills">
{PILLS.map((p) => (
<div className="evnd__pill" key={p.label}>
<span className="dot" />
<b>{p.value}</b>
<span>{p.label}</span>
</div>
<div className="elementor-element elementor-element-bbfb67f elementor-widget elementor-widget-image" data-id="bbfb67f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div className="elementor-widget-container">
<img decoding="async" width="626" height="692" src="/images/home4-pic-1.png" className="attachment-full size-full wp-image-6789" alt="EV Truck" style={{ objectFit: "cover", width: "100%", height: "auto" }} />
))}
</div>
</div>
{/* MAIN GRID */}
<div className="evnd__grid">
{/* Left column */}
<div className="evnd__left">
<div className="evnd__media">
<div className="evnd__glow" />
<div className="evnd__imgwrap">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img className="evnd__img" src="/images/premium-ev-van.png" alt="DoorMile electric delivery van" decoding="async" />
<div className="evnd__badge evnd__badge--tl">
<b>100%</b>
<span>Electric Fleet</span>
</div>
<div className="evnd__badge evnd__badge--br">
<b>&minus;40%</b>
<span>Cost / Mile</span>
</div>
</div>
</div>
<SlideReveal direction="right" delay={0.15} duration={0.9}>
<div className="elementor-element elementor-element-b2c956f e-con-full e-flex cut-corner-no sticky-container-off e-con e-child" data-id="b2c956f" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-1a450c2 elementor-absolute elementor-widget elementor-widget-image" data-id="1a450c2" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="image.default">
<div className="elementor-widget-container">
<img loading="lazy" decoding="async" width="965" height="474" src="/images/bg-map.png" className="attachment-full size-full wp-image-1148" alt="Map Grid" />
<div className="evnd__ministats">
{MINI_STATS.map((s) => (
<div className="evnd__mini" key={s.label}>
<CountUp value={s.value} decimals={s.decimals} suffix={s.suffix} />
<span>{s.label}</span>
</div>
</div>
{/* Icon Boxes */}
<div className="elementor-element elementor-element-6b51278 elementor-view-stacked elementor-position-inline-start elementor-shape-circle elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="6b51278" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
<div className="elementor-widget-container">
<div className="elementor-icon-box-wrapper">
<div className="elementor-icon-box-icon">
<span className="elementor-icon">
<i aria-hidden="true" className="fontello icon-arrow-x-r-top"></i>
</span>
</div>
<div className="elementor-icon-box-content">
<div className="elementor-icon-box-title">
<span>Battery-Aware Routing</span>
</div>
<p className="elementor-icon-box-description">
Battery level, health, and degradation are first-class inputs to route optimization.
</p>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-e34beb2 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e34beb2" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
<div className="elementor-widget-container">
<div className="elementor-divider">
<span className="elementor-divider-separator"></span>
</div>
</div>
</div>
<div className="elementor-element elementor-element-27ba815 elementor-view-stacked elementor-position-inline-start elementor-shape-circle elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="27ba815" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
<div className="elementor-widget-container">
<div className="elementor-icon-box-wrapper">
<div className="elementor-icon-box-icon">
<span className="elementor-icon">
<i aria-hidden="true" className="fontello icon-arrow-x-r-top"></i>
</span>
</div>
<div className="elementor-icon-box-content">
<div className="elementor-icon-box-title">
<span>Charging Integration</span>
</div>
<p className="elementor-icon-box-description">
Seamlessly integrate charging stops without compromising delivery windows.
</p>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-6895eb5 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="6895eb5" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
<div className="elementor-widget-container">
<div className="elementor-divider">
<span className="elementor-divider-separator"></span>
</div>
</div>
</div>
<div className="elementor-element elementor-element-332c78f elementor-view-stacked elementor-position-inline-start elementor-shape-circle elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="332c78f" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
<div className="elementor-widget-container">
<div className="elementor-icon-box-wrapper">
<div className="elementor-icon-box-icon">
<span className="elementor-icon">
<i aria-hidden="true" className="fontello icon-arrow-x-r-top"></i>
</span>
</div>
<div className="elementor-icon-box-content">
<div className="elementor-icon-box-title">
<span>Energy-Optimized Paths</span>
</div>
<p className="elementor-icon-box-description">
Factor in elevation, speed limits, and weather for maximum efficiency.
</p>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-6895eb5 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="6895eb5" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
<div className="elementor-widget-container">
<div className="elementor-divider">
<span className="elementor-divider-separator"></span>
</div>
</div>
</div>
<div className="elementor-element elementor-element-332c78f elementor-view-stacked elementor-position-inline-start elementor-shape-circle elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="332c78f" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
<div className="elementor-widget-container">
<div className="elementor-icon-box-wrapper">
<div className="elementor-icon-box-icon">
<span className="elementor-icon">
<i aria-hidden="true" className="fontello icon-arrow-x-r-top"></i>
</span>
</div>
<div className="elementor-icon-box-content">
<div className="elementor-icon-box-title">
<span>Predictable Operations</span>
</div>
<p className="elementor-icon-box-description">
EVs become predictable assets, not operational risks.
</p>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-e70d3b7 elementor-widget elementor-widget-logico_button" data-id="e70d3b7" data-element_type="widget" data-e-type="widget" data-widget_type="logico_button.default">
<div className="elementor-widget-container">
<div className="button-widget">
<div className="button-container">
<Link href="/solutions" className="logico-alter-button">Explore more</Link>
</div>
</div>
</div>
</div>
))}
</div>
</SlideReveal>
</div>
{/* Right column */}
<div className="evnd__features">
{FEATURES.map((f) => (
<div className="evnd-feature" key={f.title}>
<span className="evnd-feature__icon" aria-hidden="true">{f.icon}</span>
<div className="evnd-feature__body">
<div className="evnd-feature__title">{f.title}</div>
<p className="evnd-feature__desc">{f.desc}</p>
</div>
<span className="evnd-feature__arrow" aria-hidden="true"></span>
</div>
))}
</div>
</div>
{/* BOTTOM BAR */}
<div className="evnd__bar">
{BOTTOM_STATS.map((s) => (
<div className="evnd__bar-item" key={s.label}>
<span className="dot" />
<CountUp value={s.value} decimals={s.decimals} suffix={s.suffix} />
<span>{s.label}</span>
</div>
))}
</div>
</div>
</div>
</section>
</div>
</>