:root{
--primary:#00A651;
--primary-dark:#007C3D;

--secondary:#0088FF;

--dark:#081B29;

--light:#F8FAFC;

--white:#ffffff;

--text:#4A5568;

--border:#E8EEF5;

--gradient:linear-gradient(135deg,#00A651,#0088FF);

--radius:18px;

--transition:.35s ease;

--shadow:0 15px 40px rgba(0,0,0,.08);

--shadow-hover:0 30px 60px rgba(0,0,0,.15);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    line-height:1.8;
}

section{
    padding:100px 0;
    position:relative;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

h1,h2,h3,h4,h5{

font-family:'Poppins',sans-serif;

font-weight:700;

color:var(--dark);

}

.display-title{

font-size:58px;

font-weight:800;

line-height:1.1;

}

.section-title{

font-size:38px;

font-weight:700;

margin-bottom:20px;

}

.section-subtitle{

display:inline-block;

padding:8px 18px;

background:#EAF8F0;

color:var(--primary);

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.section-text{

font-size:16px;

color:var(--text);

max-width:700px;

}

.btn-primary-custom{

background:var(--gradient);

color:#fff;

padding:12px 30px;

border-radius:50px;

font-weight:600;

border:none;

transition:.4s;

box-shadow:0 15px 35px rgba(0,166,81,.25);

}

.btn-primary-custom:hover{

transform:translateY(-4px);

box-shadow:0 25px 45px rgba(0,166,81,.35);

color:#fff;

}

.btn-outline-custom{

border:2px solid var(--primary);

padding:10px 30px;

border-radius:50px;

font-weight:600;

color:var(--primary);

}

.btn-outline-custom:hover{

background:var(--primary);

color:#fff;

}

.theme-card{

background:#fff;

border-radius:20px;

padding:35px;

box-shadow:var(--shadow);

transition:.4s;

border:1px solid #EEF2F6;

}

.theme-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-hover);

}

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

background:var(--gradient);

border-radius:50px;

}

::selection{

background:var(--primary);

color:#fff;

}

.bg-light-green{

background:#F3FFF7;

}

.bg-gradient{

background:var(--gradient);

}

.rounded-xl{

border-radius:25px;

}

.shadow-lg-custom{

box-shadow:var(--shadow);

}

/*=========================
        Navbar
==========================*/

#header{

position:relative;

z-index:9999;

}

.navbar{

padding:10px 0;

transition:.4s;
background: white;
}

