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



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

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

:root {
    --color-primary: #E21E31;
    --color-secondary: #000000;
    --color-accent: #CFCAC2;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-grey: #1A1A1A;
    --color-text-main: #000000;
    --color-text-muted: #666666;
    --color-bg-light: #F9F9F9;
    --color-bg-card: #F4F4F4;
    --color-border-light: #EEEEEE;
    --container-wide-width: 1440px;
    --section-gap: 120px;
    --font-primary: "Google Sans", sans-serif;

    /* --- Transitions --- */
    --transition-standard: all 0.3s ease;
    --transition-fast: all 0.2s ease;

}

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

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

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

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

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

p {
    margin-bottom: 0;
}

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

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


@media screen and (max-width: 1440px) {
    .mg-container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1024px) {
    .mg-container {
        padding: 0 20px;
    }
}


/* ----Common Grid---- */
.grid {
    display: grid;
    gap: 20px;
}

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

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

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

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

@media (min-width: 768px) {
    .tab-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .desktop-grid-cols-1 {
        grid-template-columns: 1fr;
    }

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

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

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

/* Header CSS */
/* ===============================
   HEADER WRAPPER (ZOOX STYLE)
================================ */


#main-header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    background: transparent;
    transition: background .45s ease, backdrop-filter .45s ease;
}



#main-header.is-scrolled .logo svg.site-logo path {
    fill: #e21e31;
}

#main-header .mg-container {
    transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 1840px;
    padding: 0 20px;
    /* border-radius: 8px;
    top: 10px; */
    position: relative;
}

#main-header.is-scrolled.is-collapsed {
    background: transparent;
}

#main-header.is-scrolled .mg-container {
    width: 98%;
}


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


.is-collapsed .header-wrap .header-cta-block {
    display: none;
}

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

#main-header.header a.scrolled-logo-link {
    display: none;
}

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

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


#main-header .after-icon svg path,
#main-header.is-scrolled .after-icon svg path {
    stroke: #000000;
}

/* ===============================
   LAYOUT
================================ */


#main-header .header-wrap {
    display: flex;
    /* flex-wrap: wrap;
    min-height: 90px; */
    transition: min-height .35s ease;
}


/* #main-header.is-scrolled .header-wrap {
    min-height: 70px;
} */

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

#main-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

/* ===============================
   HEADER COLUMNS
================================ */
#main-header .item-left {
    flex: 0 0 17%;
}

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

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

/* ===============================
   LOGO SWAP (ZOOX)
================================ */
#main-header .logo {
    opacity: 1;
    transition: opacity .3s ease, transform .3s ease;
}

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

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

#main-header .onscroll-logo {
    position: absolute;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease, transform .3s ease;
}



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

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

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

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

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

#main-header .menu>ul>li>a {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
    transition: color .3s ease;
}

#main-header .menu>ul>li>a {
    display: flex;
    align-items: center;
}

.after-icon {
    display: flex;
}

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

/* .menu-main>li:has(.mega-menu)>a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background-image: url('/wp-content/themes/electras-child/assets/images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
} */
.has-mega-menu {
    display: none !important;
}

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


