/* Reset and basic styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px
}

/* Navbar */
.site-header {
    position: relative;
    top: 0;
    z-index: 999;
    background: transparent
}


.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow .25s ease, background .25s ease;
    background: transparent;
    background-color: rgba(0, 0, 0, 0.5);
}


.site-header.scrolled {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background:transparent;
}

.logo img {
    height: 44px;
    padding-top: 2px;
    margin-left: 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center
}


.nav-menu li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}


.nav-menu li a:hover {
    color: #ff6500
}

.nav-menu li a .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff6500;
    border-radius: 2px;
    transform: rotate(45deg);
    margin-left: 6px
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 700
}

.btn-enquire {
    background: #ff6500;
    color: #fff;
    margin-right: 30px;
}

/* Slider */
.hero-slider {
    overflow: hidden;
    /* margin-top: -100px; */
  
}

.slider {
    position: relative
}

.slides {
    display: flex;
    transition: transform .6s ease;
    min-height: 500px
}

.slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* margin-top: -300px; */
}

.slide .slide-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 22px;
    border-radius: 6px;
    margin: 40px;
    max-width: 560px
}

.slide h1 {
    color: #ff6200;
    margin-bottom: 8px
}

.slide p {
    color: #333
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer
}

.prev {
    left: 14px
}

.next {
    right: 14px
}

.dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    display: flex;
    gap: 10px
}

.dots button {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: none;
    background: rgba(0, 0, 0, .25);
    cursor: pointer
}

.dots button.active {
    background: #ff6500
}

/* Responsive */
@media (max-width:900px) {
    .nav-menu {
        display: none
    }


    .logo img {
        height: 38px
    }

    .slides {
        min-height: 220px
    }

    .slide .slide-content {
        margin: 18px;
        max-width: 80%
    }
}

/* Minor utilities */
.content {
    padding: 36px 16px
}

/* Product Range Styles */
.product-range {
    padding: 48px 16px 64px;
    max-width: 1100px;
}

.range-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px
}

.range-header h2 {
    font-size: 40px;
    margin-bottom: 6px
}

.range-underline {
    width: 260px;
    height: 5px;
    background: linear-gradient(90deg, #ff8a5a, #ff4b00);
    opacity: .9;
    border-radius: 4px
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    transition: transform .55s cubic-bezier(.2, .9, .3, 1), opacity .55s cubic-bezier(.2, .9, .3, 1)
}

.is-visible {
    opacity: 1;
    transform: none
}

/* product overlay slide and hover effects */
.product-overlay {
    transform: translateY(34%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}

.product-card:hover .product-overlay {
    transform: translateY(0)
}

.product-card:hover img {
    transform: scale(1.03);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}

/* inv-card hover */
.inv-card {
    transition: transform .28s ease, box-shadow .28s ease
}

.inv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08)
}

/* feature icon animation */
.feature img {
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .45s
}

.feature.is-visible img {
    transform: translateY(-8px);
    opacity: 1
}

.feature:hover img {
    transform: translateY(-6px) scale(1.04)
}

/* header and intro fade-in */
.inv-head.animate,
.range-header.animate {
    transform: translateY(8px);
}

.inv-head.is-visible,
.range-header.is-visible {
    transform: translateY(0)
}

/* minor stagger helpers (used by JS via inline style) */
.stagger {
    transition-delay: 0ms
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

    .animate,
    .is-visible,
    .product-card:hover,
    .inv-card:hover,
    .feature img,
    .product-card:hover img,
    .product-overlay {
        transition: none !important;
        transform: none !important;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}


.product-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: rgba(255, 99, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center
}

.product-overlay h3 {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin: 0
}

.product-card:hover {
    transform: translateY(-4px);
    transition: transform .2s ease
}

/* Product Range specific enhancements & animations */
.range-header {
    text-align: center;
    margin-bottom: 28px
}

.range-header h2 {
    font-size: 40px;
    margin-bottom: 6px
}

.range-underline {
    width: 260px;
    height: 5px;
    background: linear-gradient(90deg, #ff8a5a, #ff4b00);
    opacity: .9;
    border-radius: 4px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .6s cubic-bezier(.2, .9, .3, 1)
}

.range-header.is-visible .range-underline {
    transform: scaleX(1)
}

.product-card {
    will-change: transform, opacity
}

.product-card .product-overlay h3 {
    color: #000;
    font-size: 28px;
    transition: color .18s ease, transform .25s ease, opacity .25s ease;
    transform: translateY(6px);
    opacity: 0
}

.product-card.is-visible .product-overlay h3 {
    transform: translateY(0);
    opacity: 1
}

.product-card:focus,
.product-card:focus-visible {
    outline: 3px solid rgba(255, 102, 0, 0.12);
    outline-offset: 3px
}

.product-card {
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, opacity .4s
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08)
}

/* overlay background subtle animation */
.product-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .0) 60%, rgba(255, 255, 255, .02) 100%);
    opacity: 0.06;
    pointer-events: none;
    transition: opacity .3s ease
}

.product-card:hover .product-overlay::before {
    opacity: 0.12
}

