:root {
    --evo-black-900: #000000;
    --evo-black-800: #0B0B0D;
    --evo-black-700: #121214;
    --evo-black-600: #1C1C1F;
    --evo-black-500: #2A2A2E;
    --evo-black-400: #3A3A40;

    --evo-cyan-900: #003A4D;
    --evo-cyan-800: #005E7A;
    --evo-cyan-700: #007EA3;
    --evo-cyan-600: #00A4CC;
    --evo-cyan-500: #19BCE6;
    --evo-cyan-400: #5FD2F0;
    --evo-cyan-300: #9BE4F7;
    --evo-cyan-200: #CFF3FB;

    --evo-lavender-900: #3A2C36;
    --evo-lavender-800: #523A4C;
    --evo-lavender-700: #6C4C65;
    --evo-lavender-600: #8A6382;
    --evo-lavender-500: #B38AAE;
    --evo-lavender-400: #D0B2CB;
    --evo-lavender-300: #E7D6E4;
    --evo-lavender-200: #F3EAF1;

    --evo-grey-900: #1F1F23;
    --evo-grey-800: #2C2C31;
    --evo-grey-700: #3B3B42;
    --evo-grey-600: #4C4C54;
    --evo-grey-500: #6A6A73;
    --evo-grey-400: #8F8F98;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-grey);
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--evo-grey-700);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.display-heading {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.hero-content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 64px;
    letter-spacing: 2px;
}

.about-title,
.section-heading h2 {
    font-size: 42px;
    letter-spacing: 1.5px;
}

p,
.about-sub-text,
.content-text {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

button,
.biogas-btn,
.hero-btn-outline {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
}

/* ================================================================================================ Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--evo-black-700);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--evo-cyan-600),
            var(--evo-cyan-500));
    border-radius: 10px;
    border: 2px solid var(--evo-black-700);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            var(--evo-cyan-500),
            var(--evo-cyan-400));
}

::-webkit-scrollbar-corner {
    background: var(--evo-black-700);
}

/* ========================================================================================================== BUTTONS */
.animated-button {
    position: relative;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    padding: 8px 28px;
    border: 4px solid;
    border-color: transparent;
    font-size: 14px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #1e1e1e;
    box-shadow: 0 0 0 2px #1e1e1e;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: #1e1e1e;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--evo-cyan-400);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #1e1e1e;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #1e1e1e;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px var(--evo-cyan-400);
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

/* SECOND BUTTON */
.plan-btn {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #f9fafb;
    background: transparent;
    border: 2px solid var(--evo-cyan-500);
    padding: 6px 8px 6px 20px;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.plan-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    left: -100%;
    background: var(--evo-cyan-200);
    border-radius: 50%;
    transition: all 0.7s ease;
    z-index: -1;
}

.plan-btn:hover::before {
    left: 0;
    transform: scale(2);
}

.plan-btn:hover {
    color: black;
}

.plan-icon {
    width: 30px;
    height: 30px;
    background: #f9fafb;
    border-radius: 50%;
    padding: 6px;
    border: 1px solid #374151;
    transform: rotate(45deg);
    transition: all 0.3s linear;
}

.plan-icon path {
    fill: #1f2937;
}

.plan-btn:hover .plan-icon {
    transform: rotate(90deg);
}

/* ========================================================================================================== NAVBAR */
.biogas-navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

.biogas-navbar {
    margin: 22px auto 0;
    width: 98%;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;
    border: 1px solid transparent;
    padding: 4px 0;

    transition:
        margin 0.55s cubic-bezier(.4, 0, .2, 1),
        width 0.55s cubic-bezier(.4, 0, .2, 1),
        border-radius 0.55s cubic-bezier(.4, 0, .2, 1),
        background 0.55s cubic-bezier(.4, 0, .2, 1),
        backdrop-filter 0.55s ease,
        box-shadow 0.55s cubic-bezier(.4, 0, .2, 1),
        border-color 0.55s ease,
        padding 0.55s ease;
}

.biogas-navbar.scrolled {
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
    background: rgba(243, 243, 243, 0.356);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .05),
        0 12px 40px rgba(0, 0, 0, .4);
    border-color: rgba(255, 255, 255, .06);
    padding: 2px 0;
}

.biogas-navbar.scrolled .nav-link {
    color: #000000;
}

.biogas-navbar.scrolled .plan-btn {
    color: #000000;
}

.biogas-navbar.scrolled .navbar-brand img {
    filter: none;
}


.navbar-brand img {
    width: 160px;
    height: 70px;
    object-fit: contain;
    transition: filter 0.4s ease;
    filter: brightness(1.8) contrast(1.2);
    /* filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); */
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, .88);
    margin: 0 4px;
    padding: 8px 14px !important;
    position: relative;
    letter-spacing: .02em;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    width: 0%;
    height: 2px;
    border-radius: 2px;
    background: var(--evo-cyan-500);
    transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link:hover::after {
    width: calc(100% - 28px);
}

.nav-link.active-link {
    color: var(--evo-cyan-400) !important;
}

.nav-link.active-link::after {
    width: calc(100% - 28px);
    background: var(--evo-cyan-500);
}

.navbar-toggler {
    border: none !important;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .bi {
    color: #fff;
    font-size: 1.8rem;
}


/* ========================================================================================================== HERO SECTION */
.hero-wrapper {
    padding: 10px;
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .45) 60%,
            rgba(0, 0, 0, .15) 100%),

        linear-gradient(180deg,
            rgba(0, 0, 0, .25) 0%,
            transparent 40%,
            transparent 70%,
            rgba(0, 0, 0, .55) 100%);

    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-top: 120px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evo-cyan-400);
    margin-bottom: 18px;
}