.mega-menu-heading {
    color: var(--Black, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

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

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

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

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

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

.mega-item {
    background: #F4F4F4;
}

.mega-img {
    display: flex;
}

/* ===============================
   SUB MENU / MEGA MENU
================================ */
#main-header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background: #fff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, .3);
    padding: 20px 30px;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

@media(min-width:992px) {
    #main-header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .header-logo {
        flex: 1 0 0;
    }

    .header-cta-block {
        flex: 1 0 0;
        justify-content: flex-end;
        display: flex;
    }

    .header-menu {
        flex: 1 0 0;
    }

    .header-menu.desktop-hide-nav {
        display: none;
    }

    li.hide_mega_menu {
        display: none !important;
    }

    #main-header .sub-menu .mg-container {
        max-width: 1200px;
    }

    #main-header .menu-item:hover .after-icon {
        transform: rotate(180deg);
    }

    #main-header.is-scrolled {
        background: transparent;
        border-bottom: none;
    }

    #main-header>.mg-container.mega-open,
    #main-header.is-scrolled>.mg-container {
        background: rgb(255 255 255 / 60%);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.87);
        border-radius: 12px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    #main-header.is-scrolled>.mg-container.mega-open {
        border-radius: 12px 12px 0 0;
        backdrop-filter: blur(0);
        background: rgb(255, 255, 255);
        border-bottom: none;
    }

    #main-header>.mg-container.mega-open {
        border-radius: 12px 12px 0 0;
        backdrop-filter: blur(0);
        background: rgb(255, 255, 255);
    }

    #main-header.is-scrolled.is-collapsed .mg-container .header-menu,
    #main-header.is-scrolled.is-collapsed .mg-container .header-cta-block {
        opacity: 0;
        width: 0;
        margin: 0;
        padding: 0;
        pointer-events: none;
        height: 46px;
        display: none;
    }

    .main-navigation {
        position: relative;
    }

    .inside-header {
        overflow: visible !important;
    }

    .menu-item {
        position: static;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 99999;
        display: none;
    }

    .menu-item:hover>.mega-menu {
        display: block;
    }

    #main-header .menu>ul>li.menu-item.mega-active:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
        background: rgb(255, 255, 255);
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-top: 0;
        border-radius: 0 0 12px 12px;
        /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); */
    }

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

    #main-header .mb-hd-cta {
        display: none !important;
    }
}

#main-header .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

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

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

/* ===============================
   HOVER COLORS
================================ */
#main-header .menu a:hover,
#main-header .item-right a:hover {
    color: #ea4636;
}

/* ===============================
   MOBILE MENU
================================ */
#main-header .mobile-menu-head,
#main-header .mobile-menu-trigger {
    display: none;
}

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

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



@media screen and (min-width: 991px) {


    .home #main-header .menu>ul>li>a {
        color: #ffffff;
    }

    .home #main-header .after-icon svg path {
        stroke: #ffffff;
    }

    .home #main-header .mega-open .menu>ul>li>a {
        color: #000000;
    }

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

    .home #main-header .mega-open .after-icon svg path {
        stroke: #000000;
    }

    .home #main-header.is-scrolled .after-icon svg path {
        stroke: #000000;
    }

    .home #main-header.is-scrolled .mobile-menu-icon svg {
        background: #ffffff6e;
    }
}