@media (max-width: 900px) {
    .product-grid {
        gap: 18px
    }

    .product-overlay h3 {
        font-size: 22px
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .product-card img {
        height: 260px
    }

    .product-overlay {
        height: 96px
    }
}

/* Home Inverters Section Styles */
.home-inverters {
    padding: 48px 16px 64px;

}

.inv-intro {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
    padding-left: 100px;
}


.inv-head {
    display: flex;
    align-items: center;
    gap: 18px
}

.inv-icon {
    width: 72px;
    height: auto
}

.inv-head h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 500
}

.inv-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.feature {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #444
}

.feature img {
    width: 28px;
    height: 28px
}

.feature span {
    font-size: 16px
}

.inv-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.inv-card {
    text-align: center
}

.inv-card img {
    width: 260px;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 12px
}

.inv-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #202020
}

.inv-card p {
    color: #6b6b6b;
    margin: 0 auto;
    max-width: 420px;
    line-height: 1.6
}

.inv-cta {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 18px;
    border-radius: 6px;
    background: #ff6500;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: transform .28s ease, opacity .28s ease
}

.inv-card:hover .inv-cta {
    opacity: 1;
    transform: none
}

.inv-cta:focus {
    outline: 3px solid rgba(255, 102, 0, 0.2);
    outline-offset: 3px
}

@media (max-width: 1000px) {
    .inv-intro {
        grid-template-columns: 1fr
    }

    .inv-features {
        grid-template-columns: repeat(2, 1fr)
    }

    .inv-products {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:700px) {
    .inv-features {
        grid-template-columns: 1fr
    }

    .inv-products {
        grid-template-columns: 1fr
    }

    .inv-icon {
        width: 56px
    }

    .inv-head h2 {
        font-size: 28px
    }
}

/* keyframes for float & fadeUp -- used for entrances and subtle motion */
@keyframes floatLoop {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* Apply fadeUp animation when elements become visible */
.inv-card.is-visible {
    animation: fadeUp .6s cubic-bezier(.2, .9, .3, 1) both
}

.product-card.is-visible {
    animation: fadeUp .55s cubic-bezier(.2, .9, .2, 1) both
}

.feature.is-visible {
    animation: fadeUp .45s cubic-bezier(.2, .9, .3, 1) both
}

.inv-head.is-visible {
    animation: fadeUp .55s cubic-bezier(.18, .8, .1, 1) both
}

/* float the image slightly and pause on hover */
.inv-card img {
    animation: floatLoop 6.2s ease-in-out infinite;
    transform-origin: center
}

.inv-card:hover img {
    animation-play-state: paused;
    transform: translateZ(0) scale(1.03)
}

/* subtle reflection under product image */
.inv-card::after {
    content: '';
    display: block;
    margin: -12px auto 0;
    width: 200px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
    filter: blur(6px);
    opacity: 0.7;
}

/* Automotive Batteries Section */
.automotive-batteries {
    padding: 48px 16px 84px;
    max-width: 1200px;
}

.automotive-batteries .auto-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.automotive-batteries .auto-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.automotive-batteries .auto-logo img {
    width: 72px;
    height: 72px;
    background: linear-gradient(180deg, #ff8a5a, #ff4b00);
    border-radius: 999px;
    padding: 14px;
}

.automotive-batteries h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 600;
    padding-left: 40px;
    color: #ff4b00;
}

.automotive-batteries .auto-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 14px 28px;
    align-items: center;
}

.automotive-batteries .auto-features .feature {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #444
}

.automotive-batteries .auto-features img {
    width: 28px;
    height: 28px
}

/* Carousel */
.auto-slider {
    position: relative;
    margin-top: 28px;
}

.auto-track-wrapper {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.auto-track {
    display: flex;
    gap: 32px;
    transition: transform .56s cubic-bezier(.22, .94, .3, 1);
    align-items: stretch;
    will-change: transform;
    transform: translateZ(0);
}

.battery-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    min-width: 260px;
    flex: 0 0 260px;
    text-align: center;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
}

.battery-card .battery-img {
    background: #f7f7f7;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 18px;
}

.battery-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.battery-card h3 {
    font-size: 22px;
    color: #202020;
    margin-bottom: 8px
}

.battery-card .muted {
    color: #666;
    font-size: 15px
}

.auto-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6500;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 101, 0, 0.12);
}

.auto-prev {
    left: -16px
}

.auto-next {
    right: -16px
}

@media (max-width: 1000px) {
    .automotive-batteries h2 {
        font-size: 34px
    }

    .auto-header {
        flex-direction: column;
        align-items: flex-start
    }

    .automotive-batteries .auto-features {
        grid-template-columns: 1fr 1fr;
    }

    .battery-card {
        min-width: 220px;
        flex: 0 0 220px
    }

    .auto-prev {
        left: 4px
    }

    .auto-next {
        right: 4px
    }
}

@media (max-width: 700px) {
    .auto-header {
        gap: 12px
    }

    .automotive-batteries .auto-features {
        grid-template-columns: 1fr
    }

    .battery-card {
        min-width: 86%;
        flex: 0 0 86%
    }
}

