:root {
    --primary-color: #78C836;
    --btn-color: #f1e026;
    --btn-hover-color: #fff;

    --btn-dark-color: #000;
    --btn-dark-hover-color: #78C836;
}

.text-primary {
    color: var(--primary-color) !important;
}   

html,
body {
    font-family: 'Poppins';
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

h4 {
    font-size: 1.25rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: -.005em;
}

.font-black {
    font-weight: 600 !important;
}

.img-mono {
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Google Chrome, Safari 6+ & Opera 15+ */
    filter: grayscale(1);
    /* Microsoft Edge and Firefox 35+ */
}

.about-name {
    font-weight: bold;
}

.zoom-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.zoom-section #zoom-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .1s ease;
}

.zoom-section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Gradient background */
    z-index: 2;
    /* Set z-index to 2 */
    color: #fff;
}

.zoom-section .overlay h1 {
    font-size: 6rem;
    letter-spacing: 0.1rem;
}

.header-banner {
    height: 400px;
    position: relative;
}

.header-banner .banner-title {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.header-banner .banner-title h1 {
    font-size: 32pt;
}

.header-banner .darker-bgr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    /* Gradient background */
    z-index: 2;
    /* Set z-index to 2 */
    color: #fff;
}

.arrow-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -10px;
}

.animate-down {
    animation: moveDown 2s infinite;
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

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

@media only screen and (max-width: 600px) {
    .zoom-section .overlay h1 {
        font-weight: 400;
        font-size: 3rem;
        letter-spacing: 5px;
        text-align: center;
    }
}

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

    .navbar-desktop a,
    .navbar-mobile a {
        font-size: 14pt;
    }
}

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

    html,
    body {
        font-size: 12pt;
    }

    .navbar-desktop a,
    .navbar-mobile a {
        font-size: 12pt;
    }
}

.navbar-desktop a,
.navbar-mobile a {
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
}

.navbar-desktop a:hover,
.navbar-desktop a:active {
    color: #ddd;
    text-decoration: none;
    line-height: 1.8;
}

.navWhite {
    background-color: #000;
    transition: all 0.5s ease;
}

.navWhite a {
    color: #fff;
}

.navWhite a:hover,
.navWhite a:active {
    color: #ccc;
}

.productItem {
    margin-bottom: 0px !important;
}

@media only screen and (max-width: 600px) {
    .navWhite {
        background-color: #fff;
        transition: all 0.5s ease;
    }

    .btn-outline-light {
        border: solid 1px #000;
        color: #000;
    }

    .productItem {
        margin-bottom: 150px !important;
    }
}


.navTrans {
    background-color: transparent;
    transition: all 0.5s ease;
}

.btn-juicer {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 30px;
    background-color: var(--btn-color);
    color: #000;
}

.link-dark:hover {
    color: var(--primary-color) !important;
}

.btn-language {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    color: #fff;
}

.btn-juicer:hover,
.btn-juicer:active {
    background-color: var(--btn-hover-color);
    color: #000;
}

.btn-dark-juicer {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 30px;
    background-color: var(--btn-dark-color);
    color: #fff;
}

.btn-bigger {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-size: 14pt;
}

.btn-dark-juicer:hover,
.btn-dark-juicer:active {
    background-color: var(--btn-dark-hover-color);
}

.section {
    padding-top: 70px;
    padding-bottom: 70px;
    width: 100%;
}

.sectionBgr {
    background-image: url('../img/slide-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sectionBgr2 {
    background-image: url('../img/convertevparking.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sectionRelative {
    position: relative;
}

.sectionRelative .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.text-green {
    color: var(--primary-color);
}

.list-unstyled {
    list-style: none;
}

.bg-light {
    background-color: #eee !important;
}

/* NAVBAR */
#topNav .navbar-toggler:focus,
#topNav .navbar-toggler:active,
#topNav .navbar-toggler {
    border: none !important;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    #topNav .navbar-collapse {
        background-color: #fff;
        border-radius: 20px;
    }

    #topNav .navbar-collapse .nav-link {
        color: #000 !important;
    }
}

/* FOOTER */
footer {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #000;
}

/* HOMEPAGE */
.homepage-bgr1 {
    background-image: url('../img/become-juicer.webp');
    background-size: cover !important;
    position: relative;
}

.homepage-bgr1 .juicer-img1 {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -250px;
    width: 500px;
}

.rounded-lg {
    border-radius: 20px !important;
}

.rounded-lg .card-img-top {
    border-top-right-radius: 20px !important;
    border-top-left-radius: 20px !important;
}

.core-principles {
    width: 100%;
}

.core-principles .swiper-slide {
    width: 400px;
    justify-content: center;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: calc(0px - 60px) !important;
}

.juicerStory {
    overflow: hidden;
}

.juicerStory .story-item {
    width: 400px;
    justify-content: center;
}

.img-holder {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    bottom: 0px;

    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

.img-holder .overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    bottom: 0px;

    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;

    cursor: pointer;
}

.img-holder:hover .overlay {
    opacity: 1;
}

.img-holder .overlay .overlay-text {
    position: absolute;
    bottom: 0px;
    padding: 25px;
    text-align: left;
}

.principle-item .principle-title {
    width: 100%;
    margin-top: 20px;
}

/* PRELOADER */
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}

#preloader.fade-out {
    opacity: 0;
}

/* Add Logo styles */
#loading-logo {
    position: absolute;
    top: 50%;
    /* Adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: fadeInOut 2s infinite ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* EFFECTS */