.navbar.scrolled{

background:rgba(255,255,255,.90);

backdrop-filter:blur(15px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

padding:14px 0;

}

.navbar-brand img{

height:40px;

transition:.3s;

}

.navbar.scrolled .navbar-brand img{

height:52px;

}

.navbar-nav{

gap: 28px;

}

.nav-link{

position:relative;

font-size:15px;

font-weight:600;

color: var(--bs-navbar-active-color);

padding:12px 0 !important;

transition:.3s;

}

.navbar.scrolled .nav-link{

color:var(--dark);

}

.nav-link:hover{

color:var(--primary);

}

.nav-link.active{

color:var(--primary)!important;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:5px;

width:0;

height:2px;

background:var(--primary);

transition:.4s;

}

.nav-link:hover::after,

.nav-link.active::after{

width:100%;

}

.navbar-toggler{

border:none;

box-shadow:none;

font-size:26px;

color:#00A651;

}

.navbar.scrolled .navbar-toggler{

color:var(--dark);

}

.offcanvas{

width:320px;
padding:20px;

}

.mobile-nav li{

margin:20px 0;

}

.mobile-nav a{

font-size:18px;

font-weight:600;

color:var(--dark);

}

/*=========================
        Hero
=========================*/

.hero-section{

position:relative;

overflow:hidden;

padding-top:130px;

background:#081B29;

color:#fff;

}

.hero-bg{

position:absolute;

inset:0;

background:url('../../images/extra/bg_banner.png') center/cover no-repeat;

opacity:.18;

}

.hero-overlay{

position:absolute;

inset:0;

background:
linear-gradient(135deg,
rgba(8,27,41,.95),
rgba(8,27,41,.80));

}

.hero-section .container{

position:relative;

z-index:2;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

border-radius:50px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

font-weight:600;

}

.hero-title{

font-size:46px;

font-weight:700;

line-height:1.15;

color:#fff;

}

.hero-title span{

background:linear-gradient(90deg,#00A651,#7BE495);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-text{

font-size:16px;

max-width:620px;

color:rgba(255,255,255,.82);

line-height:1.9;

}

.hero-image{

position:relative;

text-align:center;

}

.hero-image img{

max-width:100%;
border-radius: 18px;
animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

.floating-card{

position:absolute;

right:-25px;

bottom:40px;

background:#fff;

padding:18px 22px;

border-radius:18px;

display:flex;

align-items:center;

gap:15px;

box-shadow:0 20px 45px rgba(0,0,0,.18);

animation:floatCard 4s infinite;

}

.floating-card i{

font-size:34px;

color:var(--primary);

}

.floating-card h5{

margin:0;

font-size:18px;

}

.floating-card small{

color:#666;

}

@keyframes floatCard{

50%{

transform:translateY(-12px);

}

}

.hero-stats{

background:#fff;

padding:60px 0;

margin-top:-20px;

position:relative;

z-index:5;

}

.stat-box{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h2{

color:var(--primary);

font-size:42px;

font-weight:700;

margin-bottom:10px;

}

.stat-box p{

margin:0;

color:#555;

}

/*==================================
        About Section
===================================*/

.about-section{

background:#F8FBFD;

position:relative;

overflow:hidden;

}

.about-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(0,166,81,.05);

border-radius:50%;

top:-180px;

left:-180px;

}

.about-image-wrapper{

position:relative;

}

.about-image-wrapper img{

transition:.5s;

}

.about-image-wrapper:hover img{

transform:scale(1.03);

}

.about-floating-card{

position:absolute;

right:-20px;

bottom:40px;

background:#fff;

padding:20px;

display:flex;

align-items:center;

gap:15px;

border-radius:18px;

box-shadow:0 20px 50px rgba(0,0,0,.10);

animation:floatCard 4s infinite;

}

.about-floating-card i{

font-size:36px;

color:var(--primary);

}

.about-floating-card h5{

margin-bottom:4px;

font-size:18px;

}

.about-floating-card p{

margin:0;

font-size:14px;

color:#666;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-top:35px;

}

.feature-item{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

color:var(--dark);

}

.feature-item i{

color:var(--primary);

font-size:18px;

}

/*====================================
        WHY BIO CNG
====================================*/

.why-biocng{

background:#fff;

position:relative;

overflow:hidden;

}

.why-biocng::before{

content:"";

position:absolute;

width:550px;

height:550px;

right:-220px;

top:-150px;

background:rgba(0,166,81,.05);

border-radius:50%;

}

.why-image{

text-align:center;

}

.why-image img{

max-width:100%;

animation:floatImage 5s ease-in-out infinite;

}

.benefit-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:40px;

}

.benefit-card{

display:flex;

align-items:flex-start;

gap:18px;

padding:25px;

background:#fff;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #eef2f6;

}

.benefit-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.benefit-card .icon{

width:60px;

height:60px;

background:linear-gradient(135deg,#00A651,#0088FF);

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

}

.benefit-card .icon i{

font-size:24px;

color:#fff;

}

.benefit-card h5{

font-size:18px;

margin-bottom:8px;

}

.benefit-card p{

margin:0;

font-size:14px;

color:#667085;

line-height:1.7;

}

/*=============================
    PROCESS SECTION
==============================*/

.process-section{

background:#F8FBFD;

position:relative;

overflow:hidden;

}

.process-wrapper{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:30px;

position:relative;

margin-top:70px;

}

.process-wrapper::before{

content:"";

position:absolute;

left:8%;

right:8%;

top:72px;

height:4px;

background:linear-gradient(90deg,#00A651,#0088FF);

z-index:1;

border-radius:50px;

}

.process-item{

position:relative;

z-index:2;

text-align:center;

padding:35px 20px;

background:#fff;

border-radius:22px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.4s;

}

.process-item:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.step-number{

width:38px;

height:38px;

background:var(--primary);

color:#fff;

border-radius:50%;

margin:0 auto 18px;

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

font-size:14px;

}

.process-icon{

width:90px;

height:90px;

margin:auto;

background:linear-gradient(135deg,#00A651,#0088FF);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.process-icon i{

font-size:36px;

color:#fff;

}

.process-item h5{

margin-bottom:15px;

font-size:20px;

}

.process-item p{

font-size:14px;

color:#667085;

line-height:1.8;

margin-bottom:0;

}

/*===================================
        BUSINESS SECTION
====================================*/

.business-section{

background:#ffffff;

}

.business-card{

position:relative;

overflow:hidden;

border-radius:24px;

height:520px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

cursor:pointer;

}

.business-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.business-card:hover img{

transform:scale(1.12);

}

.business-overlay{

position:absolute;

inset:0;

padding:40px;

display:flex;

flex-direction:column;

justify-content:flex-end;

background:linear-gradient(to top,
rgba(8,27,41,.95),
rgba(8,27,41,.84),
transparent);

color:#fff;

}

.business-overlay::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:0;

height:5px;

background:linear-gradient(90deg,#00A651,#00D97E);

transition:.5s;

}

.business-card:hover .business-overlay::before{

width:100%;

}

.business-icon{

width:75px;

height:75px;

border-radius:20px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.business-icon i{

font-size:30px;

color:#00D97E;

}

.business-overlay h4{

color:#fff;

font-size:28px;

margin-bottom:18px;

}

.business-overlay p{

color:rgba(255,255,255,.82);

line-height:1.8;

margin-bottom:25px;

}

.business-overlay a{

color:#fff;

font-weight:600;

transition:.35s;

}

.business-overlay a:hover{

color:#00D97E;

}

/*==================================
        INVESTMENT
===================================*/

.investment-section{

padding:60px 0;

background:#081B29;

position:relative;

overflow:hidden;

}

.investment-section::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(0,166,81,.08);

border-radius:50%;

top:-250px;

right:-250px;

}

.investment-title{

font-size:38px;

font-weight:700;

color:#fff;

margin-top:20px;

}

.investment-text{

max-width:760px;

margin:auto;

margin-top:25px;

color:rgba(255,255,255,.75);

font-size:15px;

line-height:1.9;

}

.invest-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.10);

border-radius:24px;

padding:40px 35px;

height:100%;

backdrop-filter:blur(10px);

transition:.4s;

}

.invest-card:hover{

transform:translateY(-10px);

background:rgba(255,255,255,.08);

border-color:#00A651;

}

.invest-icon{

width:75px;

height:75px;

border-radius:20px;

background:linear-gradient(135deg,#00A651,#00D97E);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.invest-icon i{

font-size:30px;

color:#fff;

}

.invest-card h4{

color:#fff;
font-size: 22px;
margin-bottom:15px;

}

.invest-card p{

color:rgba(255,255,255,.75);

line-height:1.8;

margin-bottom:0;

}

/*===============================
        ESG SECTION
================================*/

.esg-section{

padding:48px 0;

background:#F8FBFD;

}

.esg-image{

overflow:hidden;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.esg-image img{

width:100%;

transition:.5s;

}

.esg-image:hover img{

transform:scale(1.06);

}

.esg-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-top:35px;

}

.esg-list div{

font-weight:600;

display:flex;

gap:12px;

align-items:center;

}

.esg-list i{

color:#00A651;

}

.esg-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.4s;

height:100%;

}

.esg-card:hover{

transform:translateY(-10px);

}

.esg-card i{

font-size:46px;

color:#00A651;

margin-bottom:22px;

}

.esg-card h4{

margin-bottom:15px;

font-size:24px;

}

.esg-card p{

margin:0;

color:#667085;

line-height:1.8;

}

/*=====================================
        WHY PARTNER
======================================*/

.partner-section{

background:#ffffff;

padding:120px 0;

}

.partner-card{

position:relative;

background:#fff;

padding:45px 35px;

border-radius:24px;

height:100%;

overflow:hidden;

box-shadow:0 18px 45px rgba(0,0,0,.07);

transition:.4s;

border:1px solid #edf2f7;

}

.partner-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#00A651,#00D97E);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.partner-card:hover::before{

transform:scaleX(1);

}

.partner-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 65px rgba(0,0,0,.12);

}

.partner-icon{

width:78px;

height:78px;

border-radius:22px;

background:linear-gradient(135deg,#00A651,#00D97E);

display:flex;

align-items:center;

justify-content:center;

margin-bottom:28px;

}

.partner-icon i{

font-size:30px;

color:#fff;

}

.partner-card h4{

font-size:25px;

margin-bottom:16px;

}

.partner-card p{

color:#667085;

line-height:1.9;

margin-bottom:0;

}

/*====================================
        ROADMAP
=====================================*/

.roadmap-section{


padding:120px 0;

padding-top: 50px!important;

background:#081B29;

position:relative;

overflow:hidden;

}

.roadmap-section .section-title{

color:#fff;

}

.roadmap-section .section-text{

color:rgba(255,255,255,.75);

}

.roadmap{

position:relative;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

margin-top:70px;

}

.roadmap-line{

position:absolute;

top:36px;

left:8%;

right:8%;

height:4px;

background:linear-gradient(90deg,#00A651,#00D97E);

z-index:1;

}

.roadmap-item{

position:relative;

z-index:2;

text-align:center;

}

.roadmap-dot{

width:28px;

height:28px;

background:#00A651;

border:6px solid #fff;

border-radius:50%;

margin:auto;

box-shadow:0 0 25px rgba(0,166,81,.7);

}

.roadmap-card{

margin-top:30px;

padding:35px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.10);

border-radius:24px;

backdrop-filter:blur(12px);

transition:.35s;

height:100%;

}

.roadmap-card:hover{

transform:translateY(-8px);

border-color:#00A651;

}

.roadmap-card span{

display:inline-block;

padding:8px 16px;

background:#00A651;

color:#fff;

border-radius:50px;

font-size:13px;

margin-bottom:18px;

}

.roadmap-card h4{

color:#fff;

margin-bottom:15px;

}

.roadmap-card p{

color:rgba(255,255,255,.75);

line-height:1.8;

margin:0;

}

/*=====================================
        LEADERSHIP
======================================*/

.leadership-section{

    padding: 50px 0;

    background:#F8FBFD;

}

.leader-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    height:100%;

    box-shadow:0 20px 50px rgba(0,0,0,.07);

    transition:.4s;

}

.leader-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.13);

}

.leader-image{

    height:380px;

    position:relative;

    overflow:hidden;

}

.leader-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.leader-card:hover .leader-image img{

    transform:scale(1.06);

}

.leader-social{

    position:absolute;

    right:20px;

    bottom:20px;

}

.leader-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#0A66C2;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.leader-social a:hover{

    background:#0A66C2;

    color:#fff;

}

.leader-info{

    padding:30px;

}

.leader-info span{

    color:#00A651;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.leader-info h4{

    font-size:25px;

    margin:10px 0 12px;

}

.leader-info p{

    color:#667085;

    line-height:1.8;

    margin:0;

}