/* battery card interactions */
.battery-card {
    transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, opacity .3s;
}

.battery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.08);
}

.battery-card:focus {
    outline: 3px solid rgba(255, 102, 0, 0.12);
    outline-offset: 6px
}

.auto-arrow:focus {
    outline: 3px solid rgba(255, 160, 100, 0.24);
    outline-offset: 4px
}

.auto-prev,
.auto-next {
    z-index: 4
}

.auto-track {
    z-index: 2
}

/* Solar Solutions Section */
.solar-solutions {
    padding: 48px 16px 64px;
    max-width: 1200px;
    margin-top: -100px;
}

.solar-solutions .solar-title {
    display: flex;
    align-items: center;
    gap: 18px
}

.solar-solutions .solar-logo img {
    width: 72px;
    height: 72px;
    background: linear-gradient(180deg, #ff8a5a, #ff4b00);
    border-radius: 999px;
    padding: 12px
}

.solar-solutions h2 {
    font-size: 46px;
    margin: 30px;
    font-weight: 600;
    padding-left: 400px;
    color: #ff4b00;

}

.solar-solutions .solar-features {
    display: flex;
    gap: 24px;
    align-items: center
}

/* We've Got You Covered section */
.weve-covered {
    background: #ff6500;
    color: #fff;
    padding: 64px 0;
}

.weve-covered .covered-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
}

.weve-covered .covered-left {
    display: flex;
    justify-content: center;
    align-items: center
}

.weve-covered .covered-person {
    width: 320px;
    transform: translateY(6px);
    display: block;
    border-radius: 20px;
    /* padding-top: 50px; */
}

.weve-covered .covered-right {
    text-align: center
}

.weve-covered .covered-title {
    font-size: 56px;
    margin: 8px 0 12px;
    font-weight: 400;
    color: #fff
}

.weve-covered .covered-sub {
    max-width: 780px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.6
}

.weve-covered .covered-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap
}

.weve-covered .covered-card {
    width: 420px;
    min-height: 320px;
    border-radius: 22px;
    padding: 44px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.weve-covered .covered-card h3 {
    margin: 0;
    font-size: 22px
}

.weve-covered .covered-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 320px
}

.weve-covered .covered-card .covered-icon {
    font-size: 36px;
    display: inline-block;
    margin-bottom: 6px
}

.weve-covered .covered-card-dark {
    background: #362725;
    color: #fff
}

.weve-covered .covered-card-orange {
    background: rgba(0, 0, 0, 0.08);
    background: #b94118;
    color: #fff
}

.weve-covered .white-btn {
    background: #fff;
    color: #222;
    padding: 12px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700
}

@media (max-width: 1000px) {
    .weve-covered .covered-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .weve-covered .covered-left {
        order: 2;
        margin-top: 12px
    }

    .weve-covered .covered-right {
        order: 1
    }

    .weve-covered .covered-person {
        width: 260px
    }

    .weve-covered .covered-card {
        width: 100%;
        min-height: auto
    }
}

@media (max-width: 700px) {
    .weve-covered {
        padding: 48px 0
    }

    .weve-covered .covered-title {
        font-size: 30px
    }

    .weve-covered .covered-sub {
        font-size: 16px
    }
}

.solar-solutions .solar-features .feature img {
    width: 28px;
    height: 28px
}

.solar-solutions .solar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 28px
}

.solar-solutions .product-card {
    text-align: center
}

.solar-solutions .product-card img {
    height: 240px;
    object-fit: contain;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 8px
}

.solar-solutions .product-overlay {
    height: 80px
}

@media (max-width: 1000px) {
    .solar-solutions h2 {
        font-size: 34px
    }

    .solar-solutions .solar-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:700px) {
    .solar-solutions .solar-grid {
        grid-template-columns: 1fr
    }

    .solar-solutions .solar-logo img {
        width: 56px
    }

    .solar-solutions h2 {
        font-size: 28px
    }
}



/* product range section */

:root {
    --liv-red: #e11c2a;
    --dark: #0f172a;
    --gray: #64748b;
    --bg: #f8fafc;
}



.livfast-section1 {
    padding: 90px 6%;
    overflow: hidden;
}

.section-head1 {
    max-width: 720px;
    margin-bottom: 60px;
    animation: fadeUp .8s ease both;
    margin-left: 340px;
}

.section-head1 h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
    margin-left: 10px;
}

.section-head1 span {
    color: var(--liv-red)
}

.section-head1 p {
    color: var(--gray)
}

.card-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.product-card1 {
    position: relative;
    padding: 42px 32px;
    border-radius: 22px;
    background: #ece1e1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all .6s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    height: 400px;
}

.product-card1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(225, 28, 42, .08), transparent 70%);
    transform: translateX(-100%);
}

.product-card1:hover::before {
    animation: shine 1.2s ease;
}

.product-card1:hover {
    transform: translateY(-12px) scale(1.02);
}


.product-card1 h3 {
    font-size: 22px;
    margin: 26px 0 12px;
}

.product-card1 p {
    color: var(--gray);
    line-height: 1.6;
}