.hero-eyebrow .eline {
    width: 30px;
    height: 2px;
    background: var(--evo-cyan-500);
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--evo-cyan-400);
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    max-width: 480px;
}

.hero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thumb {
    width: 115px;
    height: 78px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: all .35s;
}

.thumb:hover {
    opacity: .9;
}

.thumb.active {
    opacity: 1;
    border-color: var(--evo-cyan-500);
    transform: scale(1.06);
    box-shadow: 0 8px 26px rgba(0, 164, 204, .35);
}

.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
}

.dot.active {
    background: var(--evo-cyan-500);
}


/* ========================================================================== ABOUT SECTION ========================= */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    overflow: hidden;
}

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.eyebrow-line span.line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--evo-cyan-500);
    border-radius: 2px;
}

.eyebrow-label {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evo-cyan-500);
}

.about-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--evo-black-600);
    margin-bottom: 0;
}

.about-headline em {
    font-style: normal;
    color: var(--evo-cyan-500);
}

.stat-block {
    padding: 0 0 36px;
    position: relative;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.stat-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-block:not(:last-child)::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: var(--evo-grey-700);
    margin-top: 28px;
}

.stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--evo-cyan-500);
    line-height: 1;
    letter-spacing: -.02em;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.stat-number sup {
    font-size: .45em;
    color: var(--evo-cyan-400);
    top: -0.3em;
}

.stat-label {
    margin-top: 8px;
    font-size: .82rem;
    font-weight: 400;
    color: var(--evo-grey-400);
    line-height: 1.45;
    max-width: 140px;
}

.video-card-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    transform: scale(.95) translateY(20px);
    transition: opacity .85s ease .15s, transform .85s ease .15s;
}

.video-card-wrap.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.video-card-wrap img.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.video-card-wrap:hover img.bg-img {
    transform: scale(1.04);
}

.watch-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    background: rgba(11, 11, 13, .55);
    backdrop-filter: blur(6px);
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.card-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 3;
    background: rgba(11, 11, 13, .72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--evo-cyan-500);
    animation: blink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.badge-text {
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.3;
}

.badge-text strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
}

.right-content {
    transform: translateX(30px);
    transition: opacity .8s ease .2s, transform .8s ease .2s;
}

.right-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.icon-leaf-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--evo-cyan-900), var(--evo-black-600));
    border: 1.5px solid rgba(0, 164, 204, .3);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 28px rgba(0, 164, 204, .18);
}

.icon-leaf-wrap svg {
    width: 28px;
    height: 28px;
}

.right-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--evo-grey-400);
    line-height: 1.55;
    margin-bottom: 18px;
}

.right-body {
    font-size: .88rem;
    color: var(--evo-grey-400);
    line-height: 1.75;
    margin-bottom: 16px;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.feature-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--evo-black-600);
    border: 1px solid var(--evo-grey-700);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: .78rem;
    color: var(--evo-grey-400);
    transition: border-color .3s, color .3s;
}

.pill:hover {
    border-color: var(--evo-cyan-700);
    color: var(--evo-cyan-300);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--evo-cyan-600);
    flex-shrink: 0;
}

/* ============================================================================================ OUR SERVICES SECTION */
:root {
    --cyan: #5BC8F5;
    --cyan-dim: #3da8d4;
    --pink: #E8C4D8;
    --pink-bright: #d49fc0;
    --dark: #0D0D0F;
    --dark-2: #131318;
    --dark-3: #1A1A22;
    --dark-4: #22222C;
    --charcoal: #2C2C38;
    --border: rgba(91, 200, 245, 0.15);
    --text-main: #F0F0F5;
    --text-muted: #8888A0;
    --green: #4CAF72;
    --green-dim: rgba(76, 175, 114, 0.12);
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 5px 14px;
    background: rgba(91, 200, 245, 0.08);
    border: 1px solid rgba(91, 200, 245, 0.2);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-main);
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
}

.line-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    border-radius: 2px;
    margin: 20px 0;
}

.what-we-do {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.evo-card {
    position: relative;
    background: var(--evo-black-600);
    border: 1px solid var(--evo-black-400);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color .4s ease,
        box-shadow .4s ease,
        transform .4s ease;
}

.evo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 55%;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-500), var(--evo-cyan-700));
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.evo-card:hover {
    border-color: rgba(25, 188, 230, .28);
    box-shadow:
        0 0 0 1px rgba(25, 188, 230, .1),
        0 24px 60px rgba(0, 0, 0, .55),
        0 0 40px rgba(0, 164, 204, .12);
    transform: translateY(-6px);
}