/* Governance */

.governance-strip{

    margin-top:70px;

    padding:30px;

    background:#081B29;

    border-radius:25px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.governance-item{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

}

.governance-item i{

    width:55px;

    height:55px;

    border-radius:16px;

    background:rgba(0,166,81,.15);

    color:#00D97E;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.governance-item strong{

    display:block;

    font-size:16px;

}

.governance-item span{

    display:block;

    margin-top:3px;

    font-size:13px;

    color:rgba(255,255,255,.65);

}

/*=====================================
        COMPLIANCE
======================================*/

.compliance-section{

    padding:50px 0;

    background:#ffffff;

}

.compliance-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.compliance-card{

    padding:35px 30px;

    background:#F8FBFD;

    border:1px solid #edf2f7;

    border-radius:22px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.compliance-card::after{

    content:"";

    position:absolute;

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(0,166,81,.06);

    right:-35px;

    bottom:-35px;

    transition:.4s;

}

.compliance-card:hover{

    transform:translateY(-8px);

    border-color:#00A651;

    box-shadow:0 25px 55px rgba(0,0,0,.09);

}

.compliance-card:hover::after{

    transform:scale(2);

}

.compliance-icon{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #00A651,
        #00D97E
    );

    margin-bottom:22px;

    position:relative;

    z-index:2;

}

.compliance-icon i{

    color:#fff;

    font-size:25px;

}

.compliance-card h4{

    font-size:20px;

    margin-bottom:12px;

    position:relative;

    z-index:2;

}

.compliance-card p{

    color:#667085;

    line-height:1.75;

    margin:0;

    font-size:14px;

    position:relative;

    z-index:2;

}

/*=====================================
        NEWS SECTION
======================================*/

.news-section{

    padding: 50px 0;

    background:#F8FBFD;

}

.section-heading-row{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:30px;

}

.featured-news-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.07);

    height:100%;

    transition:.4s;

}

.featured-news-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 65px rgba(0,0,0,.12);

}

.news-image{

    height:380px;

    position:relative;

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.featured-news-card:hover .news-image img{

    transform:scale(1.07);

}

.news-category{

    position:absolute;

    left:25px;

    top:25px;

    padding:9px 16px;

    border-radius:50px;

    background:#00A651;

    color:#fff;

    font-size:13px;

    font-weight:600;

}

.news-content{

    padding:35px;

}

.news-meta{

    display:flex;

    gap:20px;

    color:#7A8490;

    font-size:13px;

    margin-bottom:15px;

}

.news-meta i{

    color:#00A651;

    margin-right:5px;

}

.news-content h3{

    font-size:30px;

    line-height:1.3;

    margin-bottom:15px;

}

.news-content p{

    color:#667085;

    line-height:1.8;

    margin-bottom:22px;

}

.news-link{

    color:#00A651;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.news-link i{

    transition:.3s;

}

.news-link:hover i{

    transform:translateX(5px);

}


/* Side News */

.side-news-wrapper{

    display:flex;

    flex-direction:column;

    gap:25px;

    height:100%;

}

.side-news-card{

    display:flex;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.4s;

    flex:1;

}

.side-news-card:hover{

    transform:translateX(6px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.side-news-image{

    width:40%;

    min-height:220px;

    overflow:hidden;

}

.side-news-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.side-news-card:hover img{

    transform:scale(1.08);

}

.side-news-content{

    padding:25px;

    width:60%;

}

.side-news-content span{

    color:#00A651;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.side-news-content h4{

    font-size:19px;

    line-height:1.5;

    margin:12px 0 18px;

}

.side-news-content a{

    color:#00A651;

    font-size:14px;

    font-weight:700;

}

.side-news-content a i{

    margin-left:5px;

}

/*=====================================
        BUSINESS CTA
======================================*/

.business-cta{

    position:relative;

    min-height:560px;

    display:flex;

    align-items:center;

    background-image:url(
        "/wp-content/uploads/2026/08/bg-for-cta.jpg"
    );

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.business-cta-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(4,20,30,.96) 0%,
            rgba(4,20,30,.82) 45%,
            rgba(4,20,30,.45) 100%
        );

}

.business-cta-content{

    position:relative;

    z-index:2;

    max-width:780px;

    padding:80px 0;

}

.cta-badge{

    display:inline-flex;

    align-items:center;

    padding:9px 18px;

    border-radius:50px;

    background:rgba(0,166,81,.15);

    border:1px solid rgba(0,217,126,.35);

    color:#00D97E;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    margin-bottom:25px;

}

.business-cta h2{

    color:#fff;

    font-size:58px;

    line-height:1.12;

    font-weight:600;

    margin-bottom:25px;

}

.business-cta p{

    max-width:700px;

    color:rgba(255,255,255,.78);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-light-custom{

    display:inline-flex;

    align-items:center;

    padding:11px 27px;

    border-radius:50px;

    background:#fff;

    color:#081B29;

    font-weight:700;

    transition:.3s;

}

.btn-light-custom:hover{

    background:#00A651;

    color:#fff;

    transform:translateY(-3px);

}

/*=====================================
        CONTACT SECTION
======================================*/

.contact-section{

    padding:50px 0;

    background:#F8FBFD;

}

.contact-wrapper{

    border-radius:30px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 30px 80px rgba(0,0,0,.10);

}

.contact-info{

    height:100%;

    padding:65px 50px;

    background:#081B29;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.contact-info::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(0,166,81,.12);

    right:-150px;

    bottom:-150px;

}

.contact-info > *{

    position:relative;

    z-index:2;

}

.contact-info h2{

    font-size:32px;

    line-height:1.2;

    font-weight: 700;

    margin:20px 0;
    
    color: #00D97E;

}

.contact-info > p{

    color:rgba(255,255,255,.72);

    line-height:1.85;

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:28px;

}

.contact-icon{

    width:52px;

    height:52px;

    flex-shrink:0;

    border-radius:16px;

    background:rgba(0,166,81,.15);

    color:#00D97E;

    display:flex;

    align-items:center;

    justify-content:center;

}

.contact-item span{

    display:block;

    font-size:13px;

    color:rgba(255,255,255,.55);

    margin-bottom:4px;

}

.contact-item a{

    color:#fff;

    font-weight:600;

}

.contact-item p{

    margin:0;

    color:#fff;

    font-weight:600;

}

.contact-socials{

    display:flex;

    gap:12px;

    margin-top:40px;

}

.contact-socials a{

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.contact-socials a:hover{

    background:#00A651;

    border-color:#00A651;

    transform:translateY(-4px);

}


/* Form */

.contact-form-wrapper{

    padding:65px 55px;

}

.form-heading span{

    color:#00A651;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1.5px;

}

.form-heading h3{

    font-size:32px;

    margin:10px 0 35px;

}

.contact-form-wrapper label{

    display:block;

    font-size:14px;

    font-weight:600;

    margin-bottom:9px;

}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select{

    min-height:54px;

    border:1px solid #E4E7EC;

    border-radius:12px;

    padding:12px 16px;

    box-shadow:none;

    transition:.3s;

}

.contact-form-wrapper textarea.form-control{

    min-height:140px;

    resize:vertical;

}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus{

    border-color:#00A651;

    box-shadow:0 0 0 4px rgba(0,166,81,.08);

}

.contact-submit{

    border:0;

}

.whatsapp-float{

    position:fixed;

    left:25px;

    bottom:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    z-index:9999;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    transition:.3s;

}

.whatsapp-float:hover{

    transform:translateY(-5px) scale(1.05);

    color:#fff;

}

/*=====================================
        CORPORATE FOOTER
======================================*/

.site-footer{

    background:#06141F;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.site-footer::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(0,166,81,.05);

    right:-250px;

    top:-300px;

}

.footer-main{

    padding:90px 0 70px;

    position:relative;

    z-index:2;

}

.footer-logo{

    display:inline-flex;

    flex-direction:column;

    color:#fff;

    font-size:28px;

    font-weight:900;

    letter-spacing:1px;

    line-height:1;
    
    background: white;
    
    border-radius: 10px;

}

.footer-logo img{
    width: 200px;
    padding: 10px;
}

.footer-logo span{

    color:#00C96B;

    font-size:14px;

    letter-spacing:3px;

    margin-top:7px;

}

.footer-logo:hover{

    color:#fff;

}

.footer-tagline{

    color:#00D97E;

    font-size:18px;

    font-weight:700;

    margin:22px 0 15px;

}

.footer-description{

    color:rgba(255,255,255,.62);

    line-height:1.9;

    max-width:450px;

    font-size:14px;

}

.footer-socials{

    display:flex;

    gap:10px;

    margin-top:25px;

}

.footer-socials a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.12);

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-socials a:hover{

    background:#00A651;

    border-color:#00A651;

    color:#fff;

    transform:translateY(-4px);

}


/* Footer headings */

.footer-heading{

    font-size:17px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

    padding-bottom:12px;
    
    color: #00A651;

}

.footer-heading::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:35px;

    height:2px;

    background:#00A651;

}


/* Footer links */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:13px;

}

.footer-links a{

    color:rgba(255,255,255,.62);

    font-size:14px;

    transition:.3s;

}

.footer-links a:hover{

    color:#00D97E;

    padding-left:5px;

}


/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.footer-contact-item{

    display:flex;

    align-items:center;

    gap:14px;

}

.footer-contact-icon{

    width:45px;

    height:45px;

    border-radius:13px;

    background:rgba(0,166,81,.12);

    color:#00D97E;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.footer-contact-item span{

    display:block;

    color:rgba(255,255,255,.45);

    font-size:12px;

    margin-bottom:3px;

}

.footer-contact-item a{

    color:#fff;

    font-size:14px;

}

.footer-contact-item p{

    color:#fff;

    font-size:14px;

    margin:0;

}


/* Footer CTA */

.footer-cta{

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:35px 0;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    position:relative;

    z-index:2;

}

.footer-cta span{

    color:#00D97E;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1.5px;

}

.footer-cta h3{

    color:#fff;

    margin:8px 0 0;

    font-size:28px;

}

.footer-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    border-radius:50px;

    background:#00A651;

    color:#fff;

    font-weight:700;

    transition:.3s;

    white-space:nowrap;

}