.product-card1 img {
    width: 80%;
    height: 240px;
    object-fit: cover;
    display: block;
    margin-left: 30px;
}


.badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(225, 28, 42, .1);
    color: var(--liv-red);
}

/* Accent glow */
.card-one {
    --glow: #ef4444
}

.card-two {
    --glow: #f97316
}

.card-three {
    --glow: #22c55e
}

.product-card1::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    opacity: .25;
}

/* Responsive tweaks */
@media(max-width:768px) {
    .livfast-section1 {
        padding: 70px 5%
    }

    .product-card1 {
        padding: 36px 26px
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes shine {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

:root {
    --liv-red: #ff6500;
    --dark: #0f172a;
    --gray: #64748b;
    --bg: #f8fafc;
}


.livfast-section1 {
    padding: 80px 6%;
}

.section-head1 {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-head1 h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-head1 span {
    color: var(--liv-red);
}

.section-head1 p {
    color: var(--gray);
}

.card-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card1 {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f1f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: .4s ease;
    overflow: hidden;
}

.product-card1::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    background: rgba(225, 28, 42, .08);
    border-radius: 50%;
}

.product-card1:hover {
    transform: translateY(-8px);
}

.product-card1 h3 {
    font-size: 22px;
    margin: 25px 0 12px;
}

.product-card1 p {
    color: var(--gray);
    line-height: 1.6;
}


.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(225, 28, 42, .1);
    color: var(--liv-red);
}

/* Unique card accents */
.card-one {
    border-left: 6px solid #ff6500
}

.card-two {
    border-left: 6px solid #ff6500
}

.card-three {
    border-left: 6px solid #ff6500
}

.product-card1:hover img {
    transform: scale(1.03);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1)
}


:root {
    --red: #ff6500;
    --dark: #000000;
    --gray: #666;
}


.livfast-features1 {
    padding: 80px 20px;
    margin-top: -60px;
}

.lf-container1 {
    max-width: 1200px;
    margin: auto;
}

.lf-heading1 {
    text-align: center;
    margin-bottom: 60px;
}

.lf-heading1 h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.lf-heading1 span {
    color: #ff6500;
}


.lf-heading1 p {
    color: #000000;
    max-width: 600px;
    margin: auto;
}

.lf-cards1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.lf-card1 {
    background: linear-gradient(145deg, #ffffff, #ffffff);
    border-radius: 18px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.lf-card1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(225, 6, 0, .15), transparent);
    transform: translateX(-100%);
    transition: .6s;
}

.lf-card1:hover::before {
    transform: translateX(100%);
}

.lf-card1:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(225, 6, 0, .25);
}

.lf-count1 {
    font-size: 48px;
    font-weight: 800;
    color: rgb(65, 32, 13);
    position: absolute;
    top: 15px;
    right: 20px;
}

.lf-card1 h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ff6500;
}

.lf-card1 p {
    color: #090909;
    font-size: 15px;
    line-height: 1.6;
}

/* Animation base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.zoom1 {
    transform: scale(.8);
}

.zoom.active {
    transform: scale(1);
}

.slide-left1 {
    transform: translateX(-60px);
}

.slide-right1 {
    transform: translateX(60px);
}

.slide-up1 {
    transform: translateY(60px);
}



.power-slider {
    padding: 90px 20px;
}

.slider-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
    height: 450px;
    margin-top: -120px;
}

.slider-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    margin-top: 30px;
    height: 400px;

}

.slider-card {
    min-width: 340px;
    background: #f4efef;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow:0 20px 40px rgba(0,0,0,.4); */
    transition: transform .4s ease;
}

.slider-card:hover {
    transform: translateY(-10px) scale(1.06);
    background-color: #ff6500;
}

.slider-card img {
    width: 80%;
    height: 240px;
    object-fit: cover;
    margin-left: 30px;
    margin-top: 30px;
}

.slider-card h3 {
    padding: 20px 20px 5px;
    font-size: 22px;
}

.slider-card p {
    padding: 0 20px 25px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

@media(max-width:768px) {
    .slider-title {
        font-size: 30px
    }
}




.vm-power-wrap {
    padding: 100px 20px;
}


.vm-viewport {
    max-width: 1300px;
    height: 420px;
    margin: auto;
    overflow: hidden;
    border-radius: 28px;
    background: rgb(241, 241, 241);
    /* box-shadow:0 30px 70px rgba(0,0,0,.6); */
    margin-top: -120px;
}

.vm-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
}

.vm-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px;
    background: rgb(241, 241, 241);
    border-radius: 22px;
    transition: all .45s ease;
}

/* UNIQUE HOVER: slide-in glow */
.vm-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: translateX(-100%);
    transition: .9s;
}

.vm-item:hover::after {
    transform: translateX(80%);
    background-color: #ff6500;
}

.vm-item:hover {
    transform: scale(1.04);
    /* background-color: #ff6500; */
}

.vm-item img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    margin-left: 50px;
}

.vm-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.vm-text p {
    font-size: 15px;
    color: #ff6500;
}