.evo-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
    transition: clip-path .5s cubic-bezier(.77, 0, .18, 1);
}

.evo-card:hover .card-img-wrap {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease, filter .5s ease;
    filter: brightness(.82) saturate(1.05);
}

.evo-card:hover .card-img-wrap img {
    transform: scale(1.06);
    filter: brightness(.92) saturate(1.15);
}

.card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 164, 204, .04) 0%,
            rgba(0, 0, 0, .35) 100%);
    transition: opacity .4s;
}

.evo-card:hover .card-img-wrap::after {
    opacity: .5;
}

.card-body-inner {
    padding: 24px 24px 28px;
    position: relative;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.title-accent {
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background: var(--evo-cyan-600);
    flex-shrink: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1) .05s;
}

.evo-card:hover .title-accent {
    transform: scaleY(1);
}

.card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.card-desc {
    font-size: .83rem;
    color: var(--evo-grey-400);
    line-height: 1.7;
    margin-bottom: 22px;
    min-height: 70px;
}

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid var(--evo-grey-700);
    color: var(--evo-grey-400);
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 7px 8px 7px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition:
        border-color .3s,
        color .3s,
        background .3s,
        box-shadow .3s,
        gap .3s;
}

.evo-card:hover .btn-read {
    border-color: var(--evo-cyan-600);
    color: #fff;
    background: rgba(0, 164, 204, .1);
    box-shadow: 0 0 18px rgba(0, 164, 204, .2);
    gap: 14px;
}

.btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--evo-grey-700);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background .3s, transform .35s;
}

.evo-card:hover .btn-arrow {
    background: var(--evo-cyan-600);
    transform: rotate(-45deg);
}

.btn-arrow svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.evo-card {
    transform: translateY(36px);
    transition:
        opacity .65s ease,
        transform .65s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* ================================================================================================= COMPRESSED BIOGAS SECTION */
.opportunity {
    padding: 80px 0;
    overflow: hidden;
}

.opportunity .col-sm-6 {
    display: flex;
}

.opp-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 22px;
    border-radius: 12px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}

.opp-card:hover {
    border-color: rgba(91, 200, 245, 0.4);
    transform: translateY(-4px);
}

.opp-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(91, 200, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--cyan);
}

.opp-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--evo-cyan-600);
}

.opp-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.big-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan) 30%, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-cyan {
    color: var(--cyan);
}

.label-muted {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-inline-flex {
    display: inline-flex;
}

.opp-stats-box {
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.cbg-stat {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}

.stat-cyan {
    color: var(--cyan);
}

.stat-pink {
    color: var(--pink);
}

.stat-green {
    color: var(--green);
}

.stat-divider {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.cbg-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ================================================================================================== BIOMASS PELLETS SECTION */
.biomass-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.display-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
}

.tag-biomass {
    color: var(--pink);
    background: rgba(232, 196, 216, 0.08);
    border-color: rgba(232, 196, 216, 0.2);
}

.text-pink {
    color: var(--pink);
}

.line-gradient {
    background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.metric-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
}

.metric-pink {
    color: var(--pink);
}

.metric-cyan {
    color: var(--cyan);
}

.metric-green {
    color: var(--green);
}

.metric-gold {
    color: #F5C55B;
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-outline-pink {
    border-color: rgba(232, 196, 216, 0.3);
    color: var(--pink);
}

.process-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.icon-pink {
    background: rgba(232, 196, 216, 0.12);
    border: 1px solid rgba(232, 196, 216, 0.2);
    color: var(--pink);
}

.icon-cyan {
    background: rgba(91, 200, 245, 0.1);
    border: 1px solid rgba(91, 200, 245, 0.2);
    color: var(--cyan);
}

.icon-green {
    background: rgba(76, 175, 114, 0.1);
    border: 1px solid rgba(76, 175, 114, 0.2);
    color: var(--green);
}

.step-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-main);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-label {
    margin-left: auto;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.step-line {
    width: 1px;
    height: 16px;
    background: var(--border);
    margin-left: 20px;
}

.process-highlight {
    margin-top: 16px;
    padding: 16px;
    background: rgba(76, 175, 114, 0.07);
    border: 1px solid rgba(76, 175, 114, 0.15);
    border-radius: 10px;
}

.highlight-green {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
}

/* ===================================================================================== WHY US SECTION */
.why-us {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.light-why-us-section {
    padding: 80px 0;
    overflow: hidden;
    /* background: var(--dark); */
}

.why-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.why-card:hover {
    border-color: rgba(232, 196, 216, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.why-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: "Bebas Neue", sans-serif;
    color: rgba(91, 200, 245, 0.1);
    line-height: 1;
    margin-bottom: 14px;
}

.why-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--text-main);
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.section-sub-width {
    max-width: 680px;
}

.why-icon img {
    width: 60px;
    height: 65px;
    margin-bottom: 25px;
}

.why-cyan-icon img {
    filter: invert(58%) sepia(84%) saturate(400%) hue-rotate(140deg) brightness(95%) contrast(95%);
}

.why-pink-icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(87%) saturate(1100%) hue-rotate(300deg);
}

.why-green-icon img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(85%) saturate(450%) hue-rotate(80deg);
}

.why-gold-icon img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(67%) saturate(415%) hue-rotate(357deg) brightness(101%) contrast(92%);
}


/* ===================================================================================================== OUR PROCESS SECTION */
.process-section {
    padding: 80px 0;
    overflow: hidden;
}

.dark-process-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.dark-process-section .our-process-step h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 2px;
    color: var(--text-main);
}