.footer-cta-btn:hover{

    background:#00D97E;

    color:#fff;

    transform:translateY(-3px);

}

.footer-cta-btn i{

    transition:.3s;

}

.footer-cta-btn:hover i{

    transform:translateX(4px);

}


/* Bottom */

.footer-bottom{

    background:#041019;

    position:relative;

    z-index:2;

}

.footer-bottom-inner{

    min-height:75px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.45);

    font-size:13px;

}

.footer-legal{

    display:flex;

    gap:25px;

}

.footer-legal a{

    color:rgba(255,255,255,.5);

    font-size:13px;

    transition:.3s;

}

.footer-legal a:hover{

    color:#00D97E;

}

/*=====================================
        BACK TO TOP
======================================*/

#backToTop {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 52px;
    height: 52px;

    border: 0;
    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #00A651,
        #00D97E
    );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

    z-index: 9998;

    box-shadow:
        0 10px 30px rgba(0, 166, 81, .25);
}

#backToTop::before {

    content: "\f062";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 17px;

}

#backToTop:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 166, 81, .35);

}

#backToTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

#backToTop:active {

    transform: scale(.92);

}


/* Mobile */

@media (max-width: 576px) {

    #backToTop {

        width: 46px;
        height: 46px;

        right: 18px;
        bottom: 18px;

    }

    #backToTop::before {

        font-size: 15px;

    }

}

/*=====================================
        BREADCRUMB SECTION
======================================*/

.breadcrumb-section {

    position: relative;

    padding: 90px 0 20px;

    background:
        linear-gradient(
            110deg,
            #06141F 0%,
            #0A2530 55%,
            #073D2A 100%
        );

    overflow: hidden;

}


/* Decorative glow */

.breadcrumb-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(0, 166, 81, .10);

    right: -160px;
    top: -220px;

}


/* Second decorative element */

.breadcrumb-section::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(0, 217, 126, .10);

    left: -100px;
    bottom: -130px;

}


.breadcrumb-wrapper {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* Left */

.breadcrumb-content {

    max-width: 750px;

}


.breadcrumb-label {

    display: inline-flex;

    align-items: center;

    color: #00D97E;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.8px;

    margin-bottom: 12px;

}


.breadcrumb-title {

    color: #fff;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 600;

    margin: 0;

}


/* Breadcrumb Navigation */

.breadcrumb-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 10px;

    max-width: 500px;

    text-align: right;

}


.breadcrumb-nav a {

    color: rgba(255,255,255,.65);

    font-size: 14px;

    font-weight: 500;

    transition: .3s;

}


.breadcrumb-nav a:hover {

    color: #00D97E;

}


.breadcrumb-separator {

    display: flex;

    align-items: center;

    color: rgba(255,255,255,.3);

    font-size: 9px;

}


.breadcrumb-current {

    color: #00D97E;

    font-size: 14px;

    font-weight: 600;

    max-width: 260px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}


/*=====================================
        RESPONSIVE
======================================*/

@media (max-width: 991px) {

    .breadcrumb-section {

        padding: 55px 0;

    }

    .breadcrumb-wrapper {

        flex-direction: column;

        align-items: flex-start;

    }

    .breadcrumb-nav {

        justify-content: flex-start;

        text-align: left;

    }

}


@media (max-width: 576px) {

    .breadcrumb-section {

        padding: 45px 0;

    }

    .breadcrumb-title {

        font-size: 30px;

    }

    .breadcrumb-nav {

        gap: 8px;

    }

    .breadcrumb-nav a,
    .breadcrumb-current {

        font-size: 13px;

    }

}


/* =========================================
   PROJECT HERO
========================================= */

.project-hero {
    padding: 50px 0;

    position: relative;

    min-height: 550px;

    height: 70vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #06141F;

}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.project-hero-image {

    position: absolute;

    inset: 0;

    background-image:
        url("/wp-content/uploads/2026/08/site-image.webp");

    background-size: cover;

    background-position: bottom;

    transform: scale(1.02);

    animation: projectImageZoom 18s ease-in-out infinite alternate;

}


@keyframes projectImageZoom {

    from {

        transform: scale(1.02);

    }

    to {

        transform: scale(1.08);

    }

}


/* =========================================
   OVERLAY
========================================= */

.project-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(3,16,24,.82) 0%,
            rgba(3,16,24,.48) 38%,
            rgba(3,16,24,.08) 75%,
            rgba(3,16,24,.20) 100%
        ),

        linear-gradient(
            0deg,
            rgba(3,16,24,.60) 0%,
            transparent 40%
        );

}


/* =========================================
   CONTENT
========================================= */

.project-hero .container {

    position: relative;

    z-index: 3;

}


.project-hero-content {

    max-width: 650px;

    padding-top: 50px;

}


/* =========================================
   LABEL
========================================= */