@media(max-width:768px) {
    .vm-viewport {
        height: 360px
    }

    .vm-item {
        gap: 20px
    }

    .vm-heading {
        font-size: 30px
    }
}



.unique-slider-wrap {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    margin-top: -120px;
}

.unique-slider-track {
    display: flex;
    width: max-content;
    animation: scrollX 28s linear infinite;
}

.unique-card {
    width: 320px;
    min-height: 220px;
    margin: 0 16px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.unique-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: #ff6500;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.unique-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    animation: floatImg 3s ease-in-out infinite;
}

.unique-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.unique-card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

@keyframes scrollX {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}




.bubble-cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background: #d5d8dc;
    /* dark background */
}

/* Bubble layer */
.bubble-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -120px;
    background: #ff6500;
    border-radius: 50%;
    animation: floatUp linear infinite;
}

/* Individual bubbles */
.bubble:nth-child(1) {
    left: 8%;
    width: 24px;
    height: 24px;
    animation-duration: 12s
}

.bubble:nth-child(2) {
    left: 18%;
    width: 40px;
    height: 40px;
    animation-duration: 18s
}

.bubble:nth-child(3) {
    left: 32%;
    width: 28px;
    height: 28px;
    animation-duration: 14s
}

.bubble:nth-child(4) {
    left: 48%;
    width: 56px;
    height: 56px;
    animation-duration: 22s
}

.bubble:nth-child(5) {
    left: 62%;
    width: 36px;
    height: 36px;
    animation-duration: 16s
}

.bubble:nth-child(6) {
    left: 76%;
    width: 60px;
    height: 60px;
    animation-duration: 24s
}

.bubble:nth-child(7) {
    left: 90%;
    width: 26px;
    height: 26px;
    animation-duration: 13s
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 0
    }

    10% {
        opacity: 0.6
    }

    100% {
        transform: translateY(-130vh) scale(1.2);
        opacity: 0
    }
}

/* Content */
.bubble-cta-container {
    position: relative;
    z-index: 2;
    /* ABOVE bubbles */
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.bubble-title {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ff6500;
}

.bubble-subtitle {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.6;
    color: #000000
}

.bubble-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px
}

.bubble-card {
    background: #f97b26;
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 42px 32px;
    transition: .4s ease;
}

.bubble-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px #2c2b2a;
}

.bubble-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.bubble-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bubble-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
    color: #000000
}

.bubble-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: #fff;
    color: #020617;
    font-weight: 700;
    text-decoration: none;
    transition: .3s
}

.bubble-btn:hover {
    background: #7b3b10;
    color: #000000
}

@media(max-width:768px) {
    .bubble-title {
        font-size: 32px
    }

    .bubble-subtitle {
        font-size: 16px
    }
}



.dg-footer {
  background: #0e0e0e;
  color: #fff;
  padding: 60px 20px 0;
}

.dg-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.dg-footer-logo {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ff6500;
}

.dg-footer-text {
  color: #ffffff;
  line-height: 1.6;
}

.dg-footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ff6500;
}

.dg-footer-col ul {
  list-style: none;
}

.dg-footer-col ul li {
  margin-bottom: 10px;
}

.dg-footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.dg-footer-col ul li a:hover {
  color: #ff6500;
}

.dg-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.dg-social a {
  width: 36px;
  height: 36px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dg-social a:hover {
  transform: translateY(-4px);
  background: #ffffff;
  color: #000;
}

.dg-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #ff6500;
}

/* Responsive */
@media (max-width: 600px) {
  .dg-footer {
    padding-top: 40px;
  }
}






.review-section {
    position: relative;
    padding: 90px 10%;
    overflow: hidden;
    background: #ffffff;
}

/* ANIMATED BACKGROUND */
.animated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        #000000,
        #ff6500,
        #000000,
        #ffffff
    );
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    z-index: 0;
}

/* subtle moving wave overlay */
.animated-bg::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    animation: waveMove 18s linear infinite;
}

/* CONTENT */
.review-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.review-left {
    flex: 1;
    color: #ff6500;
}

.review-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.review-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* RIGHT */
.review-right {
    flex: 1;
    overflow: hidden;
}

.review-slider {
    display: flex;
    transition: transform 0.6s ease;
}

.review-card {
    min-width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: #fff;
    animation: slideFade 0.6s ease;
}

.review-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: black;
}

.review-card h4 {
    font-size: 20px;
    color: black;
}

.review-card span {
    font-size: 14px;
    color: #000000;
}

/* ANIMATIONS */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes waveMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .review-container {
        flex-direction: column;
        text-align: center;
    }
}




/* SECTION */
.faq-section {
    position: relative;
    padding: 90px 10%;
    overflow: hidden;
}

/* ===== BACKGROUND LINES ===== */
.bg-lines {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            120deg,
            #ffb07b7c,
            rgba(0,0,0,0.04) 1px,
            transparent 1px,
            transparent 60px
        );
    animation: moveLines 20s linear infinite;
    z-index: 0;
}

/* Soft wave overlay */
.bg-lines::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0,0,0,0.05),
        transparent 65%
    );
    animation: waveMove 16s ease-in-out infinite;
}