.our-process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.our-process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    opacity: 0.3;
}

.our-process-step:last-child::after {
    display: none;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    transition: all 0.3s;
    position: relative;
}

.step-circle.active {
    background: rgba(91, 200, 245, 0.12);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(91, 200, 245, 0.2);
    color: var(--cyan);
}

.step-circle.pink-active {
    background: rgba(232, 196, 216, 0.1);
    border-color: var(--pink);
    box-shadow: 0 0 30px rgba(232, 196, 216, 0.15);
    color: var(--pink);
}

.our-process-step h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.our-process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-sub-width {
    max-width: 500px;
}

.process-col {
    flex: 1;
    min-width: 130px;
}

.step-circle.green-active {
    background: rgba(76, 175, 114, 0.12);
    border-color: var(--green);
    color: var(--green);
}

.step-circle.green-glow {
    background: rgba(76, 175, 114, 0.15);
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 0 30px rgba(76, 175, 114, 0.25);
}

/* =============================================================================================== TEAM SECTION */
.team-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark-2);
}

.light-team-section {
    padding: 80px 0;
    overflow: hidden;
}

.team-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;

    display: flex;
    flex-direction: column;
}


.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 200, 245, 0.3);
}

.team-card-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-initials {
    font-size: 3rem;
    font-weight: 800;
    z-index: 1;
}

.team-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-card-body h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 2px;
    color: var(--text-main);
}

.team-card-body .role {
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.team-card-body .exp-badge {
    display: inline-block;
    background: rgba(91, 200, 245, 0.08);
    border: 1px solid rgba(91, 200, 245, 0.2);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 11px;
    color: var(--cyan);
    margin-top: 10px;
    width: max-content;
}

.av-1 {
    background: linear-gradient(135deg, #1a3a4a, #0d2030);
    color: var(--cyan);
}

.av-2 {
    background: linear-gradient(135deg, #2a1a3a, #180d28);
    color: var(--pink);
}

.av-3 {
    background: linear-gradient(135deg, #1a3a2a, #0d2018);
    color: var(--green);
}

.av-4 {
    background: linear-gradient(135deg, #3a2a1a, #28180d);
    color: #F5C55B;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-header {
    height: 180px;
    overflow: hidden;
}


.team-nav {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    /* margin-top: 60px; */
}

.team-slider .swiper-slide {
    height: auto;
    /*display: flex;*/
    padding-top: 10px;
}

.light-team-section .swiper-button-next,
.light-team-section .swiper-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--cyan);
    color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}


/* =================================================================================================================== CTA SECTION */
.cta-section {
    padding: 60px 0;
    overflow: hidden;
}

.cta-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(91, 200, 245, 0.08) 0%, transparent 60%);
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(232, 196, 216, 0.05) 0%, transparent 60%);
}

.cta-box>* {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-contact-item i {
    color: var(--cyan);
    font-size: 18px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(91, 200, 245, 0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(91, 200, 245, 0.4);
    color: var(--dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.btn-outline-custom:hover {
    border-color: rgba(91, 200, 245, 0.5);
    background: rgba(91, 200, 245, 0.05);
    color: var(--cyan);
    transform: translateY(-3px);
}

/* ===================================================================================================================== FOOTER */
footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer-brand {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(6px);
    margin-bottom: 15px;
}


.footer-brand img {
    height: 100px;
    /* margin-bottom: 16px; */
}

.footer-brand img {
    /* filter: brightness(1.8) contrast(1.2); */
}


.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    width: 360px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background 0.2s;
}

.footer-links a:hover::before {
    background: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: auto;
}

.footer-logo-text {
    display: none;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 12px;
}

.policy-framework-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    font-size: 0.83rem;
}

.policy-title {
    font-weight: 600;
}

.policy-satat {
    color: var(--cyan);
}

.policy-samarth {
    color: var(--pink);
}

.policy-gail {
    color: var(--green);
}

.policy-desc {
    color: var(--text-muted);
    margin-left: 8px;
}

.footer-meta-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(91, 200, 245, 0.08);
}

/* ================================================================================================== BREADCRUMB WRAPPER  */
.breadcrumb-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px;
}

.breadcrumb-wrapper .bc-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
    z-index: 0;
}