.project-hero-label {

    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    margin-bottom: 22px;

    border: 1px solid rgba(0,217,126,.4);

    border-radius: 50px;

    background: rgba(0,166,81,.10);

    backdrop-filter: blur(12px);

    color: #00D97E;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


/* =========================================
   TITLE
========================================= */

.project-hero h1 {
    
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -2.5px;
}


.project-hero h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #00D97E,
            #66E7FF
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


/* =========================================
   COMPANY
========================================= */

.project-hero-company {

    margin: 20px 0 25px;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.2px;

}


/* =========================================
   META
========================================= */

.project-hero-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;

}


.project-hero-meta span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border-radius: 8px;

    border: 1px solid rgba(255,255,255,.16);

    background: rgba(0,0,0,.20);

    backdrop-filter: blur(10px);

    color: rgba(255,255,255,.85);

    font-size: 12px;

}


.project-hero-meta i {

    color: #00D97E;

}


/* =========================================
   BUTTON
========================================= */

.project-hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 24px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #00A651,
            #00C96B
        );

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(0,166,81,.28);

    transition: .3s ease;

}


.project-hero-btn:hover {

    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,166,81,.40);

}


.project-hero-btn i {

    transition: .3s;

}


.project-hero-btn:hover i {

    transform: translateX(5px);

}


/* =========================================
   PROJECT LOCATION MARKER
========================================= */

.project-location-marker {
    position: absolute;
    z-index: 4;
    right: 17%;
    top: 52%;
}


.marker-content {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    border-radius: 12px;

    background: rgba(5,20,29,.82);

    border: 1px solid rgba(0,217,126,.30);

    backdrop-filter: blur(14px);

    color: #fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}


.marker-content > i {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(0,217,126,.12);

    color: #00D97E;

}


.marker-content strong {

    display: block;

    font-size: 12px;

}


.marker-content span {

    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

}


/* Pulsing marker */

.marker-pulse {

    position: absolute;

    width: 18px;

    height: 18px;

    left: -9px;

    top: -9px;

    border-radius: 50%;

    background: #00D97E;

    box-shadow:
        0 0 0 0 rgba(0,217,126,.5);

    animation: markerPulse 1s infinite;

}


@keyframes markerPulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(0,217,126,.5);

    }

    70% {

        box-shadow:
            0 0 0 20px rgba(0,217,126,0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(0,217,126,0);

    }

}


/* =========================================
   SCROLL
========================================= */

.project-scroll {

    position: absolute;

    z-index: 5;

    bottom: 28px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.project-scroll i {

    color: #00D97E;

    animation: scrollDown 1.8s infinite;

}


@keyframes scrollDown {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(6px);

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .project-hero {

        min-height: 700px;

    }

    .project-location-marker {

        right: 5%;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .project-hero {

        height: auto;

        min-height: 720px;

        align-items: flex-end;

    }


    .project-hero-image {

        background-position: 60% center;

    }


    .project-hero-overlay {

        background:

            linear-gradient(
                180deg,
                rgba(3,16,24,.15) 0%,
                rgba(3,16,24,.45) 35%,
                rgba(3,16,24,.96) 100%
            );

    }


    .project-hero-content {

        padding: 130px 0 75px;

    }


    .project-hero h1 {

        font-size: 43px;

        letter-spacing: -1.5px;

    }


    .project-hero-company {

        font-size: 11px;

    }


    .project-hero-meta {

        flex-direction: column;

        align-items: flex-start;

    }


    .project-hero-meta span {

        width: fit-content;

    }


    .project-location-marker {

        top: 30%;

        right: 20px;

    }


    .project-scroll {

        display: none;

    }

}

/* =========================================
   INVESTMENT OPPORTUNITY SNAPSHOT
========================================= */

.investment-snapshot {

    position: relative;

    padding: 50px 0;

    background: #f7faf9;

    overflow: hidden;

}


/* Subtle Background Glow */

.investment-snapshot::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -250px;

    right: -180px;

    border-radius: 50%;

    background: rgba(0, 166, 81, .055);

    filter: blur(20px);

    pointer-events: none;

}


/* =========================================
   HEADING
========================================= */

.snapshot-heading {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

}


.snapshot-heading .section-subtitle {

    display: inline-block;

    margin-bottom: 14px;

    color: #00A651;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.snapshot-heading .section-title {

    max-width: 650px;
    margin: 0;
    color: #10212b;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
}


.snapshot-heading .section-title span {

    display: block;

    color: #00A651;

}


.snapshot-heading-text {

    max-width: 440px;

}


.snapshot-heading-text p {

    margin: 0;

    color: #60717a;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   SNAPSHOT CARD
========================================= */

.snapshot-card {

    position: relative;

    height: 100%;

    min-height: 300px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #e3ebe7;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 35px rgba(15, 35, 45, .045);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.snapshot-card:hover {

    transform: translateY(-8px);

    border-color: rgba(0, 166, 81, .25);

    box-shadow:
        0 20px 50px rgba(15, 35, 45, .10);

}


/* Green Top Line */

.snapshot-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #00A651,
            #00BFFF
        );

    transition: width .4s ease;

}


.snapshot-card:hover::before {

    width: 100%;

}


/* =========================================
   CARD TOP
========================================= */

.snapshot-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

}


.snapshot-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #ecfaf3;

    color: #00A651;

    font-size: 18px;

    transition: .3s ease;

}


.snapshot-card:hover .snapshot-icon {

    background: #00A651;

    color: #ffffff;

    transform: rotate(-4deg);

}


.snapshot-number {

    color: #dce6e2;

    font-size: 28px;

    line-height: 1;

    font-weight: 800;

}


/* =========================================
   CARD CONTENT
========================================= */

