﻿
/* Font Face Declarations */
@font-face {
    font-family: 'Geometris Round';
    src: url('../font/GeometrisRound-LightSemCond.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Geometris Round';
    src: url('../font/GeometrisRound-RegularSemCond.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Geometris Round';
    src: url('../font/GeometrisRound-BoldSemCond.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'Hiruko Pro';
    src: url('../font/HirukoPro-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Color Variables */
:root {
    --primary-dark: #2c384c;
    --accent-green: #98c601;
    --light-gray: #dbdbdb;
    --light-bg: #f9f9f9;
}

/* Base Styles */
body {
    font-family: Geometris Round, sans-serif;
    color: var(--light-bg);
    background-color: var(--primary-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;  
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    transition: background-color 0.4s ease;
}

    .navbar.scrolled {
        background-color: var(--primary-dark);
    }

    .navbar.transparent {
        background-color: rgba(44, 56, 76, 0.0);
    }

.navbar-brand {
    font-family: 'Geometris Round', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--light-bg) !important;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px;
    margin-right: 15px;
}

.nav-link {
    font-family: 'Geometris Round', sans-serif;
    font-weight: 400;
    color: var(--light-bg) !important;
    margin: 0 0.5rem;
    position: relative;
}

    .nav-link:hover {
        color: var(--accent-green) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--accent-green);
        transition: width 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover::after {
        width: 100%;
    }


/* Hero section styles */
/* Hero section styles - Updated for better responsiveness */
.main-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
}

.swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
}

.swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 56, 76, 0.6) 0%, rgba(44, 56, 76, 0.3) 100%);
}