.breadcrumb-wrapper:hover .bc-bg {
    transform: scale(1);
}

.breadcrumb-wrapper .bc-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 10, 20, .65) 50%,
            rgba(0, 164, 204, .12) 100%);
    z-index: 1;
}

.bc-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 160px 0px 90px;
}

.bc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--evo-cyan-400);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(14px);
    animation: bcFadeUp .6s ease .1s forwards;
}

.bc-eyebrow .eline {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--evo-cyan-500);
    border-radius: 2px;
}

.bc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    transform: translateY(18px);
    animation: bcFadeUp .65s ease .25s forwards;
}

.bc-title em {
    font-style: normal;
    color: var(--evo-cyan-400);
}

.bc-trail {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(14px);
    animation: bcFadeUp .65s ease .4s forwards;
}

.bc-trail li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 400;
}

.bc-trail li a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .25s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bc-trail li a:hover {
    color: var(--evo-cyan-400);
}

.bc-trail li a i {
    font-size: .75rem;
}

.bc-trail li .bc-sep {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    color: rgba(255, 255, 255, .25);
    font-size: .7rem;
}

.bc-trail li.bc-active span {
    color: var(--evo-cyan-500);
    font-weight: 500;
}

@keyframes bcFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================================================== ABOUT PAGE */
.about-section {
    background: #f0f2f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 164, 204, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 164, 204, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.about-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.about-eyebrow-row .eline {
    width: 32px;
    height: 2px;
    background: var(--evo-cyan-600);
    border-radius: 2px;
}

.eyebrow-row span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--evo-cyan-600);
}

.about-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    letter-spacing: 1.5px;
    line-height: 1.08;
    color: #0d0d0d;
    margin-bottom: 0;
}

.about-headline .hl-cyan {
    color: var(--evo-cyan-600);
}

.about-head-col {
    transition: opacity .7s ease, transform .7s ease;
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, .06);
    transition: opacity .8s ease .1s, transform .8s ease .1s;
}

.about-img-wrap img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    display: block;
    transition: transform 7s ease;
    filter: brightness(.88) saturate(1.1);
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, transparent 100%);
    padding: 44px 20px 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-img-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--evo-cyan-500);
    flex-shrink: 0;
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.about-img-badge .badge-lines strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.about-img-badge .badge-lines span {
    font-size: .7rem;
    color: rgba(255, 255, 255, .65);
}

.about-para-lead {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-para {
    font-size: 16px;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-stats-bar {
    margin: 60px 50px 0px;
    background: #0d0d0f;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.about-stats-item {
    flex: 1;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    cursor: default;
    transition: opacity .65s ease, transform .65s ease, background .3s;
}

.about-stats-item:hover {
    background: rgba(0, 164, 204, .05);
}

.about-stats-item+.about-stats-item::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, .07);
}

.about-stats-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    letter-spacing: 1px;
    color: var(--evo-cyan-500);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.about-stats-number sup {
    font-size: .42em;
    color: var(--evo-cyan-400);
}

.about-stats-label {
    font-size: .76rem;
    font-weight: 400;
    color: var(--evo-grey-400);
    line-height: 1.55;
    max-width: 150px;
    margin: 0 auto;
}

/* ========================================================================== MISSION, VISION AND VALUES SECTION */
.mv-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.mv-card {
    background: var(--evo-black-600);
    border: 1px solid var(--evo-black-400);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 55%;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-500), var(--evo-cyan-700));
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.mv-card:hover {
    border-color: rgba(25, 188, 230, .28);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45), 0 0 40px rgba(0, 164, 204, .1);
}

.mv-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.mv-card .deco-letter {
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--evo-cyan-900), var(--evo-black-500));
    border: 1.5px solid rgba(0, 164, 204, .25);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 164, 204, .15);
}

.mv-icon i {
    font-size: 1.3rem;
    color: var(--evo-cyan-500);
}

.mv-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}

.mv-card p {
    font-size: .84rem;
    color: var(--evo-grey-400);
    line-height: 1.8;
}

/* ============================================================================================== SERVICES PAGE */
.services-hero {
    background: var(--evo-black-800);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 164, 204, .18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(179, 138, 174, .1) 0%, transparent 55%);
    pointer-events: none;
}

.services-hero .bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 16vw, 15rem);
    color: rgba(255, 255, 255, .03);
    letter-spacing: .08em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* .eyebrow-row {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .eyebrow-row .eline {
        width: 30px;
        height: 2px;
        background: var(--evo-cyan-500);
        border-radius: 2px;
    }

    .eyebrow-row span {
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--evo-cyan-400);
    } */

.services-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
}

.services-heading em {
    font-style: normal;
    color: var(--evo-cyan-400);
}

.services-sub {
    font-size: .92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.connection-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.cs-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 164, 204, .15);
    border: 1.5px solid rgba(25, 188, 230, .35);
    display: grid;
    place-items: center;
    color: var(--evo-cyan-400);
    font-size: .95rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .5px;
    font-size: .72rem;
    flex-shrink: 0;
    transition: background .3s, box-shadow .3s;
}