.snapshot-label {

    display: block;

    margin-bottom: 10px;

    color: #829199;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.snapshot-card h3 {
    min-height: 58px;
    margin: 0 0 13px;
    color: #142831;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}


.snapshot-card p {

    max-width: 250px;

    margin: 0;

    color: #718087;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================
   CARD BOTTOM LINE
========================================= */

.snapshot-line {

    position: absolute;

    left: 27px;

    bottom: 24px;

    width: 35px;

    height: 2px;

    background: #00A651;

    transition: width .3s ease;

}


.snapshot-card:hover .snapshot-line {

    width: 65px;

}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.snapshot-card-highlight {

    background:
        linear-gradient(
            145deg,
            #06232a,
            #0c3c38
        );

    border-color: transparent;

}


.snapshot-card-highlight .snapshot-label {

    color: rgba(255,255,255,.55);

}


.snapshot-card-highlight h3 {

    color: #ffffff;

}


.snapshot-card-highlight p {

    color: rgba(255,255,255,.62);

}


.snapshot-card-highlight .snapshot-number {

    color: rgba(255,255,255,.12);

}


.snapshot-card-highlight .snapshot-icon {

    background: rgba(0,217,126,.12);

    color: #00D97E;

}


.snapshot-card-highlight:hover {

    border-color: rgba(0,217,126,.25);

}


/* =========================================
   BOTTOM NOTE
========================================= */

.snapshot-note {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    max-width: 850px;

    margin: 35px auto 0;

    padding: 16px 20px;

    border: 1px solid #e2ebe7;

    border-radius: 10px;

    background: rgba(255,255,255,.75);

}


.snapshot-note-icon {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf8f3;

    color: #00A651;

    font-size: 11px;

}


.snapshot-note p {

    margin: 0;

    color: #75838a;

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .investment-snapshot {

        padding: 48px 0;

    }


    .snapshot-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

    }


    .snapshot-heading-text {

        max-width: 650px;

    }


    .snapshot-card {

        min-height: 280px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .investment-snapshot {

        padding: 48px 0;

    }


    .snapshot-heading .section-title {

        font-size: 34px;

    }


    .snapshot-heading-text p {

        font-size: 14px;

    }


    .snapshot-card {

        min-height: 270px;

        padding: 24px;

    }


    .snapshot-card h3 {

        min-height: auto;

        font-size: 20px;

    }


    .snapshot-note {

        align-items: flex-start;

        padding: 15px;

    }

}

/* =========================================
   WHY BIO-CNG, WHY NOW?
========================================= */

.why-biocng-section {

    position: relative;

    padding: 50px 0;

    overflow: hidden;

    background: #ffffff;

}


/* Background Detail */

.why-biocng-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -250px;

    top: 80px;

    border-radius: 50%;

    background: rgba(0, 166, 81, .045);

    filter: blur(30px);

    pointer-events: none;

}


/* =========================================
   LEFT CONTENT
========================================= */

.why-biocng-content {

    position: relative;

    z-index: 2;

    padding-right: 30px;

}


.why-biocng-content .section-subtitle {

    display: inline-block;

    margin-bottom: 15px;

    color: #00A651;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.why-biocng-content .section-title {
    margin: 0 0 24px;
    color: #10232d;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 700;
}


.why-biocng-content .section-title span {

    display: block;

    color: #00A651;

}


.why-biocng-intro {

    margin: 0 0 15px;

    color: #253942;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 600;

}


.why-biocng-text {

    margin: 0 0 28px;

    color: #718087;

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================
   HIGHLIGHT
========================================= */

.why-biocng-highlight {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 30px;

    padding: 18px;

    border-left: 3px solid #00A651;

    background: #f3faf6;

}


.why-highlight-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #ffffff;

    color: #00A651;

    box-shadow:
        0 5px 20px rgba(0,0,0,.05);

}


.why-biocng-highlight strong {

    display: block;

    margin-bottom: 5px;

    color: #17302a;

    font-size: 13px;

}


.why-biocng-highlight span {

    display: block;

    color: #718087;

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================
   LINK
========================================= */

.why-biocng-link {
    
    background: var(--gradient);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0, 166, 81, .25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;

}


.why-biocng-link i {



    transition: .3s ease;

}


.why-biocng-link:hover {

    color: #00A651;

}


.why-biocng-link:hover i {

    transform: translateX(5px);

}


/* =========================================
   RIGHT GRID
========================================= */

.why-biocng-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}


/* =========================================
   CARDS
========================================= */

.why-biocng-card {

    position: relative;

    min-height: 235px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #e3ebe7;

    border-radius: 16px;

    background: #f9fbfa;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.why-biocng-card:hover {

    transform: translateY(-7px);

    border-color: rgba(0,166,81,.25);

    background: #ffffff;

    box-shadow:
        0 20px 45px rgba(16,42,52,.09);

}


/* Number */

.why-card-number {

    position: absolute;

    top: 20px;

    right: 23px;

    color: #dfe9e4;

    font-size: 28px;

    line-height: 1;

    font-weight: 800;

}


/* Icon */

.why-card-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 12px;

    background: #e9f8f0;

    color: #00A651;

    font-size: 17px;

    transition: .3s ease;

}


.why-biocng-card:hover .why-card-icon {

    color: #ffffff;

    background: #00A651;

    transform: scale(1.05);

}


/* Heading */

.why-biocng-card h3 {

    margin: 0 0 10px;

    color: #172d36;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 750;

}


/* Text */

.why-biocng-card p {

    margin: 0;

    color: #74838a;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================
   FEATURED CARD
========================================= */

.why-card-featured {

    background:
        linear-gradient(
            145deg,
            #06262c,
            #0b433b
        );

    border-color: transparent;

}


.why-card-featured h3 {

    color: #ffffff;

}


.why-card-featured p {

    color: rgba(255,255,255,.62);

}


.why-card-featured .why-card-number {

    color: rgba(255,255,255,.10);

}


.why-card-featured .why-card-icon {

    background: rgba(0,217,126,.12);

    color: #00D97E;

}


/* =========================================
   WIDE CARD
========================================= */

.why-card-wide {

    grid-column: span 2;

    min-height: 180px;

    display: grid;

    grid-template-columns: 48px 1fr;

    column-gap: 18px;

    align-items: start;

}


.why-card-wide .why-card-icon {

    grid-row: span 2;

    margin-bottom: 0;

}


.why-card-wide h3 {

    margin-top: 2px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-biocng-section {

        padding: 50px 0;

    }


    .why-biocng-content {

        padding-right: 0;

    }


    .why-biocng-grid {

        margin-top: 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-biocng-section {

        padding: 48px 0;

    }


    .why-biocng-content .section-title {

        font-size: 40px;

        letter-spacing: -1.5px;

    }


    .why-biocng-intro {

        font-size: 15px;

    }


    .why-biocng-grid {

        grid-template-columns: 1fr;

    }


    .why-card-wide {

        grid-column: span 1;

        display: block;

        min-height: 235px;

    }


    .why-card-wide .why-card-icon {

        margin-bottom: 25px;

    }

}

/* =========================================
   INVESTOR FAQ SECTION
========================================= */

.investor-faq-section {

    position: relative;

    padding: 50px 0;

    background: #f5f9f7;

    overflow: hidden;

}


/* Background Decoration */

.investor-faq-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: -280px;

    bottom: -220px;

    border-radius: 50%;

    background: rgba(0, 166, 81, .06);

    filter: blur(30px);

    pointer-events: none;

}


/* =========================================
   LEFT CONTENT
========================================= */

.investor-faq-intro {

    position: relative;

    z-index: 2;

    padding-right: 35px;

}


.investor-faq-intro .section-subtitle {

    display: inline-block;

    margin-bottom: 15px;

    color: #00A651;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.investor-faq-intro .section-title {
    margin: 0 0 22px;
    color: #112832;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 700;
}


.investor-faq-intro .section-title span {

    display: block;

    color: #00A651;

}


.investor-faq-intro > p {

    max-width: 390px;

    margin: 0;

    color: #6f8087;

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================
   CONTACT CARD
========================================= */

.faq-contact-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    max-width: 390px;

    margin-top: 35px;

    padding: 17px;

    border: 1px solid #dfeae5;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(20,45,55,.05);

}


.faq-contact-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eaf8f0;

    color: #00A651;

}


.faq-contact-card span {

    display: block;

    margin-bottom: 3px;

    color: #91a0a5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.faq-contact-card strong {

    color: #18313b;

    font-size: 14px;

}


.faq-contact-card > a {

    width: 34px;

    height: 34px;

    margin-left: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #102d36;

    color: #ffffff;

    font-size: 11px;

    transition: .3s ease;

}


.faq-contact-card > a:hover {

    color: #ffffff;

    background: #00A651;

    transform: translateX(3px);

}


/* =========================================
   FAQ LIST
========================================= */

.investor-faq-list {

    position: relative;

    z-index: 2;

}


.investor-faq-item {

    margin-bottom: 12px;

    border: 1px solid #e0e9e5;

    border-radius: 12px;

    background: #ffffff;

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;

}


.investor-faq-item:has(
    .investor-faq-question:not(.collapsed)
) {

    border-color: rgba(0,166,81,.25);

    box-shadow:
        0 12px 35px rgba(15,45,55,.06);

}


/* =========================================
   QUESTION
========================================= */

.investor-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 24px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #182e37;

    text-align: left;

    font-size: 14px;

    font-weight: 700;

}


.investor-faq-question:hover {

    color: #00A651;

}


.investor-faq-question > span {

    display: flex;

    align-items: center;

    gap: 17px;

}


.investor-faq-question small {

    width: 27px;

    flex-shrink: 0;

    color: #a5b2b5;

    font-size: 10px;

    font-weight: 800;

}


.investor-faq-question i {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf8f2;

    color: #00A651;

    font-size: 10px;

    transition: transform .3s ease;

}