@media(max-width:991px) {
    .header-cta {
        display: none;
    }

    .header-menu.mobile-hide-nav {
        display: none;
    }

    .mega-menu-dropdown {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        padding-bottom: 40px;
    }

    #main-header .menu .header-cta-mb.menu-item a {
        background-color: var(--color-primary);
        color: var(--color-white);
        padding: 9px 24px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        height: 42px;
        width: 100%;
        justify-content: center;
    }

    #main-header .menu>ul>li.header-cta-mb {
        padding: 40px 12px;
        border-bottom: none;
    }

    #main-header .menu>ul>li.header-cta-mb>a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    /* Arrow Icon */
    #main-header .menu>ul>li.header-cta-mb>a::after {
        content: "";
        width: 24px;
        height: 24px;
        display: inline-block;
        background-repeat: no-repeat;
        background-size: contain;
        margin-left: 0;

        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M18 8L22 12L18 16' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/><path d='M2 12H22' stroke='white' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    }

    .mobile-menu-icon svg {
        border-radius: 6px;
        border: 1px solid rgb(145 145 143 / 20%);
        box-shadow: inset 0px 2px 30px 0px rgb(255 255 255 / 30%);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
    }

    #main-header.is-scrolled.is-collapsed svg {
        border: none;
        background: transparent;
        padding: 0;
        width: 26px;
        height: 26px;
        box-shadow: none;
    }

    #main-header.is-scrolled.is-collapsed .mobile-menu-trigger {
        margin-right: 8px;
    }

    .header .menu>ul>li>a .after-icon svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-close {
        height: 50px;
        width: 50px;
        /* border-left: 1px solid rgba(0, 0, 0, 0.1); */
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    #main-header .mg-container {
        padding: 20px 20px;
        position: relative;
    }

    .header-logo .logo .site-logo {
        max-width: 190px;
    }

    #main-header.is-scrolled.is-collapsed .mg-container {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        max-width: max-content;
        border-radius: 8px;
        top: 10px;
        position: relative;
        width: 100%;
        padding: 10px 12px;
        align-items: center;
    }

    #main-header.is-scrolled.is-collapsed .site-logo {
        max-width: 130px;
        height: 24px;
    }

    #main-header.is-scrolled.is-collapsed .mobile-menu-icon svg path {
        stroke: #ffffff;
    }

    #main-header.is-scrolled.is-collapsed .header-cta-block {
        position: unset;
        display: block;
    }

    /* .header-cta-block {
        display: none;
    } */

    #main-header.is-scrolled.is-collapsed .header-wrap {
        flex-direction: row-reverse;
    }

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

    .header-cta-block {
        position: absolute;
        left: 20px;
    }

    #main-header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    #main-header .item-left,
    #main-header .item-right {
        flex: auto;
    }

    #main-header .v-center {
        justify-content: center;
    }

    #main-header .mobile-menu-trigger {
        display: flex;
        width: 30px;
        height: 30px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    #main-header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 550px;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        transition: .4s ease;
        z-index: 1099;
        overflow: hidden;

    }

    #main-header .menu.active {
        transform: translateX(0);
    }

    #main-header .menu>ul>li {
        display: block;
        margin: 0;
        border-bottom: 1px solid var(--Warm-Grey, #cfcac280);
        padding: 12px 0;
    }

    #main-header .menu>ul>li>a {
        display: block;
        height: 50px;
        line-height: 50px;
        padding: 0 50px 0 15px;
        /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
        color: #000;
    }

    #main-header .menu .mobile-menu-head {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 501;
    }

    #main-header .menu .mobile-menu-head .go-back {
        visibility: hidden;
        opacity: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        cursor: pointer;
        font-size: 24px;
    }

    #main-header .menu .mobile-menu-head.active .go-back {
        visibility: visible;
        opacity: 1;
    }

    #main-header .menu .menu-main {
        height: 100%;
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }

    .current-menu-title {
        color: var(--Black, #000);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    /* #main-header .menu>ul>li .sub-menu {
        position: absolute;
        inset: 0;
        padding: 65px 15px 15px;
        background: #fff;
        display: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    } */



    #main-header.header .menu>ul>li .sub-menu.mega-menu,
    #main-header.header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    #main-header.header .menu>ul>li .sub-menu.active {
        display: block;
    }

    #main-header.header .menu>ul>li .sub-menu.active .mg-container {
        background: #ffffff;
    }

    .current-menu-title a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .current-menu-title a.site-logo-link .site-logo path {
        fill: red;
    }

    .current-menu-title a.site-logo-link .site-logo {
        width: 150px;
    }

    #main-header.is-scrolled.is-collapsed .mobile-menu-head .current-menu-title a.site-logo-link {
        display: flex;
    }

    #main-header.is-scrolled.is-collapsed .mobile-menu-head .current-menu-title a.site-logo-link svg.site-logo {
        max-width: 130px;
        height: auto;
        width: 100%;
    }

    .header .menu>ul>li>a {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
        position: relative;
        text-transform: capitalize;
        transition: color 0.3s ease;
    }

    .header .menu>ul>li>a .after-icon {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .menu>ul>li>a .after-icon svg path {
        stroke: #000000;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

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

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* ===============================
   MENU OVERLAY
================================ */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 998;
}

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









/* Hero Section */


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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

button {
    cursor: pointer;
}

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

}

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

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

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


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

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

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

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

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

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

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

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