.cs-node:hover {
    background: var(--evo-cyan-700);
    box-shadow: 0 0 20px rgba(0, 164, 204, .4);
}

.cs-line {
    height: 2px;
    width: clamp(28px, 6vw, 72px);
    background: linear-gradient(90deg, rgba(25, 188, 230, .25), rgba(25, 188, 230, .6), rgba(25, 188, 230, .25));
    position: relative;
}

.cs-line::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--evo-cyan-500);
    border-right: 2px solid var(--evo-cyan-500);
    transform: translateY(-50%) rotate(45deg);
}

.service-block {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-block:nth-child(odd) {
    background: #eef1f5;
}

.service-block:nth-child(even) {
    background: #fff;
}

.services-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--evo-black-700);
    border: 1px solid rgba(25, 188, 230, .25);
    border-radius: 30px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 20px;
}

.services-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--evo-cyan-700), var(--evo-cyan-500));
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    display: grid;
    place-items: center;
    letter-spacing: .5px;
    flex-shrink: 0;
}

.services-step-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evo-cyan-400);
}

.svc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: 1.5px;
    line-height: 1.06;
    color: #0d0d0d;
    margin-bottom: 16px;
}

.svc-title em {
    font-style: normal;
    color: var(--evo-cyan-600);
}

.svc-lead {
    font-size: .9rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.65;
    margin-bottom: 12px;
}

.svc-body {
    font-size: .82rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.services-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .84rem;
    color: #333;
    line-height: 1.55;
}

.chk-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--evo-cyan-200), #d0f0fb);
    border: 1.5px solid rgba(0, 164, 204, .25);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.chk-icon i {
    font-size: .6rem;
    color: var(--evo-cyan-700);
}

.svc-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .14), 0 0 0 1px rgba(0, 0, 0, .05);
}

.svc-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: brightness(.88) saturate(1.1);
    transition: transform 7s ease, filter .5s ease;
}

.svc-img-wrap:hover img {
    transform: scale(1.04);
    filter: brightness(.94) saturate(1.18);
}

.svc-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 164, 204, .08) 0%, transparent 60%);
    pointer-events: none;
}

.services-img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 11, 13, .8);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.services-img-tag .tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--evo-cyan-500);
    flex-shrink: 0;
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.services-img-tag span {
    font-size: .73rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
}

.services-img-corner-num {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, .12);
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 2;
}

.block-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: inherit;
    position: relative;
    z-index: 3;
}

.bc-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--evo-cyan-600), var(--evo-cyan-400));
}

.bc-diamond {
    width: 14px;
    height: 14px;
    background: var(--evo-cyan-500);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(25, 188, 230, .5);
}

.services-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.services-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f6fb;
    border: 1px solid rgba(0, 164, 204, .2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .72rem;
    color: var(--evo-cyan-800);
    font-weight: 500;
    transition: background .3s, color .3s;
}

.services-mini-tag:hover {
    background: var(--evo-cyan-600);
    color: #fff;
}

/* ============================================================================================== ALL BLOGS PAGE */
.blogs-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.blogs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 164, 204, .09) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.bg-word {
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 16vw, 14rem);
    color: rgba(0, 164, 204, .04);
    letter-spacing: .06em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.blog-card {
    background: var(--light-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: transform .4s ease, box-shadow .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 164, 204, .12);
}

.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-500), var(--evo-cyan-700));
    transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.blog-card:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.bc-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
    transition: clip-path .5s cubic-bezier(.77, 0, .18, 1);
    flex-shrink: 0;
}

.blog-card:hover .bc-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.84) saturate(1.1);
    transition: transform 7s ease;
}

.blog-card:hover .bc-img img {
    transform: scale(1.06);
}

.bc-cat {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--evo-cyan-600);
    color: #fff;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    z-index: 2;
    transition: bottom .4s ease;
}

.blog-card:hover .bc-cat {
    bottom: 8px;
}

.bc-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.bc-date {
    font-size: .67rem;
    color: var(--text-soft);
}

.bc-sep {
    font-size: .5rem;
    color: rgba(0, 0, 0, .2);
}

.bc-read-time {
    font-size: .67rem;
    color: var(--evo-cyan-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 10px;
    flex: 1;
    transition: color .3s;
}

.blog-card:hover .blog-card-title {
    color: var(--evo-cyan-700);
}

.bc-excerpt {
    font-size: .78rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: auto;
}

.bc-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--evo-cyan-200);
}

.bc-author-name {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-mid);
}

.bc-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 164, 204, .3);
    display: grid;
    place-items: center;
    color: var(--evo-cyan-600);
    font-size: .8rem;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
}

.blog-card:hover .bc-arrow {
    background: var(--evo-cyan-600);
    border-color: var(--evo-cyan-600);
    color: #fff;
    transform: rotate(-40deg);
}

.newsletter-band {
    background: var(--evo-black-800);
    border-radius: 22px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.newsletter-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 164, 204, .18) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-band .nb-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--evo-cyan-400);
    margin-bottom: 10px;
}