/* CONTENT */
.faq-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.faq-left {
    flex: 1;
}

.faq-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #ff6500;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.faq-question:hover {
    color: #ff6500;
}
.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* RIGHT */
.faq-right {
    flex: 1;
    text-align: center;
}

.faq-right img {
    max-width: 100%;
    animation: floatImage 4s ease-in-out infinite;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* IMAGE FLOAT */
@keyframes floatImage {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

/* BACKGROUND ANIMATIONS */
@keyframes moveLines {
    from { background-position: 0 0; }
    to   { background-position: 400px 400px; }
}

@keyframes waveMove {
    0%   { transform: scale(1) translateX(0); }
    50%  { transform: scale(1.1) translateX(-40px); }
    100% { transform: scale(1) translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-title {
        text-align: center;
        font-size: 32px;
    }
}



/* NAV MENU */
.nav-menu {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-item {
  position: relative;
}

/* Dropdown base */
.flip-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: perspective(800px) rotateX(-90deg);
  transition: all 0.5s ease;
}

/* Items */
.flip-menu li {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.flip-menu li a {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
}

/* Stagger delay */
.flip-menu li:nth-child(1) { transition-delay: 0.1s; }
.flip-menu li:nth-child(2) { transition-delay: 0.2s; }
.flip-menu li:nth-child(3) { transition-delay: 0.3s; }

/* Hover */
.flip-dropdown:hover .flip-menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(800px) rotateX(0);
}

.flip-dropdown:hover .flip-menu li {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow rotate */
.dot {
  display: inline-block;
  transition: transform 0.4s ease;
}

.flip-dropdown:hover .dot {
  transform: rotate(180deg);
}




.home-inverters-section {
  padding: 80px 6%;
  background: #fff;
  font-family: Arial, sans-serif;
}

/* Heading */
.section-head {
  text-align: center;
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
}

.section-head h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ff6500;
}

.section-head .line {
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6a00;
  margin: 14px auto;
}

.section-head p {
  color: #000000;
  font-size: 16px;
}

/* Grid */
.inverter-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* Box */
.inverter-box {
  position: relative;
  background: rgba(245, 245, 245, 0.7);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.inverter-box:hover {
  transform: translateY(-8px);
}

/* Content */
.box-content h3 {
  font-size: 26px;
  color: #111;
}

.box-content span {
  display: block;
  margin: 6px 0 20px;
  color: #777;
}

/* Arrow button */
.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.arrow-btn:hover {
  transform: translateX(6px);
}

/* Image */
.box-image img {
  width: 180px;
  animation: floatImg 4s ease-in-out infinite;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImg {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 106, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .inverter-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}



.pfz-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
  margin-top: -100px;
 
}

.pfz-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgb(201, 201, 201) 1px, transparent 1px),
    radial-gradient(rgb(0, 0, 0) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  animation: bgMove 18s linear infinite;
}

@keyframes bgMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 400px 400px, -400px -400px;
  }
}

/* Energy Wave */
.pfz-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
    rgba(255,106,0,0.25) 0%,
    transparent 60%);
  animation: wavePulse 8s infinite ease-in-out;
}

@keyframes wavePulse {
  0% { transform: scale(0.2); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: scale(1); opacity: 0; }
}

.pfz-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  color: #ff6500;
}

.pfz-timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
  z-index: 2;
}

.pfz-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#000000, transparent);
  transform: translateX(-50%);
}


.pfz-item {
  width: 50%;
  padding: 30px 40px;
  position: relative;
}

.pfz-item.left { left: 0; }
.pfz-item.right { left: 50%; }

.pfz-item::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #ff6a00;
  border-radius: 50%;
  transform: translateY(-50%);
}

.pfz-item.left::before { right: -9px; }
.pfz-item.right::before { left: -9px; }


.pfz-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  padding: 32px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.pfz-item:nth-child(even) .pfz-card {
  animation-delay: 2s;
}

@keyframes floatCard {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(0.8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Glow Border */
.pfz-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, #ff6a00, transparent);
  animation: glowMove 3s linear infinite;
  opacity: 0.7;
}

@keyframes glowMove {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* Icon */
.pfz-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff6a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  animation: iconPulse 1.8s infinite;
}

@keyframes iconPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,106,0,0.8); }
  70% { box-shadow: 0 0 0 18px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}

/* Text */
.pfz-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pfz-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

/* Hover */
.pfz-card:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 40px 80px rgba(255,106,0,0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .pfz-item,
  .pfz-item.right {
    width: 100%;
    left: 0;
  }

  .pfz-timeline::before {
    left: 20px;
  }

  .pfz-item::before {
    left: 12px;
  }
}



.cta-wave-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: #ff6a00;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 50px;
}


.grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.416) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.212) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridZoom 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes gridZoom {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}


.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


.cta-text {
  color: #fff;
  animation: fadeLeft 1s ease forwards;
}

.cta-text h2 {
  font-size: 46px;
  line-height: 1.2;
}

.cta-text h2 span {
  font-weight: bold;
}

.cta-text p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
}


.cta-form-card {
  background: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  animation: fadeUp 1.2s ease forwards;
}