/* Category Cards */

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

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

.energy_section {
    padding-top: 104px;
}


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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

.child-inner-description {
    color: var(--Black, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
    display: inline-flex;

    line-height: 140%;
}

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


.badge {
    display: flex;
    /* min-width: 104px; */
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: var(--Black, #000000);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: var(--White, #FFF);
    border-radius: 50px;
}

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   Reliability Section
   ========================================================================== */
.reliability-section {
    padding: 64px 40px;
}


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

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

/* ------ Newsroom------ */
.newsroom {
    padding: 64px 40px;
    overflow: hidden;

}

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

.news-card-content {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    /* row-gap: 56px; */
    flex-shrink: 0;
    align-self: stretch;
    /* background: #ffffff; */
    width: 100%;
    /* width: calc(100% - 24px); */
    margin: 0 auto;
    display: flex;
    /* position: absolute; */
    bottom: 12px;
    left: 12px;
    /* max-height: 175px; */
    /* height: 100%; */
    min-height: 10rem;
}

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

/* .news-title-text:hover:not(.mdal-popup-landing .news-title-text) {
    cursor: pointer;
    color: var(--color-primary);
} */

.news-date {
    color: var(--Black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.news-separator {
    color: var(--Black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.news-read-time {
    color: var(--Black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

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

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

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

}

.arrow-icon {
    display: flex;
}

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

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

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

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

/* .news-card:hover .news-bg-img {
    transform: scale(1.05);
} */

.news-slider {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

/* FIX SWIPER WIDTH CALCULATION */



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

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

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

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

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

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

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

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

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





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

.news-slider {
    width: 100%;
}

/* 
.swiper-wrapper {
    display: flex;
    align-items: flex-start;

} */

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

.news-card {
    background: #F4F4F4;
    overflow: hidden;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    /* gap: 8px; */
}

/* ===== Desktop Static Grid Mode (when posts <= 4) ===== */
/* On desktop (1024px+), show as grid. On mobile, keep swiper behavior */
@media (min-width: 1024px) {
    .desktop-static-grid .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        transform: none !important;
        transition-property: none !important;
    }

    .desktop-static-grid .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .desktop-hide {
        display: none !important;
    }

    /* Adjust grid columns based on post count on desktop */
    .desktop-static-grid .swiper-wrapper:has(.swiper-slide:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }

    .desktop-static-grid .swiper-wrapper:has(.swiper-slide:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }

    .desktop-static-grid .swiper-wrapper:has(.swiper-slide:nth-child(1):last-child) {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    .desktop-static-grid .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1400px) {
    .desktop-static-grid .swiper-wrapper {
        gap: clamp(1.5rem, 2.2vw, 2.5rem);
    }
}

@media (min-width: 1580px) {
    /* .news-title-text {
        font-size: 16px;
    } */

    .news-card-content {
        min-height: 9rem;
    }
}

/* ===== End Desktop Static Grid Mode ===== */


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

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

/* Counter Section*/
.about {
    padding-top: 104px;
}

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

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

}

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

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

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

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

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

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

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

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

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


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



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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .values-title-group {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .about-values {
        padding-inline: 0;
    }

    .values-item {
        flex-direction: column;
        gap: 10px;
        padding: 24px 0;
    }

    .values-index {
        display: none;
    }

    .values-title-group {
        flex: none;
        width: 100%;
        gap: 8px;
    }

    .values-inner-desc {
        padding-left: 0;
    }

    .values-list-wrapper {
        gap: 0 !important;
    }

}

@media (max-width: 768px) {
    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .news-header {
        margin-bottom: 48px;
    }
}


/* Promo Banner */
.promo-banner {
    padding: 20px 40px 80px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-logo a {
    display: flex;
}

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

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

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

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

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

}

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

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

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

.footer-col li.menu-item a:hover {
    color: var(--Red, #E21E31);

}



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

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

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

    margin-bottom: 0;
}

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

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

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


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

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

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

.footer-separator {
    display: none;
}

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


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

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

.address {
    max-width: 290px;
}

/* modal css */

/* modal css */

/* ===== MODAL ROOT ===== */
.cf7-popup.mdal-popup-landing {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

/* ===== ACTIVE STATE ===== */
.cf7-popup.mdal-popup-landing.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

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

/* ===== MODAL CONTENT ===== */
.cf7-popup.mdal-popup-landing .cf7-popup-content {
    position: relative;
    max-width: 760px;
    width: calc(100% - 24px);
    padding: clamp(32px, 3.75vw, 40px) clamp(24px, 2.75vw, 30px);
    border-radius: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);

    transform: translateY(40px) scale(0.96);
    opacity: 0;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
}

.cf7-popup.mdal-popup-landing .cf7-popup-content .cf7-popup-body {
    max-height: calc(100vh - 12rem);
    overflow-y: auto;
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

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

.cf7-popup.mdal-popup-landing .early-access-textarea:focus {
    outline: none;
    color: #ffffff;

}

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

.overflow_hidden {
    overflow: hidden;
}

.cf-form-title {
    font-size: clamp(24px, 2.75vw, 28px);
    margin-bottom: clamp(24px, 3.75vw, 40px);
    color: #ffffff;
    font-family: "Google Sans";
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

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

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

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

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

/* ===== POPUP: NEWS CONTENT ===== */
.mdal-popup-landing .popup-inner-content .news-card {
    border-radius: 1rem;
    background: transparent;
    gap: 0;
}

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

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




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

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


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

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

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

/* Chrome / Edge / Safari */
.early-access-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    transition: background-color 9999s ease-in-out 0s;
}

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

/* Select field base */
.early-access-input,
.wpcf7-form select {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Dropdown options */
.wpcf7-form select option {
    background-color: #0f1115;
    /* dark background */
    color: #ffffff;
}

/* Hover / selected option */
.wpcf7-form select option:checked,
.wpcf7-form select option:hover {
    background-color: #1a1d23;
    color: #000000;
}



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

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

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


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

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

/* Chrome / Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    transition: background-color 9999s ease-in-out 0s;
}

.dd-field {
    position: relative;
}

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

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


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

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

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


.wpcf7-spinner {
    display: none;
}

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

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

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

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

.wpcf7 form {
    position: relative;
}

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

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

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

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

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

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

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

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

/* Success State */

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

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

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

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

.mobile-cta {
    display: none;
}

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

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

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

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

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


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

@media (hover: hover) and (min-width: 300px) {
    .image-btn-cta:hover {
        transform: translateY(-2px);
        background: #cc1829;
        color: #ffffff;
        box-shadow: 0 10px 20px rgba(204, 24, 41, 0.2);
    }

    .image-btn-cta:hover svg {
        transform: translateX(4px);
    }
}

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

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

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

/* Responsive Design */
@media screen and (max-width: 1280px) {

    .showcase-section,
    .reliability-section,
    .newsroom {
        padding: 32px 0;
    }

    .about {
        padding-top: 80px;
    }



    .energy_section {
        padding-top: 80px;
    }

    .stat-item {
        padding-left: 24px;
        padding-right: 24px;
    }

    .promo-text {
        padding: 40px 40px;
    }

    footer {
        padding: 64px 0 40px;
    }

    .showcase-image-wrapper {
        margin-top: 48px;
        min-height: 575px;
    }

    .showcase-card {
        padding: 24px;
    }

    .toggle-group {
        margin-top: 32px;
    }

    .reliability-section .reliability-video video {
        min-height: 475px;
    }

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

    .swiper-slide {
        padding-right: 24px;
    }

    .category-card .card-content {
        padding: 32px 20px;
    }

    .category-card .card-features {
        gap: 24px;
        padding-top: 2rem;

    }

}

@media (max-width: 991px) {

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

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

    .showcase-image-wrapper {
        max-height: 575px;
    }

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

    /* Adjust promo for tablet */
    .promo-container {
        min-height: auto;
    }

    .promo-image-container {
        position: relative;
        width: 50%;
        right: 0;
        top: 0;
        transform: none;
        height: auto;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

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

    .category-card {
        background: transparent;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 180px;
    }

    .toggle-group .toggle-item {
        font-size: 14px;
        padding: 12px 30px;
    }

    .card-content {
        flex-direction: column;
        gap: 20px;
    }

    .card-features {
        grid-template-columns: 1fr;
    }

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

    .promo-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
        align-items: flex-start;
        background-position: right bottom;
        min-height: 720px;
    }

    .promo-text {
        width: 100%;
        padding: 40px 24px;
    }

    .call_to_action {
        margin-top: 40px;
        transition: all 0.3s ease;
    }

    .promo-image-container {
        width: 100%;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        height: auto;
        justify-content: center;
        order: 2;
        min-height: 250px;
    }

    .promo-img {
        max-height: 300px;
        width: 100%;
        /* opacity: 0.2; */
    }

    /* .news-card-content {
        row-gap: 34px;
    } */

    .card-text {
        max-width: 100%;
    }

    .btn-red {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .card-image {
        aspect-ratio: 1 / 1;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid #eaeaea;
        padding-left: 0;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid #eaeaea;
    }

    .stats-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
    }

    .stat-item {
        padding: 16px 12px 16px 32px;
    }

    .slider-arrow-container {
        display: none;
    }

    section.news-featured-image {
        padding: 0;
    }

}

@media screen and (max-width: 480px) {

    .toggle-group .toggle-item.active {
        font-size: 13px;
    }

    .toggle-group .toggle-item {
        font-size: 12px;
        padding: clamp(10px, 2.75vw, 12px) clamp(6px, 2vw, 20px);
        min-width: clamp(90px, 27vw, 150px);
    }

    .cf7-popup.mdal-popup-landing .early-access-row {
        flex-direction: column;
    }

    .cf7-popup.mdal-popup-landing .cf7-popup-content {
        padding: 40px 16px;
    }

    .cf7-popup.mdal-popup-landing .early-access-field .early-access-input {

        height: 48px;

    }

    .cf7-popup.mdal-popup-landing .early-access-action .early-access-btn {
        height: 48px;
        max-width: 100%;
    }

    .swiper-slide {
        padding-right: 20px;
    }

    .card-btn-wrapper.mobile-cta {
        width: 100%;
    }

    .call_to_action,
    .btn {
        width: 100%;
    }

    .footer-text {
        font-weight: 400;
        max-width: 250px;
        display: block;
    }

    .image-btn-cta {
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1200px) {
    .journey-form-section {
        padding: 80px 0 0;
    }
}

@media (max-width: 991px) {
    .journey-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .journey-content-wrapper form {
        width: 100%;
    }

    .journey-form-section {
        padding: 80px 0 40px;
    }

    .journey-left {
        max-width: 100%;
        width: 100%;
    }

    .journey-right {
        width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }

    .form-group-journey {
        flex: 1;
        min-width: 250px;
    }

    .submit-wrapper {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .journey-right {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }

    .journey-submit-btn {
        justify-content: center;
        width: 100%;
        height: 48px;
    }
}

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

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

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    /* Set a wider fixed width or min-width for the dropdown menu */
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 0;
    margin-top: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

/* Open state */
.custom-journey-select.open .select-options {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

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

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

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

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

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

/* Ensure dropdown width on mobile if needed */
@media (max-width: 991px) {
    .select-options {
        width: 100%;
        min-width: 200px;
    }
}

/* Progress Bar Styles for Storage Tabs */
.toggle-item {
    position: relative;
    overflow: hidden;
}

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

/* =========================================
   Mobile Accordion Features (Energy Section)
   ========================================= */
.mobile-feature-accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

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

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

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

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

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

/* Plus Icon lines */
.acc-icon::before,
.acc-icon::after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: transform 0.3s ease;
}

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

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

/* Active State: Minus Icon */
.accordion-item.active .acc-icon::after {
    transform: rotate(90deg);
}

/* Body Animation */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    margin-bottom: 24px;
}

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

/* Responsive Visibility Helpers */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-feature-grid {
        display: none;
    }

    .card-mobile-header {
        /* padding: 30px 20px 0; */
        margin-bottom: 32px;
    }

    .category-card .card-content {
        padding: 0;
    }

    .card-mobile-header .card-title-text {
        font-size: 24px;
        margin-bottom: 12px;
        color: #000;
    }

    .card-mobile-header .card-title-sub-text {
        font-size: 14px;
        line-height: 1.4;
        color: #666;
    }

    #commercial_and_industrial {
        background: #F4F4F4;
        padding: 40px 0;
    }
}


/* About Page Builder Page CSS */
.about-hero {
    padding-top: clamp(100px, 10vw, 130px);
}


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

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

/* Remove fixed width restrictions */
.about-hero-header {
    max-width: 100%;
}

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

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

/* Responsive - Stack on tablet/mobile */
@media (max-width: 991px) {
    .about-hero-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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



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

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

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

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

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

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


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

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

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

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

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

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



/* =====================================
   TEAM SECTION
===================================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hover Effects */
.team-card:hover img {
    transform: scale(1.08);
}

.team-card:hover .team-overlay {
    opacity: 0;
}

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


/* ===============================
   IMPACT SWIPER FINAL
================================= */
.about-impact {
    padding: clamp(32px, 2.75vw, 64px) clamp(0px, 2.2vw, 40px);
    overflow: hidden;
}

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

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




/* =========================
   SLIDER LAYOUT
========================= */
.impact-slider {
    width: 100%;
}

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

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

/* Small side slides */
/*.impact-slider .swiper-slide:not(.swiper-slide-active) {
    width: 12%;
}
*/
/* Active center slide */
/*.impact-slider .swiper-slide-active {
    width: 76%;
}*/

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

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

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

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

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

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

}

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

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

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

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

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

/* Hide vertical on active */
.swiper-slide-active .slide-title-vertical {
    opacity: 0;
    visibility: hidden;
}

/* Horizontal content (active slide) */
.impact-content-wrap {
    opacity: 0;
    transition: all 0.5s ease;
}

/* Show only on active */
.swiper-slide-active .impact-content-wrap {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* =====================================
   RESPONSIVE
===================================== */

@media (min-width: 991px) {
    .impact-slider .swiper-slide {
        flex-shrink: unset !important;
    }

    .about-hero-top .heading-comm-sec {
        margin: 0;
    }


}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-card {
        min-height: 380px;
    }

    .impact-slider .swiper-slide {
        height: 420px !important;
    }
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats,
    .about-impact {
        padding-inline: 0 !important;

    }

    .about-hero-top {
        padding: 0;
        gap: 30px;
    }
}

@media (max-width: 991px) {

    .about-hero-top,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-slider .swiper-wrapper {
        gap: 0;
    }

    .about-hero-top {
        gap: 0;
    }

    .impact-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .about-team {
        padding-left: 0;
        padding-right: 0;
    }

    .impact-slider {
        overflow: visible;
    }

    .about-hero-content .child-comm-subheading {
        max-width: 100%;
    }

    .impact-content-wrap {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 600px) {

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 24px;
    }
}


/* ===============================
   404 PAGE STYLE
=================================*/

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

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

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

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

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

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

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

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

@keyframes float {

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

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