.newsletter-band h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
}

.newsletter-band h3 em {
    font-style: italic;
    color: var(--evo-cyan-300);
}

.newsletter-band p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 0;
}

.nb-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nb-input {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 13px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    color: #fff;
    outline: none;
    transition: border-color .3s, background .3s;
}

.nb-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.nb-input:focus {
    border-color: var(--evo-cyan-500);
    background: rgba(255, 255, 255, .1);
}

.nb-btn {
    background: var(--evo-cyan-600);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .3s, transform .3s, box-shadow .3s;
    white-space: nowrap;
}

.nb-btn:hover {
    background: var(--evo-cyan-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 164, 204, .4);
}

/* ============================================================================================== READ BLOGS PAGE  */
.read-blog-hero {
    position: relative;
    height: 560px;
    margin: 40px 40px 0px;
    border-radius: 25px;
    overflow: hidden;
}

.read-blog-hero-img {
    position: absolute;
    inset: 0;
}

.read-blog-hero .read-blog-hero-img img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: brightness(.45) saturate(.9);
    transition: transform 10s ease;
}

.read-blog-hero:hover .read-blog-hero-img img {
    transform: scale(1.08);
}

.read-blog-hero .read-blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .1) 0%,
            rgba(0, 0, 0, .35) 40%,
            rgba(0, 0, 0, .72) 100%);
}

.read-blog-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 0 44px;
    z-index: 2;
}

/* .hero-cat {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--evo-cyan-600);
        color: #fff;
        font-size: .62rem;
        font-weight: 600;
        letter-spacing: .18em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 3px;
        margin-bottom: 16px;
    } */

/* .hero-cat .hc-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .6);
    } */

.read-blog-hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    max-width: 860px;
    margin-bottom: 22px;
}

.read-blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
}

.blog-meta-item i {
    font-size: .78rem;
    color: var(--evo-cyan-400);
}

.blog-meta-item strong {
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.meta-item-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .2);
}

.read-blog-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-400));
    z-index: 9999;
    transition: width .1s linear;
}

.read-blog-section {
    padding: 60px 0 80px;
}

.read-blog-wrap {
    background: var(--card);
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06), 0 0 0 1px var(--border);
}

/* .share-bar {
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 4px;
    }

    .share-label {
        font-size: .58rem;
        font-weight: 600;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--text-soft);
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        margin-bottom: 4px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        background: var(--card);
        display: grid;
        place-items: center;
        color: var(--text-soft);
        font-size: .95rem;
        text-decoration: none;
        transition: background .3s, color .3s, border-color .3s, transform .3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    }

    .share-btn:hover {
        background: var(--evo-cyan-600);
        color: #fff;
        border-color: var(--evo-cyan-600);
        transform: scale(1.1);
    }

    .share-line {
        width: 1px;
        height: 30px;
        background: var(--border);
    } */

.read-blog-para {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.read-blog-h2 {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin: 40px 0 16px;
    line-height: 1.25;
}

.read-blog-h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 12px;
}

.read-blog-p {
    font-size: .9rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.95;
    margin-bottom: 20px;
}

.read-blog-quote {
    border-left: 4px solid var(--evo-cyan-500);
    background: linear-gradient(90deg, rgba(0, 164, 204, .05) 0%, transparent 100%);
    padding: 22px 28px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.read-blog-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--evo-cyan-800);
    line-height: 1.65;
    margin: 0 0 8px;
}

.read-blog-quote cite {
    font-size: .73rem;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-style: normal;
}

.read-blog-img-wrap {
    margin: 36px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.read-blog-img-wrap img {
    width: 100%;
    display: block;
    filter: brightness(.9) saturate(1.05);
}

.read-blog-key-points {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 30px;
    margin: 32px 0;
}

.read-blog-key-points .kp-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.read-blog-kp-icons {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--evo-cyan-200), #d4f0fa);
    border: 1px solid rgba(0, 164, 204, .2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.read-blog-kp-icons i {
    color: var(--evo-cyan-700);
    font-size: .85rem;
}

.kp-head span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--evo-cyan-700);
}

.kp-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .84rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.kp-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--evo-cyan-500);
    flex-shrink: 0;
    margin-top: 7px;
}

.read-blog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
}

.read-blog-card-stats {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}

.read-blog-card-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-500), var(--evo-cyan-700));
    border-radius: 0 0 4px 4px;
}

.card-stats-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--evo-cyan-600);
    line-height: 1;
    margin-bottom: 6px;
}

.card-stats-label {
    font-size: .72rem;
    color: var(--text-soft);
    font-weight: 400;
    line-height: 1.4;
}

.read-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.read-blog-main-tags {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 5px 14px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: background .3s, color .3s, border-color .3s;
    cursor: pointer;
}

.read-blog-main-tags:hover {
    background: var(--evo-cyan-200);
    border-color: var(--evo-cyan-500);
    color: var(--evo-cyan-800);
}

.read-blog-main-tags i {
    font-size: .7rem;
}