.cta-form-card h3 {
  margin-bottom: 28px;
  font-size: 22px;
  text-align: center;
}


.cta-form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form-card input {
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

.cta-form-card button {
  margin-top: 16px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #ff6a00;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-form-card button:hover {
  transform: scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-text p {
    margin: auto;
  }
}





.content-highlight-section {
  padding: 80px 20px;
  background: #ffffff;
}


.content-box {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding-left: 50px;
}


.accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ff6a00;
}

.content-box h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #222;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.content-box h2 span {
  font-weight: bold;
}

.content-box h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ff6a00;
}


.main-text,
.extra-text p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 900px;
}


.read-more-btn,
.read-less-btn {
  margin-top: 30px;
  padding: 14px 32px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover,
.read-less-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(255,106,0,0,0.4);
}


.extra-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.6s ease;
}

.extra-text.active {
  max-height: 500px;
  opacity: 1;
}


@media (max-width: 768px) {
  .content-box {
    padding-left: 30px;
  }

  .content-box h2 {
    font-size: 28px;
  }
}


.hc-filter-section {
  padding: 80px 10%;
  background: #f8f8f8;
}

.hc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.hc-head h2 {
  font-size: 34px;
}

.hc-switch {
  background: #fff;
  padding: 6px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hc-btn {
  border: none;
  padding: 10px 25px;
  background: transparent;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 500;
}

.hc-btn.active {
  background: #ff6a00;
  color: #fff;
}

/* PRODUCTS */
.hc-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 35px;
}

.hc-product {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  text-align: center;
  animation: fadeScale 0.5s ease;
  position: relative;
}

.hc-product::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(255,120,0,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

.hc-product:hover::after {
  opacity: 1;
}

.hc-product img {
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hc-product button {
  margin-top: 15px;
  background: #ff6a00;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hc-filter-section {
  position: relative;
  overflow: hidden;
}

.hc-filter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,106,0,0.08) 0px,
      rgba(255,106,0,0.08) 1px,
      transparent 1px,
      transparent 60px
    );
  animation: powerMove 18s linear infinite;
  z-index: 0;
}

@keyframes powerMove {
  from { background-position: 0 0; }
  to { background-position: 800px 800px; }
}


.hc-filter-section * {
  position: relative;
  z-index: 1;
}


.hc-product {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 800px;
  overflow: hidden;
}

.hc-product:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 35px 60px rgba(0,0,0,0.18);
}

/* Image float */
.hc-product img {
  transition: transform 0.4s ease;
}

.hc-product:hover img {
  transform: translateY(-10px) scale(1.05);
}

/* Energy border */
.hc-product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, transparent, #ff6a00, transparent) border-box;
  opacity: 0;
  animation: borderRun 1.2s linear;
}

.hc-product:hover::before {
  opacity: 1;
}

@keyframes borderRun {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

/* Button micro interaction */
.hc-product button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-product button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255,106,0,0.4);
}


.rail2-solar-wrap {
  padding: 100px 0;
  background: #abaaaa2d;
  overflow: hidden;
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 50px;
  margin-bottom: 50px;
}


.rail2-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
}

.rail2-title span {
  color: #ff6a00;
}

/* Container */
.rail2-container {
  width: 100%;
}

/* Line */
.rail2-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  border-top: 2px solid rgba(255,106,0,0.25);
  border-bottom: 2px solid rgba(255,106,0,0.25);
  overflow: hidden;
}

/* Moving energy */
.rail2-energy {
  position: absolute;
  top: 50%;
  left: -200px;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6a00, transparent);
  animation: rail2Move 3.5s linear infinite;
}

@keyframes rail2Move {
  from { left: -200px; }
  to { left: 100%; }
}

/* Boxes */
.rail2-box {
  width: 42%;
  padding: 25px 30px;
  background: rgb(0 0 0 / 10%);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(185, 120, 100, 0.205);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.rail2-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(244, 107, 22, 0.475);
}

.rail2-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff6500;
}

.rail2-box p {
  font-size: 15px;
  color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .rail2-line {
    flex-direction: column;
    gap: 30px;
    padding: 40px 6%;
  }

  .rail2-box {
    width: 100%;
  }
}
/* lithium section */

.alpha-dt-wrap {
  position: relative;
  padding: 120px 8%;
  background: #0b0b0b;
  overflow: hidden;
}

/* Animated background waves */
.alpha-dt-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,98,0,.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,98,0,.15), transparent 45%);
  animation: alphaBgMove 8s linear infinite alternate;
  z-index: 0;
}

@keyframes alphaBgMove {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.alpha-dt-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
  margin-top: -130px;
}

/* Content */
.alpha-dt-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.alpha-dt-desc {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Feature Cards */
.alpha-dt-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.alpha-dt-feature {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,98,0,0.25);
  backdrop-filter: blur(8px);
  transition: .4s ease;
}

.alpha-dt-feature:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255,98,0,.25);
}

.alpha-icon {
  font-size: 26px;
  color: #ff6200;
}

.alpha-dt-feature h4 {
  color: #fff;
  margin-bottom: 3px;
}