.investor-faq-question:not(.collapsed) i {

    transform: rotate(45deg);

    background: #00A651;

    color: #ffffff;

}


/* =========================================
   ANSWER
========================================= */

.investor-faq-answer {

    padding:

        0

        70px

        23px

        68px;

    color: #6f7f85;

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .investor-faq-section {

        padding: 48px 0;

    }


    .investor-faq-intro {

        padding-right: 0;

    }


    .investor-faq-intro > p {

        max-width: 650px;

    }


    .faq-contact-card {

        margin-bottom: 15px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .investor-faq-section {

        padding: 48px 0;

    }


    .investor-faq-intro .section-title {

        font-size: 38px;

        letter-spacing: -1.5px;

    }


    .investor-faq-intro > p {

        font-size: 13px;

    }


    .faq-contact-card {

        margin-top: 25px;

    }


    .investor-faq-question {

        padding: 18px;

        font-size: 13px;

    }


    .investor-faq-question > span {

        align-items: flex-start;

        gap: 12px;

    }


    .investor-faq-question small {

        margin-top: 2px;

    }


    .investor-faq-answer {

        padding:

            0

            18px

            20px

            57px;

        font-size: 12px;

        line-height: 1.75;

    }

}

.contact-map-section{
    width: 100%;
    height: auto;
    padding: 0;
}

.contact-map-section .contact-map-wrapper{
    width: 100%;
    height: auto;
}

.contact-map-section .contact-map-wrapper iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
}

/* =====================================================
   SINGLE BLOG PAGE
===================================================== */


/* =====================================================
   BLOG HERO
===================================================== */

.single-blog-hero {

    position: relative;

    padding: 45px 0 85px;

    background: #f5faf7;

    overflow: hidden;

}


.single-blog-hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -300px;

    right: -150px;

    border-radius: 50%;

    background: rgba(0,166,81,.055);

    filter: blur(30px);

}


.single-blog-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    left: -180px;

    bottom: -180px;

    border-radius: 50%;

    background: rgba(0,166,81,.035);

}


/* =====================================================
   BREADCRUMB
===================================================== */

.blog-breadcrumb {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 55px;

    font-size: 11px;

}


.blog-breadcrumb a {

    color: #718087;

    text-decoration: none;

    transition: .3s ease;

}


.blog-breadcrumb a:hover {

    color: #00A651;

}


.blog-breadcrumb i {

    color: #aab6b9;

    font-size: 8px;

}


.blog-breadcrumb span {

    max-width: 300px;

    overflow: hidden;

    color: #00A651;

    font-weight: 600;

    white-space: nowrap;

    text-overflow: ellipsis;

}


/* =====================================================
   BLOG HEADER
===================================================== */

.single-blog-header {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: 0 auto;

    text-align: center;

}


/* =====================================================
   CATEGORY
===================================================== */

.single-blog-category {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding: 8px 14px;

    border: 1px solid rgba(0,166,81,.18);

    border-radius: 50px;

    background: rgba(0,166,81,.06);

    color: #00A651;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-decoration: none;

    text-transform: uppercase;

}


.category-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #00A651;

    box-shadow:
        0 0 0 4px rgba(0,166,81,.10);

}


/* =====================================================
   TITLE
===================================================== */

.single-blog-header h1 {

    margin: 0 auto 23px;

    color: #10252f;

    font-size: 42px;

    line-height: 1.06;

    font-weight: 800;

}


/* =====================================================
   EXCERPT
===================================================== */

.single-blog-excerpt {

    max-width: 730px;

    margin: 0 auto;

    color: #6e7e84;

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   META
===================================================== */

.single-blog-meta {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;

}


.blog-author {

    display: flex;

    align-items: center;

    gap: 10px;

    text-align: left;

}


.author-avatar {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #102f38;

    color: #00D97E;

    font-size: 13px;

}


.blog-author span {

    display: block;

    margin-bottom: 3px;

    color: #9ba7aa;

    font-size: 9px;

}


.blog-author strong {

    display: block;

    color: #263b43;

    font-size: 10px;

}


.blog-meta-divider {

    width: 1px;

    height: 28px;

    background: #d8e3df;

}


.blog-meta-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #718087;

    font-size: 11px;

}


.blog-meta-item i {

    color: #00A651;

}


/* =====================================================
   FEATURED IMAGE
===================================================== */

.single-blog-featured-wrapper {

    position: relative;

    z-index: 5;

    margin-top: -35px;

}


.single-blog-featured-image {

    width: 100%;

    max-width: 1150px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 20px;

    background: #e8efeb;

    box-shadow:
        0 25px 70px rgba(15,42,50,.15);

}


.single-blog-featured-image img {

    width: 100%;

    height: auto;

    display: block;

    aspect-ratio: 16 / 8.5;

    object-fit: cover;

}


/* =====================================================
   CONTENT SECTION
===================================================== */

.single-blog-content-section {

    padding: 95px 0 110px;

    background: #ffffff;

}


/* =====================================================
   ARTICLE
===================================================== */

.single-blog-article {

    position: relative;

    min-width: 0;

}


/* =====================================================
   READING BAR
===================================================== */

.article-reading-bar {

    position: fixed;

    z-index: 9999;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: transparent;

}


.article-reading-progress {

    width: 0%;

    height: 100%;

    background: #00A651;

    transition: width .05s linear;

}


/* =====================================================
   CONTENT TYPOGRAPHY
===================================================== */

.single-blog-content {

    max-width: 820px;

    color: #4f6067;

    font-size: 16px;

    line-height: 1.95;

}


.single-blog-content > p:first-child {

    color: #344b53;

    font-size: 18px;

    line-height: 1.85;

}


.single-blog-content h2 {

    margin: 50px 0 18px;

    color: #102b35;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -.6px;

}


.single-blog-content h3 {

    margin: 38px 0 15px;

    color: #17333d;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 750;

}


.single-blog-content h4 {

    margin: 30px 0 12px;

    color: #17333d;

    font-size: 19px;

    font-weight: 700;

}


.single-blog-content p {

    margin-bottom: 22px;

}


.single-blog-content a {

    color: #00A651;

    font-weight: 600;

}


.single-blog-content ul,
.single-blog-content ol {

    margin: 20px 0 25px;

    padding-left: 25px;

}


.single-blog-content li {

    margin-bottom: 10px;

}


.single-blog-content blockquote {

    position: relative;

    margin: 35px 0;

    padding: 28px 30px 28px 35px;

    border-left: 4px solid #00A651;

    border-radius: 0 12px 12px 0;

    background: #f2f9f5;

    color: #29434b;

    font-size: 17px;

    font-weight: 600;

    line-height: 1.75;

}


.single-blog-content img {

    max-width: 100%;

    height: auto;

    margin: 25px 0;

    border-radius: 12px;

}


.single-blog-content table {

    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

}


.single-blog-content th,
.single-blog-content td {

    padding: 12px 15px;

    border: 1px solid #dfe8e4;

    text-align: left;

}


.single-blog-content th {

    background: #f2f8f5;

    color: #17333d;

}


/* =====================================================
   TAGS
===================================================== */

.single-blog-tags {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 50px;

    padding-top: 25px;

    border-top: 1px solid #e6ece9;

}


.tags-label {

    margin-right: 5px;

    color: #53656b;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.single-blog-tags a {

    padding: 7px 11px;

    border: 1px solid #e0e8e4;

    border-radius: 50px;

    background: #f7faf8;

    color: #617178;

    font-size: 10px;

    text-decoration: none;

    transition: .3s ease;

}


.single-blog-tags a:hover {

    border-color: #00A651;

    background: #00A651;

    color: #ffffff;

}