.swiper-slide-inner {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.elementor-slide-heading {
    font-family: 'Geometris Round', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.elementor-slide-description {
    font-family: 'Geometris Round', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
}

/* Enhanced responsive adjustments */
@media (max-width: 768px) {
    .main-hero {
        height: 70vh;
        min-height: 500px;
    }

    .swiper-slide-inner {
        text-align: center;
        padding: 0 8%;
    }

    .elementor-slide-heading {
        margin-bottom: 1rem;
    }

    .elementor-slide-description {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .main-hero {
        height: 60vh;
        min-height: 400px;
    }

    .swiper-slide-inner {
        padding: 0 5%;
    }

    .elementor-slide-heading {
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
}

/* Ensure content stays visible on very small screens */
@media (max-width: 320px) {
    .main-hero {
        min-height: 350px;
    }
}

/* Swiper customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}
       


/* About Section */
.about-section {
    padding-top: 5rem;
    position: relative;
    z-index: 0; /* Ensures it stays above hero elements */
    background-color: var(--primary-dark); /* Match your bg color */
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-green);    
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        bottom: -10px;
        left: 0;
        background-color: var(--accent-green);
    }

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-bg);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: rgba(44, 56, 76, 0.8);
}

.value-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(152, 198, 1, 0.1);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}

    .value-card:hover {
        transform: translateY(-10px);
        border-color: rgba(152, 198, 1, 0.3);
    }

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.value-title {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


.brand-logo {
    /* Using clamp(min, preferred, max) values */
    height: clamp(30px, 4vw, 50px);
    width: auto; /* Maintain aspect ratio */
    margin-right: clamp(10px, 1.5vw, 15px);
    transition: height 0.3s ease; /* Smooth scaling */
}


/* References logo styling */
.references-logos {
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.reference-logo {
    height: 70px;
    width: auto;
}


/* Responsive adjustments for reference logos */
@media (max-width: 768px) {
    .references-logos {
        gap: 2rem !important;
    }

    .reference-logo {
        height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .references-logos {
        flex-direction: column;
        gap: 1.5rem !important;
    }
}

/* Custom Styles */

.crisis-section,
.product-section,
.about-section {
    background-color: var(--primary-dark);
    color: var(--light-bg);
    padding: 5rem 0;
    position: relative;  
}

.section-title-green {
    color: #98c601;
    font-family: 'Geometris Round', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

    .section-title-green::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        bottom: -10px;
        left: 0;
        background-color: #98c601;
    }

.crisis-section {
    border-bottom: 1px solid rgba(152, 198, 1, 0.1);
}

.bioconversion-section {    
    background: var(--light-gray);
    position: relative
}

.bioconversion-section .image-container {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

    .bioconversion-section img {
        max-width: 90%;
        max-height: 80%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .bioconversion-section .section-title {
        color: var(--accent-green);
        position: relative;
        padding-bottom: 15px;
    }

.bioconversion-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-green);
}

.object-fit-cover {
    object-fit: cover;
    min-height: 400px; /* Adjust as needed */
}

.animate-from-left {
    transform: translateX(-50%);
    opacity: 0;
    transition: all 1s ease-out;
    transition-delay: 0.3s;
}

   .animate-from-left.active {
        transform: translateX(0);
        opacity: 1;
    }




/* Counter Section Styles */
.counter-section {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.counter-card {
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(152, 198, 1, 0.1);
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .counter-card:hover {
        transform: translateY(-5px);
        border-color: rgba(152, 198, 1, 0.3);
    }

.counter-label {
    font-family: 'Geometris Round', sans-serif;
    color: var(--light-bg);
    font-size: 1rem;
    line-height: 1.5;
}

.financial-impact {
    padding: 2rem;
    background-color: rgba(152, 198, 1, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.counter-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.counter-value {
    font-family: 'Geometris Round', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    display: inline-block;
}

.counter-symbol {
    font-family: 'Geometris Round', sans-serif;
    font-size: 3rem;
    color: var(--accent-green);
    margin-left: 0.3rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.counter-label {
    font-family: 'Geometris Round', sans-serif;
    color: var(--light-bg);
    font-size: 1rem;
    line-height: 1.5;
}




/* 4. Benefits Section */
.benefits-section {
    background-color: #dbdbdb; /* Updated background color */
    border-radius: 30px 30px 0 0;
    margin-top: 4rem;
    position: relative;
}   

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-dark); /* Updated text color */
    font-family: 'Geometris Round', sans-serif;
}

    .benefit-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #98c601; /* Keep checkmarks green */
        font-weight: bold;
    }


/* 5. USP Section */
.usp-section {
    background-color: var(--primary-dark); /* Updated background color */
    border-radius: 30px 30px 0 0;  
    position: relative;  
    margin-top: -30px;
}

    .usp-section::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        background-color: #dbdbdb;
        border-radius: 30px 30px 0 0;
    }

    .usp-section h2 {
        color: var(--light-bg);
    }

    .usp-section h3 {
        color: var(--accent-green);
    }

.text-geometric {
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

video {
    max-width: 100%;
    height: auto;
}





.section-title-blue {
    color: #2c384c; /* Using the primary-dark color for blue */
    font-family: 'Geometris Round', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    .section-title-blue::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        bottom: -10px;
        left: 0;
        background-color: #2c384c;
    }

.section-text-dark {
    color: #98c601;
    font-family: 'Geometris Round', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.product-image-container {
    width: 300px;
    height: 300px;
    border-radius: 0%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 0px solid #98c601;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.product-image {
    width: auto;
    height: 100%;
    object-fit: fill;
}

.product-title {
    color: #2c384c;
    font-family: 'Geometris Round', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #98c601;
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-content {
    color: #2c384c;
    font-family: 'Geometris Round', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

    .whatsapp-btn:hover {
        background-color: #128C7E;
        color: white;
        transform: translateY(-3px);
    }


/* Form Styles */
.contact-section {
    position: relative;
    z-index: 1;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(152, 198, 1, 0.3);
    border-radius: 4px;
    color: var(--light-bg);
    font-family: 'Geometris Round', sans-serif;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(152, 198, 1, 0.25);
    color: var(--light-bg);
}

.form-control::placeholder {
    color: rgba(219, 219, 219, 0.7);
}

.form-label {
    font-weight: 400;
    margin-bottom: 8px;
}

.btn-primary:hover {
    background-color: #7aa801 !important;
    transform: translateY(-2px);
}

/* Modal customization */
.modal-content {
    border-radius: 10px;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Footer Styles */
.footer-section {
    background-color: var(--primary-dark);
    padding: 3rem 0 1.5rem;
    color: var(--light-gray);
    margin-top: 2rem;
}

.footer-brand {
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--light-gray);
    font-family: 'Geometris Round', sans-serif;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.social-links {
    display: inline-block;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(152, 198, 1, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background-color: var(--accent-green);
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

.whatsapp-footer-btn {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Geometris Round', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .whatsapp-footer-btn:hover {
        background-color: #7aa801;
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

.footer-divider {
    border-color: rgba(152, 198, 1, 0.2);
    margin: 2rem 0 1.5rem;
}

.footer-copyright,
.footer-credit {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

    .footer-credit a {
        color: var(--accent-green);
        text-decoration: none;
    }

        .footer-credit a:hover {
            text-decoration: underline;
        }


/* Headquarters link styling */
.headquarters-link {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .headquarters-link:hover {
        color: var(--accent-green);
    }

/* Image Attribution Styles */
.image-attribution {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(152, 198, 1, 0.2);
}

.attribution-title {
    font-size: 0.75rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.attribution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .attribution-list li {
        font-size: 0.7rem;
        color: var(--light-gray);
    }

    .attribution-list a {
        color: var(--accent-green);
        text-decoration: none;
    }

        .attribution-list a:hover {
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .attribution-list {
        flex-direction: column;
        gap: 0.5rem;
    }

        .attribution-list li {
            font-size: 0.65rem;
        }
}

/* Responsive styles for footer */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .social-links {
        margin-bottom: 1rem;
    }

    .whatsapp-footer-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 0.75rem;
    }
}


/* Responsive styles */
@media (max-width: 1024px) {
    .elementor-slide-heading {
        font-size: 60px;
    }

    .elementor-slide-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .elementor-slide-heading {
        font-size: 50px;
    }

    .elementor-slide-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .elementor-slide-heading {
        font-size: 40px;
    }

    .elementor-slide-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {    

    .bioconversion-section .row {
        flex-direction: column-reverse;
    } 
          
    .benefits-section .row {
        flex-direction: column;
    }

    .benefits-section .col-lg-6 {
        margin-bottom: 30px;
    }
    object-fit-cover {
        min-height: 300px;
    }

    .bioconversion-section .row > div {
        width: 100% !important; /* Force full width on mobile */
    }
}
/* Responsive adjustments for counter */
@media (max-width: 768px) {
    .counter-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .counter-value-wrapper {
        min-height: 50px;
    }

    .counter-symbol {
        font-size: 3rem;
        margin-top: 0.4rem;
    }

    .counter-label {
        font-size: 0.9rem;
    }

    .financial-impact {
        padding: 1.5rem;
    }

        .financial-impact h3 {
            font-size: 1.8rem;
        }
}


@media (max-width: 768px) {
    .products-section {
        border-radius: 20px 20px 0 0;
    }           

    .product-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .product-image-container {
        width: 210px;
        height: 210px;
    }

    .section-title-blue {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        border-radius: 20px 20px 0 0;
    }

       
}