.parallax {
    background-image: url('../img/become-juicer.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
        /* Disable fixed background on mobile */
    }
}

/* SOCIAL MEDIA */
.social-media div {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member {
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.team-member:hover img {
    transform: scale(1.1);
}

/* Style for navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    /* Circle color */
    border-radius: 50%;
    /* Make circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
}

/* Specific style for next button */
.swiper-button-next {
    right: 10px;
}

/* Specific style for previous button */
.swiper-button-prev {
    left: 10px;
}

.text-font-normal{
    font-weight: normal;
}

.businessChallenge {
    position: absolute;
    aspect-ratio: 1 / 1;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-image: url('../img/business-challenge.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.convertEVParking {
    position: absolute;
    aspect-ratio: 1 / 1;
    top: 0;
    left: 0;
    width: 40vw;
    height: 100%;
    background-image: url('../img/convertevparking.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-top: 50px;
}

.driver-bgr {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    z-index: 0;
}

.convertEVdot {
    width: 20px;
    height: auto;
    margin-right: 10px;
}


@media (max-width: 768px) {
    .businessChallenge {
        position: relative;
        width: 100vw;
        height: 50vh;
    }

    .sectionBusinessChallenge {
        padding-bottom: 0px !important;
    }

    .driver-bgr {
        width: 70%;
        z-index: 0;
    }

    .sectionConvertEVParking {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        text-align: center;
    }

    .convertEVPackingShadow {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 50px;
        position: absolute;
        width: 70vw;
        aspect-ratio: 1 / 1;
        top: 70px;
        right: 10%;
    }

    .convertEVParking {
        position: relative;
        width: 70vw;
        margin-left: -20%;
        margin-top: -10px;
        border-radius: 50px;
        margin-bottom: 50px;
    }

    .convertEVdot {
        width: 30px;
        height: auto;
        margin-right: 5px;
    }
}

.home-text2 {
    font-size: 2rem;
}

.cardBlur {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cardBlurWhite {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.sectionConvertEVParking {
    min-height: 75vh;
}

.video-container {
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-title {
    font-size: 6rem !important;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.15rem !important;
}

.hero-title2 {
    font-size: 4rem !important;
    line-height: 3rem;
    margin-top: 200px;
    letter-spacing: 0.15rem !important;
}

.hero-title2 small {
    font-size: 2.3rem !important;
}

.hero-title2 b {
    font-weight: 700 !important;
}

.hero-subtitle2 {
    font-size: 1.8rem !important;
    font-style: italic;
    font-weight: 400 !important;
    margin-bottom: 120px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle2 b {
    font-weight: 700 !important;
}

.hero-subtitle {
    font-size: 1.8rem !important;
    font-style: italic;
    font-weight: 400 !important;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-without-italic {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.box-green {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.bepartofchange {
    font-size: 2.5 rem;
}

/* iPad/Tablet Media Queries */
@media (min-width: 768px) and (max-width: 1366px) {
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-subtitle {
        font-size: 2rem !important;
    }

    .hero-subtitle-without-italic {
        font-size: 2rem !important;
    }
    
    .home-text2 {
        font-size: 1.7rem;
    }
    
    .convertEVParking {
        width: 80vw;
        margin-left: -10%;
    }
    
    .sectionConvertEVParking {
        min-height: 60vh;
    }
    
    .navbar-nav .nav-item {
        margin-right: 1rem !important;
    }
    
    .video-container {
        width: 90%;
        margin: 0 auto;
    }
    
    .team-member img {
        max-width: 110%;
    }

    .bepartofchange {
        font-size: 2rem !important;
    }
}

/* Mobile/Phone Media Queries */
@media (max-width: 767px) {
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.5;
        letter-spacing: 0.15rem !important;
    }

    .hero-title2 {
        font-size: 2rem !important;
        line-height: 2rem;
        letter-spacing: 0rem !important;
    }

    .hero-title2 small {
        font-size: 1.2rem !important;
    }

    .hero-subtitle2 {
        font-size: 1.2rem !important;
        margin-bottom: 100px;
    }

    .box-green {
        background-color: var(--primary-color);
        color: #fff;
        padding: 0px 10px;
        border-radius: 5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        padding: 0 15px;
    }

    .hero-subtitle-without-italic {
        font-size: 1.2rem !important;
        padding: 0 15px;
    }
    
    .home-text2 {
        font-size: 1.5rem;
    }
    
    .zoom-section .overlay h1 {
        font-size: 3rem;
    }
    
    .convertEVParking {
        width: 100%;
    }
    
    .sectionConvertEVParking {
        min-height: auto;
        padding: 40px 0;
    }
    
    .video-container {
        width: 100%;
    }
    
    .team-member img {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .header-banner .banner-title h1 {
        font-size: 24pt;
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
    
    .btn-juicer {
        width: 100%;
        margin-top: 10px;
    }

    .phoneSlide {
        margin-bottom: 120px !important;
    }
    
    .talkTo {
        font-size: 1.2rem;
    }
}

/* Increase spacing for g-5 grid */
.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

@media (min-width: 992px) {
    .g-5,
    .gy-5 {
        --bs-gutter-y: 5rem;
    }
    
    .g-5,
    .gx-5 {
        --bs-gutter-x: 5rem;
    }
}

.img-circle {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 8px solid var(--primary-color);
    z-index: 5;
}

.footerQuest {
    font-size: 18pt;
}