.alpha-dt-feature p {
  color: #bbb;
  font-size: 14px;
}

/* Button */
.alpha-dt-btn {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #ff7a18, #ff4b00);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: .4s;
}

.alpha-dt-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255,98,0,.4);
}

/* Product Visual */
.alpha-dt-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alpha-dt-visual img {
    width: 60%;

}
.alpha-dt-product {
  max-width: 100%;
  position: relative;
  z-index: 2;
  transition: transform .6s ease;
}

/* Floating Orbit Ring */
.alpha-dt-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px dashed rgba(255,98,0,.5);
  animation: alphaRotate 14s linear infinite;
  z-index: 1;
}


@keyframes alphaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hover Parallax */
.alpha-dt-visual:hover .alpha-dt-product {
  transform: translateY(-14px) scale(1.05);
}

/* Responsive */
@media(max-width: 900px){
  .alpha-dt-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .alpha-dt-features{
    grid-template-columns: 1fr;
  }

  .alpha-dt-desc{
    margin: 0 auto 40px;
  }
}


.psp-section {
  position: relative;
  padding: 120px 6%;
  background: #ffffff;
  color: #222;
  overflow: hidden;
}

/* Title */
.psp-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  color: #ff611d;
  margin-top: -120px;
}

/* Particle Background */
.psp-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.psp-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(255, 119, 0);
  border-radius: 50%;
  filter: blur(1px);
  animation: pspFloat 14s linear infinite;
}

.psp-particles span:nth-child(1){left:5%;animation-delay:0s}
.psp-particles span:nth-child(2){left:15%;animation-delay:2s}
.psp-particles span:nth-child(3){left:25%;animation-delay:4s}
.psp-particles span:nth-child(4){left:40%;animation-delay:6s}
.psp-particles span:nth-child(5){left:55%;animation-delay:8s}
.psp-particles span:nth-child(6){left:65%;animation-delay:10s}
.psp-particles span:nth-child(7){left:75%;animation-delay:12s}
.psp-particles span:nth-child(8){left:85%;animation-delay:14s}
.psp-particles span:nth-child(9){left:95%;animation-delay:16s}

@keyframes pspFloat {
  0% { transform: translateY(120vh) scale(.6); opacity: 0; }
  20% { opacity: .5; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* Switch */
.psp-switch {
  position: relative;
  width: 360px;
  margin: 0 auto 70px;
  display: flex;
  background: #f2f2f2;
  border-radius: 40px;
  padding: 6px;
  z-index: 2;
}

.psp-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  color: #555;
}

.psp-tab.active {
  color: #ff7a18;
  font-weight: 600;
}

/* Sliding Indicator */
.psp-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 47%;
  height: calc(100% - 12px);
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .4s ease;
}

/* Content */
.psp-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.psp-panel {
  display: none;
  animation: pspFade .6s ease forwards;
}

.psp-panel.active {
  display: block;
}

@keyframes pspFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Grid */
.psp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 40px;
}

.psp-item {
  background: #fafafa;
  padding: 14px 18px;
  border-left: 3px solid #ff7a18;
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
  transition: transform .3s ease, background .3s ease;
}

.psp-item:hover {
  /*background: rgba(255,140,40,0.1);*/
  transform: translateX(6px);
}

.psp-item p { opacity: .7; }
.psp-item b { color: #ff7a18; }

/* Responsive */
@media (max-width: 900px) {
  .psp-grid {
    grid-template-columns: 1fr;
  }

  .psp-switch {
    width: 280px;
  }
}


.pd-alt-section {
  position: relative;
  padding: 120px 6%;
  background: #050505;
  overflow: hidden;
}

/* Gradient animated background */
.pd-anim-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a0a0a, #0f0f0f, #1a0a02, #0a0a0a);
  background-size: 300% 300%;
  animation: pdGradientMove 10s ease infinite;
  z-index: 0;
}

/* Floating dots */
.pd-floating-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,140,0,.3) 2px, transparent 3px),
    radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 2px);
  background-size: 80px 80px, 50px 50px;
  animation: pdDotsMove 18s linear infinite;
  z-index: 0;
}

.pd-alt-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  z-index: 1;
}

/* Glass Content Box */
.pd-alt-content {
  background: rgb(255 255 255 / 21%);
  border: 1px solid rgba(255, 255, 255, 0.208);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 22px;
  animation: pdFadeUp 1.2s ease forwards;
}

.pd-alt-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.pd-alt-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #d5d5d5;
  margin-bottom: 18px;
}

.pd-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pd-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,140,0,.35);
}

/* Product Image */
.pd-alt-image {
  position: relative;
  text-align: center;
  animation: pdFloat 4s ease-in-out infinite;
}

.pd-alt-image img {
  max-width: 100%;
  filter: drop-shadow(0 25px 40px rgba(255,140,0,.35));
}

/* Animations */
@keyframes pdGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pdDotsMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 300px 300px, 200px 200px; }
}

@keyframes pdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pdFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 900px){
  .pd-alt-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pd-alt-content {
    padding: 35px 25px;
  }
}