/* =====================================================
   SHARE
===================================================== */

.single-blog-share {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 25px;

    padding: 18px 0;

    border-top: 1px solid #e6ece9;

    border-bottom: 1px solid #e6ece9;

}


.single-blog-share > span {

    color: #304750;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.share-buttons {

    display: flex;

    gap: 7px;

}


.share-buttons a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5f1;

    color: #52666c;

    font-size: 11px;

    text-decoration: none;

    transition: .3s ease;

}


.share-buttons a:hover {

    background: #00A651;

    color: #ffffff;

    transform: translateY(-3px);

}


/* =====================================================
   AUTHOR BOX
===================================================== */

.single-blog-author-box {

    display: flex;

    gap: 20px;

    margin-top: 40px;

    padding: 28px;

    border: 1px solid #e0e9e5;

    border-radius: 15px;

    background: #f7faf8;

}


.author-box-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #102f38;

    color: #00D97E;

}


.author-box-content span {

    display: block;

    margin-bottom: 6px;

    color: #00A651;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.author-box-content h3 {

    margin: 0 0 8px;

    color: #18323b;

    font-size: 17px;

    font-weight: 800;

}


.author-box-content p {

    margin: 0;

    color: #718087;

    font-size: 12px;

    line-height: 1.75;

}


/* =====================================================
   POST NAVIGATION
===================================================== */

.post-navigation {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 40px;

}


.post-nav-item {

    min-height: 120px;

    padding: 20px;

    border: 1px solid #e2eae7;

    border-radius: 13px;

    background: #ffffff;

    transition: .3s ease;

}


.post-nav-item:hover {

    border-color: rgba(0,166,81,.3);

    box-shadow:
        0 12px 35px rgba(15,42,50,.06);

}


.post-nav-item.next {

    text-align: right;

}


.post-nav-item span {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: #00A651;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.post-nav-item.next span {

    justify-content: flex-end;

}


.post-nav-item a {

    display: block;

    color: #263d46;

    font-size: 12px;

    line-height: 1.6;

    font-weight: 700;

    text-decoration: none;

}


.post-nav-item a:hover {

    color: #00A651;

}


/* =====================================================
   SIDEBAR
===================================================== */

.blog-sidebar {

    position: sticky;

    top: 30px;

}


.sidebar-widget {

    margin-bottom: 28px;

    padding: 25px;

    border: 1px solid #e1e9e5;

    border-radius: 15px;

    background: #ffffff;

}


.sidebar-widget-heading {

    margin-bottom: 22px;

    padding-bottom: 15px;

    border-bottom: 1px solid #e6ece9;

}


.sidebar-widget-heading span {

    display: block;

    margin-bottom: 5px;

    color: #00A651;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.sidebar-widget-heading h3 {

    margin: 0;

    color: #18323b;

    font-size: 21px;

    font-weight: 800;

}


/* =====================================================
   LATEST POSTS
===================================================== */

.latest-posts-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.latest-post-item {

    display: grid;

    grid-template-columns: 85px 1fr;

    gap: 13px;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf1ef;

}


.latest-post-item:last-child {

    padding-bottom: 0;

    border-bottom: 0;

}


.latest-post-image {

    width: 85px;

    height: 70px;

    overflow: hidden;

    border-radius: 8px;

    background: #eaf1ed;

}


.latest-post-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: .4s ease;

}


.latest-post-item:hover
.latest-post-image img {

    transform: scale(1.08);

}


.latest-post-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf6f0;

    color: #00A651;

}


.latest-post-content {

    min-width: 0;

}


.latest-post-content > span {

    display: block;

    margin-bottom: 4px;

    color: #00A651;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.latest-post-content h4 {

    margin: 0 0 7px;

    font-size: 12px;

    line-height: 1.45;

}


.latest-post-content h4 a {

    color: #243b44;

    text-decoration: none;

    transition: .25s ease;

}


.latest-post-content h4 a:hover {

    color: #00A651;

}


.latest-post-content time {

    color: #9aa6aa;

    font-size: 9px;

}


.latest-post-content time i {

    margin-right: 3px;

    color: #00A651;

}


/* =====================================================
   CATEGORY LIST
===================================================== */

.blog-category-list {

    display: flex;

    flex-direction: column;

}


.blog-category-list a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 11px 0;

    border-bottom: 1px solid #edf1ef;

    color: #52666d;

    font-size: 11px;

    text-decoration: none;

    transition: .25s ease;

}


.blog-category-list a:last-child {

    border-bottom: 0;

}


.blog-category-list a:hover {

    padding-left: 5px;

    color: #00A651;

}


.blog-category-list small {

    min-width: 23px;

    padding: 3px 6px;

    border-radius: 50px;

    background: #edf7f1;

    color: #00A651;

    font-size: 8px;

    text-align: center;

}


/* =====================================================
   INVESTOR SIDEBAR CARD
===================================================== */

.sidebar-investor-card {

    position: relative;

    overflow: hidden;

    margin-bottom: 30px;

    padding: 30px;

    border-radius: 16px;

    background:

        linear-gradient(
            145deg,
            #06252c,
            #0a493e
        );

}


.sidebar-investor-card::after {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    right: -80px;

    top: -80px;

    border: 1px solid rgba(0,217,126,.15);

    border-radius: 50%;

}


.sidebar-investor-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: rgba(0,217,126,.1);

    color: #00D97E;

}


.sidebar-investor-card > span {

    display: block;

    margin-bottom: 8px;

    color: #00D97E;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.sidebar-investor-card h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 800;

}


.sidebar-investor-card p {

    margin: 0 0 20px;

    color: rgba(255,255,255,.62);

    font-size: 11px;

    line-height: 1.75;

}


.sidebar-investor-card > a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

}


.sidebar-investor-card > a i {

    color: #00D97E;

    transition: .3s ease;

}


.sidebar-investor-card > a:hover i {

    transform: translateX(5px);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .single-blog-content-section {

        padding-top: 70px;

    }


    .blog-sidebar {

        position: relative;

        top: auto;

        margin-top: 20px;

    }


    .single-blog-content {

        max-width: 100%;

    }

}


@media (max-width: 767px) {

    .single-blog-hero {

        padding: 30px 0 65px;

    }


    .blog-breadcrumb {

        margin-bottom: 40px;

    }


    .single-blog-header h1 {

        font-size: 39px;

        letter-spacing: -1.5px;

    }


    .single-blog-excerpt {

        font-size: 14px;

    }


    .single-blog-meta {

        flex-direction: column;

        gap: 14px;

    }


    .blog-meta-divider {

        display: none;

    }


    .single-blog-featured-wrapper {

        margin-top: -25px;

    }


    .single-blog-featured-image {

        border-radius: 12px;

    }


    .single-blog-featured-image img {

        aspect-ratio: 16 / 10;

    }


    .single-blog-content-section {

        padding: 65px 0 75px;

    }


    .single-blog-content {

        font-size: 14px;

        line-height: 1.85;

    }


    .single-blog-content > p:first-child {

        font-size: 16px;

    }


    .single-blog-content h2 {

        margin-top: 40px;

        font-size: 25px;

    }


    .single-blog-content h3 {

        font-size: 20px;

    }


    .single-blog-share {

        align-items: flex-start;

        flex-direction: column;

    }


    .single-blog-author-box {

        flex-direction: column;

        padding: 22px;

    }


    .post-navigation {

        grid-template-columns: 1fr;

    }


    .post-nav-item.next {

        text-align: left;

    }


    .post-nav-item.next span {

        justify-content: flex-start;

    }


    .sidebar-widget {

        padding: 20px;

    }

}