.read-blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.read-blog-toc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.read-blog-toc-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evo-cyan-600);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-blog-toc-title i {
    font-size: .85rem;
}

.read-blog-toc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.read-blog-toc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: .8rem;
    color: var(--text-soft);
    cursor: pointer;
    transition: background .25s, color .25s;
    text-decoration: none;
}

.read-blog-toc-item:hover,
.read-blog-toc-item.active {
    background: var(--evo-cyan-200);
    color: var(--evo-cyan-800);
}

.read-blog-toc-item .toc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .85rem;
    color: rgba(0, 164, 204, .4);
    flex-shrink: 0;
    line-height: 1.4;
}

.read-blog-toc-item.active .toc-num {
    color: var(--evo-cyan-600);
}

.read-blog-toc-item.sub {
    padding-left: 28px;
    font-size: .75rem;
}

.read-blog-sidebar-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.sidebar-card-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--evo-cyan-600);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card-label i {
    font-size: .85rem;
}

.sidebar-card-content {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
}

.sidebar-card-content:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-card-content:hover {
    opacity: .75;
}

.sidebar-card-img {
    width: 60px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-card-text strong {
    display: block;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-card-text span {
    font-size: .67rem;
    color: var(--text-soft);
}

.sidebar-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-card-main-tags {
    padding: 5px 13px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--card2);
    font-size: .7rem;
    color: var(--text-soft);
    cursor: pointer;
    transition: all .3s;
}

.sidebar-card-main-tags:hover {
    background: var(--evo-cyan-600);
    color: #fff;
    border-color: var(--evo-cyan-600);
}

.cta-sidebar {
    background: var(--evo-black-800);
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
}

.cta-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 164, 204, .2) 0%, transparent 60%);
}

.cta-sidebar h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cta-sidebar h4 em {
    font-style: italic;
    color: var(--evo-cyan-300);
}

.cta-sidebar p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.cta-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--evo-cyan-600);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background .3s, transform .3s;
}

.cta-sidebar-btn:hover {
    background: var(--evo-cyan-500);
    transform: translateY(-2px);
    color: #fff;
}

/* .rs-link {
        font-size: .78rem;
        font-weight: 600;
        color: var(--evo-cyan-700);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: gap .3s;
    }

    .rs-link:hover {
        gap: 10px;
        color: var(--evo-cyan-600);
    } */

/* .blog-card {
        background: var(--card);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: pointer;
        position: relative;
        transition: transform .4s ease, box-shadow .4s ease;
    }

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 164, 204, .12);
    }

    .blog-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 50%;
        height: 3px;
        border-radius: 2px 2px 0 0;
        background: linear-gradient(90deg, var(--evo-cyan-700), var(--evo-cyan-500), var(--evo-cyan-700));
        transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
    }

    .blog-card:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .bc-img {
        position: relative;
        height: 200px;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
        transition: clip-path .5s cubic-bezier(.77, 0, .18, 1);
        flex-shrink: 0;
    }

    .blog-card:hover .bc-img {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .bc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(.84) saturate(1.1);
        transition: transform 7s ease;
    }

    .blog-card:hover .bc-img img {
        transform: scale(1.06);
    }

    .bc-cat {
        position: absolute;
        bottom: 18px;
        left: 18px;
        background: var(--evo-cyan-600);
        color: #fff;
        font-size: .6rem;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 2px;
        z-index: 2;
        transition: bottom .4s ease;
    }

    .blog-card:hover .bc-cat {
        bottom: 8px;
    }

    .bc-body {
        padding: 22px 22px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .bc-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .bc-date {
        font-size: .67rem;
        color: var(--text-soft);
    }

    .bc-sep {
        font-size: .5rem;
        color: rgba(0, 0, 0, .2);
    }

    .bc-read-time {
        font-size: .67rem;
        color: var(--evo-cyan-700);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .bc-title {
        font-family: 'DM Serif Display', serif;
        font-size: 1.05rem;
        line-height: 1.35;
        color: var(--text-dark);
        margin-bottom: 10px;
        flex: 1;
        transition: color .3s;
    }

    .blog-card:hover .bc-title {
        color: var(--evo-cyan-700);
    }

    .bc-excerpt {
        font-size: .78rem;
        font-weight: 300;
        color: var(--text-soft);
        line-height: 1.75;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bc-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border);
        padding-top: 14px;
        margin-top: auto;
    }

    .bc-author {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .bc-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--evo-cyan-200);
    }

    .bc-author-name {
        font-size: .72rem;
        font-weight: 500;
        color: var(--text-mid);
    }

    .bc-arrow {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid rgba(0, 164, 204, .3);
        display: grid;
        place-items: center;
        color: var(--evo-cyan-600);
        font-size: .8rem;
        text-decoration: none;
        transition: background .3s, border-color .3s, transform .3s;
    }

    .blog-card:hover .bc-arrow {
        background: var(--evo-cyan-600);
        border-color: var(--evo-cyan-600);
        color: #fff;
        transform: rotate(-40deg);
    } */