* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
}

#fullpage {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
}

section {
    background: none;
}

html.dark-theme section {
    border: none !important;
}

/* Base styles */
body {
    font-family: var(--eco-font-primary);
    font-size: var(--eco-font-size-base);
    line-height: var(--eco-line-height-base);
    color: #333;
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    overflow-y: hidden;
}

/* Root variables */
:root {
    --eco-primary-color: #086924;
    --eco-primary-light: #43b26c;
    --eco-primary-lighter: #86e29b;
    --eco-bg-light: #f5fcf6;
    --eco-bg-lighter: #f0f9f1;
    --eco-shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.1);
    --eco-shadow-md: 0 15px 30px rgba(0, 0, 0, 0.15);
    --eco-shadow-lg: 0 20px 40px rgba(8, 105, 36, 0.12);
    --eco-transition-default: all 0.3s ease;
    /* Font Variables */
    --eco-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --eco-font-size-base: 16px;
    --eco-font-size-sm: 14px;
    --eco-font-size-lg: 18px;
    --eco-font-size-xl: 24px;
    --eco-font-size-2xl: 36px;
    --eco-line-height-base: 1.6;
    --eco-font-weight-normal: 400;
    --eco-font-weight-medium: 500;
    --eco-font-weight-semibold: 600;
    --eco-font-weight-bold: 700;
    --eco-font-weight-extrabold: 800;
}

.green-blur-bg {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    transition: opacity 0.3s;
    mix-blend-mode: lighten;
}

.green-blur-bg.bg1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, #43b26c 0%, #086924 98%, transparent 100%);
    opacity: 0.5;
}

.green-blur-bg.bg2 {
    width: 520px;
    height: 520px;
    top: 0;
    right: -200px;
    background: radial-gradient(circle, #a7fb6c 0%, #43b26c 98%, transparent 100%);
    opacity: 0.7;
}

.green-blur-bg.bg3 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
    opacity: 0.6;
}

.green-blur-bg.bg4 {
    width: 340px;
    height: 340px;
    bottom: -120px;
    right: -120px;
    background: radial-gradient(circle, #a7fb6c 0%, #43b26c 98%, transparent 100%);
    opacity: 0.4;
}

.green-blur-bg.bg5 {
    width: 320px;
    height: 320px;
    top: 40%;
    left: -120px;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
    opacity: 0.8;
}

.green-blur-bg.bg6 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 0%;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
}

.green-blur-bg.bg7 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, #086924 0%, #43b26c 98%, transparent 100%);
}

.green-blur-bg.bg8 {
    width: 220px;
    height: 220px;
    top: 40%;
    right: 0%;
    background: radial-gradient(circle, #a7fb6c 0%, #43b26c 98%, transparent 100%);
}

.green-blur-bg.bg9 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 20%;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
}

.green-blur-bg.bg10 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    background: radial-gradient(circle, #086924 0%, #a7fb6c 98%, transparent 100%);
}

.green-blur-bg.bg11 {
    width: 320px;
    height: 320px;
    top: 80%;
    left: 0%;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
}

.green-blur-bg.bg12 {
    width: 260px;
    height: 260px;
    top: 80%;
    left: 50%;
    background: radial-gradient(circle, #a7fb6c 0%, #43b26c 98%, transparent 100%);
}

.green-blur-bg.bg13 {
    width: 220px;
    height: 220px;
    top: 80%;
    right: 0%;
    background: radial-gradient(circle, #43b26c 0%, #a7fb6c 98%, transparent 100%);
}

.green-blur-bg.bg14 {
    width: 200px;
    height: 200px;
    top: 90%;
    left: 30%;
    background: radial-gradient(circle, #086924 0%, #43b26c 98%, transparent 100%);
}

.green-blur-bg.bg15 {
    width: 180px;
    height: 180px;
    top: 90%;
    right: 30%;
    background: radial-gradient(circle, #a7fb6c 0%, #086924 98%, transparent 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--eco-primary-color);
    font-size: var(--eco-font-size-2xl);
    font-weight: var(--eco-font-weight-extrabold);
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Card styles */
.card {
    background: #f8fff8;
    border-radius: 24px;
    box-shadow: var(--eco-shadow-sm);
    padding: 40px 30px;
    transition: var(--eco-transition-default);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--eco-shadow-md);
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: var(--eco-font-weight-semibold);
    text-decoration: none;
    transition: var(--eco-transition-default);
}

.btn-primary {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--eco-shadow-sm);
}

/* Made by EMC section */
.made-by-emc {
    background: none;
}

.made-by-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.made-by-text h3 {
    color: var(--eco-primary-color);
    font-size: var(--eco-font-size-xl);
    font-weight: var(--eco-font-weight-bold);
    margin-bottom: 0;
    padding: 0;
}

.made-by-text p {
    color: #555;
    font-size: var(--eco-font-size-base);
    margin-bottom: 30px;
}

/* Ecosystem diagram */
.ecosystem-diagram {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--eco-shadow-sm);
    z-index: 2;
}

.eco-center img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.eco-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--eco-shadow-sm);
    transition: var(--eco-transition-default);
}

.eco-item:hover {
    transform: scale(1.1);
    box-shadow: var(--eco-shadow-md);
}

.eco-item img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    margin-bottom: 8px;
}

.eco-item p {
    font-size: var(--eco-font-size-sm);
    font-weight: var(--eco-font-weight-medium);
    color: var(--eco-primary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .made-by-content {
        flex-direction: column;
    }

    .made-by-text {
        text-align: center;
    }

    .ecosystem-diagram {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .ecosystem-diagram {
        max-width: 300px;
    }

    .eco-center {
        width: 100px;
        height: 100px;
    }

    .eco-item {
        width: 80px;
        height: 80px;
    }
}

/* Fix cho nút menu toggle */
.emc-global-header-mobile-menu-toggle {
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.emc-global-header-mobile-menu-toggle * {
    pointer-events: none !important;
}

.emc-global-header-mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
}

/* Đảm bảo header luôn ở trên cùng */
#emc-global-header {
    z-index: 9999 !important;
}

#emc-global-header * {
    pointer-events: auto !important;
}

/* Override các style khác có thể ảnh hưởng */
.emc-global-header-mobile-menu-toggle,
.emc-global-header-mobile-menu-toggle *,
.emc-global-header-mobile-menu-toggle::before {
    pointer-events: auto !important;
}

/* Đảm bảo không có phần tử nào chồng lên nút */
.emc-global-header-mobile-menu-toggle {
    position: relative;
    z-index: 9999 !important;
}

/* Fix cho các phần tử khác không ảnh hưởng đến nút */
.emc-global-header-content>*:not(.emc-global-header-mobile-menu-toggle) {
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    font-size: 2.5rem;
    color: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    padding-bottom: 10px;
    margin: 0 auto;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #086924;
}

section {
    padding: 60px 0;
}

a {
    color: #086924;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #01b24a;
}

/* Responsive framework */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 0;
    }
}

/* Animation classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    will-change: opacity, transform, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.emc-global-header-nav-link {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 16px;
}

#emc-global-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px 0 rgba(86, 214, 139, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 70px;
}

/* .emc-global-header-nav-link,
#emc-global-header.scrolled .emc-global-header-nav-link {
    color: #086924 !important;
} */

.vision-strategy-section {
    padding: 120px 0 80px 0 !important;
    min-height: 800px;
}

.vision-strategy-header {
    display: flex;
    margin-bottom: 30px;
    padding-left: 40px;
}

.vision-title-block {
    display: flex;
    align-items: flex-start;
}

.vision-title-line {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #43b26c 0%, #a7fb6c 100%);
    border-radius: 2px;
    margin-right: 18px;
    margin-top: 6px;
}

.vision-title-block h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #086924;
    margin-bottom: 8px;
    margin-top: 0;
    text-align: left;
}

.vision-slogan {
    font-size: 1.1rem;
    color: #086924;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 2px;
    text-align: left;
}

.gradient-green {
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.vision-strategy-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    height: 200px;
}

.vision-strategy-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
}

.vision-strategy-steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.vision-strategy-step {
    position: relative;
    width: 300px;
    background: none;
    text-align: left;
    margin: 0 10px;
}

.vision-step-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #74cd96;
    box-shadow: 0 8px 24px rgba(67, 178, 108, 0.3);
    position: relative;
    z-index: 2;
}

html.dark-theme body .vision-step-icon {
    background: #2a2c2b !important;
    box-shadow: none !important;
}

.vision-step-content {
    margin-top: 60px;
    padding: 24px 18px 18px 18px;
    background: none;
    border-radius: 16px;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.vision-step-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
}

.vision-step-desc {
    font-size: 1rem;
    color: #7b8ca0;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
    transition: background 0.3s, color 0.3s;
}

.vision-step-num {
    position: absolute;
    top: 0;
    right: 18px;
    font-size: 5.5rem;
    font-weight: 800;
    color: #43b26c;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

@media (max-width: 1100px) {
    .vision-strategy-steps {
        width: 98vw;
    }

    .vision-strategy-step {
        width: 30vw;
        min-width: 180px;
    }
}

@media (max-width: 900px) {
    .vision-strategy-timeline {
        height: 420px;
    }

    .vision-strategy-steps {
        flex-direction: column;
        align-items: center;
    }

    .vision-strategy-step {
        width: 90vw;
        min-width: 0;
        margin-bottom: 30px;
    }

    .step-1,
    .step-2,
    .step-3 {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .vision-strategy-header {
        padding-left: 10px;
    }

    .vision-title-block h2 {
        font-size: 1.3rem;
    }

    .vision-strategy-timeline {
        height: 520px;
    }

    .vision-strategy-step {
        width: 98vw;
    }

    .vision-step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .vision-step-num {
        font-size: 2.2rem;
        right: 8px;
    }

    .vision-step-content {
        padding: 14px 8px 8px 8px;
    }
}

.vision-mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%) !important;
    padding: 60px 0 40px 0;
}

.vision-mission-header {
    text-align: left;
    margin-bottom: 40px;
}

.vision-mission-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
    max-width: 700px;
}

.vision-mission-header .highlight {
    color: #3a8bfd;
    font-weight: 600;
}

.vision-mission-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    height: 220px;
}

.vision-mission-curve {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.vision-mission-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    height: 220px;
}

.vision-mission-step {
    width: 30%;
    background: none;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vision-mission-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #3a8bfd;
    box-shadow: 0 6px 18px rgba(58, 139, 253, 0.13), 0 1.5px 12px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    z-index: 2;
}

.vision-mission-num {
    font-size: 4.5rem;
    font-weight: 700;
    color: #e3eafc;
    opacity: 0.8;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.vision-mission-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.vision-mission-desc {
    font-size: 1rem;
    color: #7b8ca0;
    z-index: 2;
    position: relative;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .vision-mission-steps {
        flex-direction: column;
        align-items: center;
    }

    .vision-mission-step {
        width: 90%;
        margin-bottom: 30px;
    }

    .vision-mission-num {
        font-size: 3rem;
        top: 20px;
    }
}

.wave-svg {
    width: 100%;
    height: auto;
    position: relative;
}

.wave-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave-icons g {
    position: relative;
}

.wave-icons circle {
    transition: all 0.3s ease;
}

.wave-icons g:hover circle {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.wave-icons i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.wave-icons text {
    font-family: Arial, sans-serif;
}

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

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

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

.wave-icons g {
    animation: float 3s ease-in-out infinite;
}

.wave-icons g:nth-child(2) {
    animation-delay: 0.5s;
}

.wave-icons g:nth-child(3) {
    animation-delay: 1s;
}

/* Vision and Mission section */
.vision-mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%) !important;
    padding: 80px 0;
    position: relative;
}

.vision-mission-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.vision-mission-left {
    flex: 1;
    padding-right: 40px;
}

.vision-mission-item {
    margin-bottom: 40px;
}

.vision-mission-item h3 {
    color: var(--eco-primary-color);
    font-size: var(--eco-font-size-xl);
    font-weight: var(--eco-font-weight-bold);
    margin-bottom: 20px;
}

.vision-mission-item p {
    color: #555;
    font-size: var(--eco-font-size-base);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .vision-mission-content {
        flex-direction: column;
    }

    .vision-mission-left {
        padding-right: 0;
    }
}

.vision-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-align: left;
}

.gradient-green {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-blue {
    background: linear-gradient(90deg, #3a8bfd 0%, #43b2fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.vision-slogan {
    color: #43b26c;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    border-left: 4px solid #a7fb6c;
    padding-left: 18px;
    margin-left: 2px;
    max-width: 600px;
}

.vision-slogan span {
    color: #3a8bfd;
    font-weight: 700;
}

/* Vision & Mission Animations */
.vision-mission-section {
    position: relative;
    overflow: hidden;
}

/* Floating particles */
.vision-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: linear-gradient(90deg, rgba(67, 178, 108, 0.1) 0%, rgba(167, 251, 108, 0.1) 100%);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 80%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 70%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    width: 22px;
    height: 22px;
    top: 30%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Animated background gradient */
.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.05) 0%, rgba(167, 251, 108, 0.05) 100%);
    animation: gradient-shift 10s ease infinite;
    z-index: 0;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glowing orbs */
.vision-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.4;
    animation: orb-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(67, 178, 108, 0.3);
}

.vision-orb:nth-child(1) {
    width: 200px;
    height: 200px;
    background: #43b26c;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.vision-orb:nth-child(2) {
    width: 250px;
    height: 250px;
    background: #a7fb6c;
    bottom: -100px;
    right: 10%;
    animation-delay: -2s;
}

.vision-orb:nth-child(3) {
    width: 180px;
    height: 180px;
    background: #43b26c;
    top: 10%;
    left: 68%;
    animation-delay: -1s;
}

@keyframes orb-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
        filter: blur(30px) brightness(1);
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
        filter: blur(40px) brightness(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
        filter: blur(30px) brightness(1);
    }
}

/* Enhanced step animations */
.vision-strategy-step {
    transition: all 0.4s ease;
    position: relative;
}

.vision-strategy-step:hover {
    transform: translateY(-10px);
}

.vision-step-title {
    position: relative;
    display: inline-block;
    animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 5px rgba(67, 178, 108, 0.2);
    }

    50% {
        text-shadow: 0 0 15px rgba(67, 178, 108, 0.4);
    }

    100% {
        text-shadow: 0 0 5px rgba(67, 178, 108, 0.2);
    }
}

.vision-step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    transition: width 0.3s ease;
}

.vision-strategy-step:hover .vision-step-title::after {
    width: 100%;
}

.particle {
    position: absolute;
    background: linear-gradient(90deg, rgba(67, 178, 108, 0.2) 0%, rgba(167, 251, 108, 0.2) 100%);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
    box-shadow: 0 0 20px rgba(67, 178, 108, 0.2);
}

.particle:nth-child(1) {
    width: 25px;
    height: 25px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 80%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 20%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    width: 22px;
    height: 22px;
    top: 80%;
    left: 70%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    width: 27px;
    height: 27px;
    top: 30%;
    left: 40%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 60%;
    animation-delay: -3s;
}

.particle:nth-child(7) {
    width: 23px;
    height: 23px;
    top: 70%;
    left: 30%;
    animation-delay: -5s;
}

/* Blinking Elements */
.vision-step-num {
    animation: number-glow 3s ease-in-out infinite;
}

@keyframes number-glow {
    0% {
        text-shadow: 0 0 10px rgba(67, 178, 108, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(67, 178, 108, 0.6);
    }

    100% {
        text-shadow: 0 0 10px rgba(67, 178, 108, 0.3);
    }
}

/* Enhanced Background Animation */
.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(67, 178, 108, 0.08) 0%,
            rgba(167, 251, 108, 0.08) 50%,
            rgba(67, 178, 108, 0.08) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    z-index: 0;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }

    50% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }

    100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
}

/* Enhanced Hover Effects */
.vision-strategy-step {
    transition: all 0.4s ease;
    position: relative;
}

.vision-strategy-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(67, 178, 108, 0.15);
}

.vision-strategy-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.1) 0%, rgba(167, 251, 108, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.vision-strategy-step:hover::after {
    opacity: 0;
    /* Đảm bảo không hiện nền khi hover */
}

.vision-strategy-step:hover .vision-step-desc {
    background: linear-gradient(90deg, #e8f5e9 0%, #a7fb6c22 100%);
    color: #086924;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(67, 178, 108, 0.08);
    padding: 12px 10px;
    transition: background 0.8s, color 0.8s;
}

html.dark-theme body .vision-strategy-step:hover .vision-step-desc {
    background: linear-gradient(90deg, #57e263 0%, #a7fb6c22 100%);
    color: #74cda3;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(67, 178, 108, 0.08);
    padding: 12px 10px;
    transition: background 0.8s, color 0.8s;
}

.sustainable-dev::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.sustainable-dev::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.sustainable-dev .container {
    position: relative;
    z-index: 1;
}

.sustainable-dev .blur-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sustainable-dev .blur-dot-1 {
    width: 200px;
    height: 200px;
    background: rgba(67, 178, 108, 0.08);
    top: 20%;
    left: 10%;
}

.sustainable-dev .blur-dot-2 {
    width: 150px;
    height: 150px;
    background: rgba(167, 251, 108, 0.08);
    top: 60%;
    left: 30%;
}

.sustainable-dev .blur-dot-3 {
    width: 180px;
    height: 180px;
    background: rgba(67, 178, 108, 0.06);
    top: 30%;
    right: 15%;
}

.sustainable-dev .section-header h2 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 900;
    background: none;
    color: inherit;
}

.sustainable-dev .section-header h2.gradient-green {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -1.5px;
    animation: title-glow 4s ease-in-out infinite;
    /* Xóa mọi hiệu ứng shadow */
    filter: none;
    text-shadow: none;
}

.sustainable-dev .section-header h2:after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 8px;
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
}

@keyframes title-glow {

    0%,
    100% {
        text-shadow: 0 2px 24px #b6ffe0cc, 0 2px 8px #43b26c44;
    }

    50% {
        text-shadow: 0 4px 32px #a7fb6c, 0 2px 16px #43b26c88;
    }
}

.visual-card {
    position: absolute;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.10) 0%, rgba(67, 178, 108, 0.08) 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.10), 0 1.5px 12px 0 rgba(67, 178, 108, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: none !important;
    overflow: hidden;
    cursor: pointer;
    border-top: 6px solid;
    border-image: linear-gradient(90deg, #a7fb6c, #43b26c) 1;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.visual-card .visual-icon {
    font-size: 50px;
    background: linear-gradient(90deg, #a7fb6c, #43b26c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 4px;
    transition: all 0.4s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.13), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border-color: #a7fb6c;
    z-index: 20;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.13) 0%, rgba(67, 178, 108, 0.10) 100%);
}

.visual-label {
    font-size: 18px;
    font-weight: 800;
    color: #086924;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 4px 16px;
    margin-top: 0px;
    background: none;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
}

.visual-card:hover .visual-label {
    color: #43b26c;
    font-size: 20px;
    text-shadow: 0 4px 16px rgba(67, 178, 108, 0.18);
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(67, 178, 108, 0.18), 0 2px 8px rgba(67, 178, 108, 0.12);
    transform: translateY(-3px);
}

/* --- THÊM CSS ĐỔI MÀU TIÊU ĐỀ CÁC SECTION --- */
.eco-modern-title,
.section-header h2,
.news-section .section-header h2,
.partners-section .section-header h2 {
    font-weight: 900;
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-modern-title span,
.section-header h2 span,
.news-section .section-header h2 span,
.partners-section .section-header h2 span {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    color: unset !important;
    display: inline-block;
}

/* Nếu muốn phần đầu là màu #1a3c1a, phần sau là gradient thì cần 2 span trong mỗi tiêu đề */
.eco-modern-title span:first-child,
.section-header h2 span:first-child,
.news-section .section-header h2 span:first-child,
.partners-section .section-header h2 span:first-child {
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-bubbles-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* dưới .eco-modern-circles, trên svg sóng */
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e6fff3cc 0%, #b6f5d8cc 100%);
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.22;
    animation: move-up 8s linear infinite;
    backdrop-filter: blur(8px);
}

.bubble:nth-child(2) {
    width: 18px;
    height: 18px;
    filter: blur(10px);
    opacity: 0.15;
}

.bubble:nth-child(3) {
    width: 24px;
    height: 24px;
    filter: blur(12px);
    opacity: 0.18;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    filter: blur(18px);
    opacity: 0.10;
}

.bubble:nth-child(5) {
    width: 14px;
    height: 14px;
    filter: blur(8px);
    opacity: 0.13;
}

@keyframes move-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(-420px) scale(1.2);
        opacity: 0;
    }
}

.eco-modern-wave {
    position: relative;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-radius: 24px;
}

.eco-modern-desc.highlight-ecosystem {
    background: linear-gradient(90deg, #f5fcf6 60%, #e8f5e9 100%);
    border-left: 6px solid #43b26c;
    box-shadow: 0 4px 24px rgba(67, 178, 108, 0.08);
    padding: 32px 38px 32px 48px;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 18px;
    animation: fadeInUp 1s;
}

.eco-ecosystem-icon {
    font-size: 48px;
    color: #43b26c;
    flex-shrink: 0;
    margin-right: 10px;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
}

.eco-modern-desc.highlight-ecosystem p {
    font-size: 1.18rem;
    color: #086924;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.1px;
    text-align: left;
}

.eco-highlight {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 768px) {
    .eco-modern-desc.highlight-ecosystem {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 18px 24px 18px;
        gap: 12px;
    }

    .eco-ecosystem-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .eco-modern-desc.highlight-ecosystem p {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.eco-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px 0 rgba(67, 178, 108, 0.10),
        0 1.5px 12px 0 rgba(67, 178, 108, 0.08),
        0 0 0 0px #a7fb6c88;
    /* Halo mặc định nhỏ */
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: box-shadow 0.4s, border 0.4s, background 0.4s;
    z-index: 1;
}

.eco-circle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    opacity: 0.7;
    z-index: 0;
    filter: blur(8px);
    pointer-events: none;
    transition: opacity 0.4s;
}

.eco-circle:hover,
.eco-circle:focus {
    box-shadow:
        0 16px 48px 0 rgba(67, 178, 108, 0.18),
        0 4px 24px 0 rgba(167, 251, 108, 0.10),
        0 0 0 24px #a7fb6c33;
    /* Halo lớn khi hover */
    background: rgba(255, 255, 255, 0.28);
    border: 2.5px solid #a7fb6c;
    z-index: 10;
}

.eco-circle:hover::before,
.eco-circle:focus::before {
    opacity: 1;
    filter: blur(16px);
}

.eco-circle-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 12px rgba(67, 178, 108, 0.06);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.4s;
}

.eco-circle-icon {
    font-size: 48px;
    color: #43b26c;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
    transition: transform 0.4s;
}

.eco-circle:hover .eco-circle-icon {
    transform: scale(1.18);
}

@media (max-width: 1200px) {
    .eco-circle {
        width: 220px;
        height: 220px;
    }

    .eco-circle-content {
        padding: 18px;
    }

    .eco-circle-icon {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .eco-circle {
        width: 160px;
        height: 160px;
    }

    .eco-circle-content {
        padding: 10px;
    }

    .eco-circle-icon {
        font-size: 24px;
    }
}

.eco-circle-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    animation: halo-rotate 8s linear infinite;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.eco-circle .halo1 {
    width: 340px;
    height: 340px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.eco-circle .halo2 {
    width: 380px;
    height: 380px;
    top: -40px;
    left: -40px;
    opacity: 0.25;
    animation-delay: 2s;
}

.eco-circle .halo3 {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    opacity: 0.18;
    animation-delay: 4s;
}

@keyframes halo-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.eco-circle:hover .eco-circle-halo {
    opacity: 0.7;
    filter: blur(16px);
}

.sustainable-dev {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .blur-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sustainable-dev .blur-dot-1 {
    width: 200px;
    height: 200px;
    background: rgba(67, 178, 108, 0.08);
    top: 20%;
    left: 10%;
}

.sustainable-dev .blur-dot-2 {
    width: 150px;
    height: 150px;
    background: rgba(167, 251, 108, 0.08);
    top: 60%;
    left: 30%;
}

.sustainable-dev .blur-dot-3 {
    width: 180px;
    height: 180px;
    background: rgba(67, 178, 108, 0.06);
    top: 30%;
    right: 15%;
}

.vision-timeline {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0 auto;
    height: 200px;
}

.vision-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
}

.vision-steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
}

.vision-step {
    position: absolute;
    width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    z-index: 2;
}

.vision-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #43b26c;
    box-shadow: 0 6px 18px rgba(67, 178, 108, 0.13), 0 1.5px 12px 0 rgba(0, 0, 0, 0.07);
    margin-top: 8px;
    flex-shrink: 0;
    border: 2.5px solid #eaffea;
}

.vision-content {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.vision-num {
    position: absolute;
    top: -10px;
    left: -18px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e0f5e7;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.vision-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.vision-desc {
    font-size: 1rem;
    color: #444;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

@media (max-width: 900px) {
    .vision-timeline {
        max-width: 100%;
        height: 420px;
    }

    .vision-curve {
        height: 400px;
    }

    .vision-steps {
        height: 400px;
    }

    .vision-step {
        width: 90vw;
        min-width: 0;
        flex-direction: row;
        left: 5vw !important;
        gap: 14px;
    }

    .vision-step:nth-child(1) {
        top: 30px !important;
    }

    .vision-step:nth-child(2) {
        top: 170px !important;
    }

    .vision-step:nth-child(3) {
        top: 320px !important;
    }
}

@media (max-width: 576px) {
    .vision-timeline {
        height: 520px;
        margin-top: 30px;
    }

    .vision-curve {
        height: 500px;
    }

    .vision-steps {
        height: 500px;
    }

    .vision-step {
        width: 98vw;
        left: 1vw !important;
        gap: 10px;
    }

    .vision-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .vision-num {
        font-size: 2.2rem;
        left: -10px;
        top: -6px;
    }

    .vision-title,
    .vision-desc {
        margin-left: 14px;
        font-size: 0.98rem;
    }

    .vision-title {
        margin-bottom: 3px;
    }
}

.social-media-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 0 0 10px;
    z-index: 1000;
}

/* Thêm vào phần style của bạn */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    /* Thêm dòng này để đảm bảo biểu tượng luôn hiển thị */
    opacity: 1 !important;
}

/* Sửa lại các màu sắc */
.facebook {
    background: #1877f2 !important;
    color: white !important;
    /* Màu chữ/biểu tượng */
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    color: white !important;
}

html.dark-theme .social-media-banner .social-icon.instagram {
    background: none !important;
}

.zalo {
    background: #0068ff !important;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
}


.youtube {
    background: #ff0000 !important;
    color: white !important;
}

/* Thêm hiệu ứng hover rõ ràng hơn */
.social-icon:hover {
    transform: translateX(-5px);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-media-banner {
        padding: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .zalo {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .social-media-banner {
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        border-radius: 10px 10px 0 0;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 5px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }

    .social-icon:hover {
        transform: translateY(-5px);
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}

/* Sustainable Development Section - New Design */
.sustainable-dev {
    background: none;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .section-header h2 {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(67, 178, 108, 0.10));
    text-shadow: 0 2px 12px rgba(167, 251, 108, 0.10);
    animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }

    50% {
        text-shadow: 0 0 24px rgba(167, 251, 108, 0.18);
    }

    100% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }
}

.sustainable-dev .section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    border-radius: 2px;
}

.sustainable-dev::before,
.sustainable-dev::after {
    display: none !important;
}

.sustainable-container {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sustainable-left {
    flex: 1;
    min-width: 300px;
}

.sustainable-content-wrapper {
    max-width: 540px;
}

.sustainable-title-accent {
    font-size: 120px;
    font-weight: 800;
    color: rgba(8, 105, 36, 0.04);
    line-height: 1;
    margin-bottom: -35px;
    letter-spacing: -2px;
}

.sustainable-subtitle {
    font-size: 34px;
    color: var(--eco-primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.sustainable-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--eco-primary-light);
    bottom: -10px;
    left: 0;
}

.sustainable-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: transparent;
    color: var(--eco-primary-color);
    border: 2px solid var(--eco-primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border-color: #43b26c;
    transform: translateY(-3px);
    box-shadow: var(--eco-shadow-md);
}

.btn-primary-outline span {
    transition: all 0.3s ease;
}

.btn-primary-outline i {
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary-outline:hover i {
    transform: translateX(5px);
}

.sustainable-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sustainable-visual-effect {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(8, 105, 36, 0.03) 0%, rgba(1, 178, 74, 0.06) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visual-card {
    position: absolute;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.10) 0%, rgba(67, 178, 108, 0.08) 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.10), 0 1.5px 12px 0 rgba(67, 178, 108, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: none !important;
    overflow: hidden;
    cursor: pointer;
    border-top: 6px solid;
    border-image: linear-gradient(90deg, #a7fb6c, #43b26c) 1;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.visual-card .visual-icon {
    font-size: 50px;
    background: linear-gradient(90deg, #a7fb6c, #43b26c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 4px;
    transition: all 0.4s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.13), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border-color: #a7fb6c;
    z-index: 20;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.13) 0%, rgba(67, 178, 108, 0.10) 100%);
}

.visual-label {
    font-size: 18px;
    font-weight: 800;
    color: #086924;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 4px 16px;
    margin-top: 0px;
    background: none;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
}

.visual-card:hover .visual-label {
    color: #43b26c;
    font-size: 20px;
    text-shadow: 0 4px 16px rgba(67, 178, 108, 0.18);
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(67, 178, 108, 0.18), 0 2px 8px rgba(67, 178, 108, 0.12);
    transform: translateY(-3px);
}

/* --- THÊM CSS ĐỔI MÀU TIÊU ĐỀ CÁC SECTION --- */
.eco-modern-title,
.section-header h2,
.news-section .section-header h2,
.partners-section .section-header h2 {
    font-weight: 900;
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-modern-title span,
.section-header h2 span,
.news-section .section-header h2 span,
.partners-section .section-header h2 span {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    color: unset !important;
    display: inline-block;
}

/* Nếu muốn phần đầu là màu #1a3c1a, phần sau là gradient thì cần 2 span trong mỗi tiêu đề */
.eco-modern-title span:first-child,
.section-header h2 span:first-child,
.news-section .section-header h2 span:first-child,
.partners-section .section-header h2 span:first-child {
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-bubbles-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* dưới .eco-modern-circles, trên svg sóng */
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e6fff3cc 0%, #b6f5d8cc 100%);
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.22;
    animation: move-up 8s linear infinite;
    backdrop-filter: blur(8px);
}

.bubble:nth-child(2) {
    width: 18px;
    height: 18px;
    filter: blur(10px);
    opacity: 0.15;
}

.bubble:nth-child(3) {
    width: 24px;
    height: 24px;
    filter: blur(12px);
    opacity: 0.18;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    filter: blur(18px);
    opacity: 0.10;
}

.bubble:nth-child(5) {
    width: 14px;
    height: 14px;
    filter: blur(8px);
    opacity: 0.13;
}

@keyframes move-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(-420px) scale(1.2);
        opacity: 0;
    }
}

.eco-modern-wave {
    position: relative;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-radius: 24px;
}

.eco-modern-desc.highlight-ecosystem {
    background: linear-gradient(90deg, #f5fcf6 60%, #e8f5e9 100%);
    border-left: 6px solid #43b26c;
    box-shadow: 0 4px 24px rgba(67, 178, 108, 0.08);
    padding: 32px 38px 32px 48px;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 18px;
    animation: fadeInUp 1s;
}

.eco-ecosystem-icon {
    font-size: 48px;
    color: #43b26c;
    flex-shrink: 0;
    margin-right: 10px;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
}

.eco-modern-desc.highlight-ecosystem p {
    font-size: 1.18rem;
    color: #086924;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.1px;
    text-align: left;
}

.eco-highlight {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 768px) {
    .eco-modern-desc.highlight-ecosystem {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 18px 24px 18px;
        gap: 12px;
    }

    .eco-ecosystem-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .eco-modern-desc.highlight-ecosystem p {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.eco-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px 0 rgba(67, 178, 108, 0.10),
        0 1.5px 12px 0 rgba(67, 178, 108, 0.08),
        0 0 0 0px #a7fb6c88;
    /* Halo mặc định nhỏ */
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: box-shadow 0.4s, border 0.4s, background 0.4s;
    z-index: 1;
}

.eco-circle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    opacity: 0.7;
    z-index: 0;
    filter: blur(8px);
    pointer-events: none;
    transition: opacity 0.4s;
}

.eco-circle:hover,
.eco-circle:focus {
    box-shadow:
        0 16px 48px 0 rgba(67, 178, 108, 0.18),
        0 4px 24px 0 rgba(167, 251, 108, 0.10),
        0 0 0 24px #a7fb6c33;
    /* Halo lớn khi hover */
    background: rgba(255, 255, 255, 0.28);
    border: 2.5px solid #a7fb6c;
    z-index: 10;
}

.eco-circle:hover::before,
.eco-circle:focus::before {
    opacity: 1;
    filter: blur(16px);
}

.eco-circle-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 12px rgba(67, 178, 108, 0.06);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.4s;
}

.eco-circle-icon {
    font-size: 48px;
    color: #43b26c;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
    transition: transform 0.4s;
}

.eco-circle:hover .eco-circle-icon {
    transform: scale(1.18);
}

@media (max-width: 1200px) {
    .eco-circle {
        width: 220px;
        height: 220px;
    }

    .eco-circle-content {
        padding: 18px;
    }

    .eco-circle-icon {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .eco-circle {
        width: 160px;
        height: 160px;
    }

    .eco-circle-content {
        padding: 10px;
    }

    .eco-circle-icon {
        font-size: 24px;
    }
}

.eco-circle-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    animation: halo-rotate 8s linear infinite;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.eco-circle .halo1 {
    width: 340px;
    height: 340px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.eco-circle .halo2 {
    width: 380px;
    height: 380px;
    top: -40px;
    left: -40px;
    opacity: 0.25;
    animation-delay: 2s;
}

.eco-circle .halo3 {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    opacity: 0.18;
    animation-delay: 4s;
}

@keyframes halo-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.eco-circle:hover .eco-circle-halo {
    opacity: 0.7;
    filter: blur(16px);
}

.sustainable-dev {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .blur-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sustainable-dev .blur-dot-1 {
    width: 200px;
    height: 200px;
    background: rgba(67, 178, 108, 0.08);
    top: 20%;
    left: 10%;
}

.sustainable-dev .blur-dot-2 {
    width: 150px;
    height: 150px;
    background: rgba(167, 251, 108, 0.08);
    top: 60%;
    left: 30%;
}

.sustainable-dev .blur-dot-3 {
    width: 180px;
    height: 180px;
    background: rgba(67, 178, 108, 0.06);
    top: 30%;
    right: 15%;
}

.vision-timeline {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0 auto;
    height: 200px;
}

.vision-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
}

.vision-steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
}

.vision-step {
    position: absolute;
    width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    z-index: 2;
}

.vision-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #43b26c;
    box-shadow: 0 6px 18px rgba(67, 178, 108, 0.13), 0 1.5px 12px 0 rgba(0, 0, 0, 0.07);
    margin-top: 8px;
    flex-shrink: 0;
    border: 2.5px solid #eaffea;
}

.vision-content {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.vision-num {
    position: absolute;
    top: -10px;
    left: -18px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e0f5e7;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.vision-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.vision-desc {
    font-size: 1rem;
    color: #444;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

@media (max-width: 900px) {
    .vision-timeline {
        max-width: 100%;
        height: 420px;
    }

    .vision-curve {
        height: 400px;
    }

    .vision-steps {
        height: 400px;
    }

    .vision-step {
        width: 90vw;
        min-width: 0;
        flex-direction: row;
        left: 5vw !important;
        gap: 14px;
    }

    .vision-step:nth-child(1) {
        top: 30px !important;
    }

    .vision-step:nth-child(2) {
        top: 170px !important;
    }

    .vision-step:nth-child(3) {
        top: 320px !important;
    }
}

@media (max-width: 576px) {
    .vision-timeline {
        height: 520px;
        margin-top: 30px;
    }

    .vision-curve {
        height: 500px;
    }

    .vision-steps {
        height: 500px;
    }

    .vision-step {
        width: 98vw;
        left: 1vw !important;
        gap: 10px;
    }

    .vision-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .vision-num {
        font-size: 2.2rem;
        left: -10px;
        top: -6px;
    }

    .vision-title,
    .vision-desc {
        margin-left: 14px;
        font-size: 0.98rem;
    }

    .vision-title {
        margin-bottom: 3px;
    }
}

.social-media-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 0 0 10px;
    z-index: 1000;
}

/* Thêm vào phần style của bạn */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    /* Thêm dòng này để đảm bảo biểu tượng luôn hiển thị */
    opacity: 1 !important;
}

/* Sửa lại các màu sắc */
.facebook {
    background: #1877f2 !important;
    color: white !important;
    /* Màu chữ/biểu tượng */
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    color: white !important;
}

.zalo {
    background: #0068ff !important;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
}

.youtube {
    background: #ff0000 !important;
    color: white !important;
}

/* Thêm hiệu ứng hover rõ ràng hơn */
.social-icon:hover {
    transform: translateX(-5px);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-media-banner {
        padding: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .zalo {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .social-media-banner {
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        border-radius: 10px 10px 0 0;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 5px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }

    .social-icon:hover {
        transform: translateY(-5px);
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}

/* Sustainable Development Section - New Design */
.sustainable-dev {
    background: none;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .section-header h2 {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(67, 178, 108, 0.10));
    text-shadow: 0 2px 12px rgba(167, 251, 108, 0.10);
    animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }

    50% {
        text-shadow: 0 0 24px rgba(167, 251, 108, 0.18);
    }

    100% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }
}

.sustainable-dev .section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    border-radius: 2px;
}

.sustainable-dev::before,
.sustainable-dev::after {
    display: none !important;
}

.sustainable-container {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sustainable-left {
    flex: 1;
    min-width: 300px;
}

.sustainable-content-wrapper {
    max-width: 540px;
}

.sustainable-title-accent {
    font-size: 120px;
    font-weight: 800;
    color: rgba(8, 105, 36, 0.04);
    line-height: 1;
    margin-bottom: -35px;
    letter-spacing: -2px;
}

.sustainable-subtitle {
    font-size: 34px;
    color: var(--eco-primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.sustainable-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--eco-primary-light);
    bottom: -10px;
    left: 0;
}

.sustainable-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: transparent;
    color: var(--eco-primary-color);
    border: 2px solid var(--eco-primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border-color: #43b26c;
    transform: translateY(-3px);
    box-shadow: var(--eco-shadow-md);
}

.btn-primary-outline span {
    transition: all 0.3s ease;
}

.btn-primary-outline i {
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary-outline:hover i {
    transform: translateX(5px);
}

.sustainable-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sustainable-visual-effect {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(8, 105, 36, 0.03) 0%, rgba(1, 178, 74, 0.06) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visual-card {
    position: absolute;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.10) 0%, rgba(67, 178, 108, 0.08) 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.10), 0 1.5px 12px 0 rgba(67, 178, 108, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: none !important;
    overflow: hidden;
    cursor: pointer;
    border-top: 6px solid;
    border-image: linear-gradient(90deg, #a7fb6c, #43b26c) 1;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.visual-card .visual-icon {
    font-size: 50px;
    background: linear-gradient(90deg, #a7fb6c, #43b26c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 4px;
    transition: all 0.4s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.13), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border-color: #a7fb6c;
    z-index: 20;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.13) 0%, rgba(67, 178, 108, 0.10) 100%);
}

.visual-label {
    font-size: 18px;
    font-weight: 800;
    color: #086924;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 4px 16px;
    margin-top: 0px;
    background: none;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
}

.visual-card:hover .visual-label {
    color: #43b26c;
    font-size: 20px;
    text-shadow: 0 4px 16px rgba(67, 178, 108, 0.18);
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(67, 178, 108, 0.18), 0 2px 8px rgba(67, 178, 108, 0.12);
    transform: translateY(-3px);
}

/* --- THÊM CSS ĐỔI MÀU TIÊU ĐỀ CÁC SECTION --- */
.eco-modern-title,
.section-header h2,
.news-section .section-header h2,
.partners-section .section-header h2 {
    font-weight: 900;
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-modern-title span,
.section-header h2 span,
.news-section .section-header h2 span,
.partners-section .section-header h2 span {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    color: unset !important;
    display: inline-block;
}

/* Nếu muốn phần đầu là màu #1a3c1a, phần sau là gradient thì cần 2 span trong mỗi tiêu đề */
.eco-modern-title span:first-child,
.section-header h2 span:first-child,
.news-section .section-header h2 span:first-child,
.partners-section .section-header h2 span:first-child {
    background: none !important;
    color: #1a3c1a !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    text-fill-color: initial !important;
}

.eco-bubbles-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* dưới .eco-modern-circles, trên svg sóng */
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e6fff3cc 0%, #b6f5d8cc 100%);
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.22;
    animation: move-up 8s linear infinite;
    backdrop-filter: blur(8px);
}

.bubble:nth-child(2) {
    width: 18px;
    height: 18px;
    filter: blur(10px);
    opacity: 0.15;
}

.bubble:nth-child(3) {
    width: 24px;
    height: 24px;
    filter: blur(12px);
    opacity: 0.18;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    filter: blur(18px);
    opacity: 0.10;
}

.bubble:nth-child(5) {
    width: 14px;
    height: 14px;
    filter: blur(8px);
    opacity: 0.13;
}

@keyframes move-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.35;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        transform: translateY(-420px) scale(1.2);
        opacity: 0;
    }
}

.eco-modern-wave {
    position: relative;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-radius: 24px;
}

.eco-modern-desc.highlight-ecosystem {
    background: linear-gradient(90deg, #f5fcf6 60%, #e8f5e9 100%);
    border-left: 6px solid #43b26c;
    box-shadow: 0 4px 24px rgba(67, 178, 108, 0.08);
    padding: 32px 38px 32px 48px;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 18px;
    animation: fadeInUp 1s;
}

.eco-ecosystem-icon {
    font-size: 48px;
    color: #43b26c;
    flex-shrink: 0;
    margin-right: 10px;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
}

.eco-modern-desc.highlight-ecosystem p {
    font-size: 1.18rem;
    color: #086924;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.1px;
    text-align: left;
}

.eco-highlight {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 768px) {
    .eco-modern-desc.highlight-ecosystem {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 18px 24px 18px;
        gap: 12px;
    }

    .eco-ecosystem-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .eco-modern-desc.highlight-ecosystem p {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.eco-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px 0 rgba(67, 178, 108, 0.10),
        0 1.5px 12px 0 rgba(67, 178, 108, 0.08),
        0 0 0 0px #a7fb6c88;
    /* Halo mặc định nhỏ */
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    transition: box-shadow 0.4s, border 0.4s, background 0.4s;
    z-index: 1;
}

.eco-circle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    opacity: 0.7;
    z-index: 0;
    filter: blur(8px);
    pointer-events: none;
    transition: opacity 0.4s;
}

.eco-circle:hover,
.eco-circle:focus {
    box-shadow:
        0 16px 48px 0 rgba(67, 178, 108, 0.18),
        0 4px 24px 0 rgba(167, 251, 108, 0.10),
        0 0 0 24px #a7fb6c33;
    /* Halo lớn khi hover */
    background: rgba(255, 255, 255, 0.28);
    border: 2.5px solid #a7fb6c;
    z-index: 10;
}

.eco-circle:hover::before,
.eco-circle:focus::before {
    opacity: 1;
    filter: blur(16px);
}

.eco-circle-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 12px rgba(67, 178, 108, 0.06);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.4s;
}

.eco-circle-icon {
    font-size: 48px;
    color: #43b26c;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
    transition: transform 0.4s;
}

.eco-circle:hover .eco-circle-icon {
    transform: scale(1.18);
}

@media (max-width: 1200px) {
    .eco-circle {
        width: 220px;
        height: 220px;
    }

    .eco-circle-content {
        padding: 18px;
    }

    .eco-circle-icon {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .eco-circle {
        width: 160px;
        height: 160px;
    }

    .eco-circle-content {
        padding: 10px;
    }

    .eco-circle-icon {
        font-size: 24px;
    }
}

.eco-circle-halo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    background: radial-gradient(circle, #a7fb6c55 0%, #43b26c22 60%, transparent 100%);
    animation: halo-rotate 8s linear infinite;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.eco-circle .halo1 {
    width: 340px;
    height: 340px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.eco-circle .halo2 {
    width: 380px;
    height: 380px;
    top: -40px;
    left: -40px;
    opacity: 0.25;
    animation-delay: 2s;
}

.eco-circle .halo3 {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    opacity: 0.18;
    animation-delay: 4s;
}

@keyframes halo-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.eco-circle:hover .eco-circle-halo {
    opacity: 0.7;
    filter: blur(16px);
}

.sustainable-dev {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .blur-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.sustainable-dev .blur-dot-1 {
    width: 200px;
    height: 200px;
    background: rgba(67, 178, 108, 0.08);
    top: 20%;
    left: 10%;
}

.sustainable-dev .blur-dot-2 {
    width: 150px;
    height: 150px;
    background: rgba(167, 251, 108, 0.08);
    top: 60%;
    left: 30%;
}

.sustainable-dev .blur-dot-3 {
    width: 180px;
    height: 180px;
    background: rgba(67, 178, 108, 0.06);
    top: 30%;
    right: 15%;
}

.vision-timeline {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0 auto;
    height: 200px;
}

.vision-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
}

.vision-steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
}

.vision-step {
    position: absolute;
    width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    z-index: 2;
}

.vision-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #43b26c;
    box-shadow: 0 6px 18px rgba(67, 178, 108, 0.13), 0 1.5px 12px 0 rgba(0, 0, 0, 0.07);
    margin-top: 8px;
    flex-shrink: 0;
    border: 2.5px solid #eaffea;
}

.vision-content {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.vision-num {
    position: absolute;
    top: -10px;
    left: -18px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e0f5e7;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.vision-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.vision-desc {
    font-size: 1rem;
    color: #444;
    margin-left: 22px;
    z-index: 2;
    position: relative;
    text-align: left;
}

@media (max-width: 900px) {
    .vision-timeline {
        max-width: 100%;
        height: 420px;
    }

    .vision-curve {
        height: 400px;
    }

    .vision-steps {
        height: 400px;
    }

    .vision-step {
        width: 90vw;
        min-width: 0;
        flex-direction: row;
        left: 5vw !important;
        gap: 14px;
    }

    .vision-step:nth-child(1) {
        top: 30px !important;
    }

    .vision-step:nth-child(2) {
        top: 170px !important;
    }

    .vision-step:nth-child(3) {
        top: 320px !important;
    }
}

@media (max-width: 576px) {
    .vision-timeline {
        height: 520px;
        margin-top: 30px;
    }

    .vision-curve {
        height: 500px;
    }

    .vision-steps {
        height: 500px;
    }

    .vision-step {
        width: 98vw;
        left: 1vw !important;
        gap: 10px;
    }

    .vision-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .vision-num {
        font-size: 2.2rem;
        left: -10px;
        top: -6px;
    }

    .vision-title,
    .vision-desc {
        margin-left: 14px;
        font-size: 0.98rem;
    }

    .vision-title {
        margin-bottom: 3px;
    }
}

.social-media-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px 0 0 10px;
    z-index: 1000;
}

/* Thêm vào phần style của bạn */
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    /* Thêm dòng này để đảm bảo biểu tượng luôn hiển thị */
    opacity: 1 !important;
}

/* Sửa lại các màu sắc */
.facebook {
    background: #1877f2 !important;
    color: white !important;
    /* Màu chữ/biểu tượng */
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    color: white !important;
}

.zalo {
    background: #0068ff !important;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
}

.youtube {
    background: #ff0000 !important;
    color: white !important;
}

/* Thêm hiệu ứng hover rõ ràng hơn */
.social-icon:hover {
    transform: translateX(-5px);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-media-banner {
        padding: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .zalo {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .social-media-banner {
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        border-radius: 10px 10px 0 0;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 5px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }

    .social-icon:hover {
        transform: translateY(-5px);
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}

/* Sustainable Development Section - New Design */
.sustainable-dev {
    background: none;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Xóa các dòng background: none !important; và box-shadow, backdrop-filter override */
}

.sustainable-dev .section-header h2 {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(67, 178, 108, 0.10));
    text-shadow: 0 2px 12px rgba(167, 251, 108, 0.10);
    animation: title-glow 4s ease-in-out infinite;
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }

    50% {
        text-shadow: 0 0 24px rgba(167, 251, 108, 0.18);
    }

    100% {
        text-shadow: 0 0 8px rgba(67, 178, 108, 0.12);
    }
}

.sustainable-dev .section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    border-radius: 2px;
}

.sustainable-dev::before,
.sustainable-dev::after {
    display: none !important;
}

.sustainable-container {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sustainable-left {
    flex: 1;
    min-width: 300px;
}

.sustainable-content-wrapper {
    max-width: 540px;
}

.sustainable-title-accent {
    font-size: 120px;
    font-weight: 800;
    color: rgba(8, 105, 36, 0.04);
    line-height: 1;
    margin-bottom: -35px;
    letter-spacing: -2px;
}




.sustainable-subtitle {
    font-size: 34px;
    color: var(--eco-primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.sustainable-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--eco-primary-light);
    bottom: -10px;
    left: 0;
}

.sustainable-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: transparent;
    color: var(--eco-primary-color);
    border: 2px solid var(--eco-primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary-outline:hover {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border-color: #43b26c;
    transform: translateY(-3px);
    box-shadow: var(--eco-shadow-md);
}

.btn-primary-outline span {
    transition: all 0.3s ease;
}

.btn-primary-outline i {
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary-outline:hover i {
    transform: translateX(5px);
}

.sustainable-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.sustainable-visual-effect {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(8, 105, 36, 0.03) 0%, rgba(1, 178, 74, 0.06) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.visual-card {
    position: absolute;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.10) 0%, rgba(67, 178, 108, 0.08) 100%);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.10), 0 1.5px 12px 0 rgba(67, 178, 108, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: none !important;
    overflow: hidden;
    cursor: pointer;
    border-top: 6px solid;
    border-image: linear-gradient(90deg, #a7fb6c, #43b26c) 1;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

.visual-card .visual-icon {
    font-size: 50px;
    background: linear-gradient(90deg, #a7fb6c, #43b26c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 4px;
    transition: all 0.4s;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.13), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border-color: #a7fb6c;
    z-index: 20;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.13) 0%, rgba(67, 178, 108, 0.10) 100%);
}

.visual-label {
    font-size: 18px;
    font-weight: 800;
    color: #086924;
    letter-spacing: 0.5px;
    border-radius: 10px;
    padding: 4px 16px;
    margin-top: 0px;
    background: none;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
}

.visual-card:hover .visual-label {
    color: #43b26c;
    font-size: 20px;
    text-shadow: 0 4px 16px rgba(67, 178, 108, 0.18);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--eco-primary-color), var(--eco-primary-light));
}

/* Thêm hiệu ứng ánh sáng khi hover */
.visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
    z-index: 1;
}

.visual-card:hover {
    transform: translateY(-30px) scale(1.1);
    box-shadow: var(--eco-shadow-lg);
    z-index: 20;
    border: 2px solid rgba(67, 178, 108, 0.3);
}

.visual-card:hover::after {
    left: 100%;
}

.visual-card-1 {
    top: 30px;
    left: 50px;
    animation: float1 8s ease-in-out infinite;
}

.visual-card-1:hover {
    animation-play-state: paused;
}

.visual-card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float2 7s ease-in-out infinite;
}

.visual-card-2:hover {
    animation-play-state: paused;
    transform: translate(-50%, -80%) scale(1.08);
}

.visual-card-3 {
    bottom: 30px;
    right: 50px;
    animation: float3 9s ease-in-out infinite;
}

.visual-card-3:hover {
    animation-play-state: paused;
}

@keyframes float1 {

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

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

@keyframes float2 {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -65%);
    }
}

@keyframes float3 {

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

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

.visual-icon {
    font-size: 50px;
    color: var(--eco-primary-color);
    margin-bottom: 15px;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visual-card:hover .visual-icon {
    transform: scale(1.3) translateY(-5px);
    color: var(--eco-primary-light);
}

.visual-label {
    font-size: 18px;
    font-weight: 800;
    color: #086924;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.visual-card:hover .visual-label {
    color: #43b26c;
    font-size: 20px;
    text-shadow: 0 4px 16px rgba(67, 178, 108, 0.18);
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 105, 36, 0.05) 0%, rgba(67, 178, 108, 0.1) 100%);
    z-index: 1;
}

.visual-circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.visual-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

.visual-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(8, 105, 36, 0.02) 0%, rgba(67, 178, 108, 0.04) 100%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.2;
    }

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

/* Responsive styles */
@media (max-width: 1100px) {
    .sustainable-container {
        gap: 30px;
    }

    .visual-card {
        width: 160px;
        height: 160px;
    }

    .visual-card-1 {
        left: 30px;
    }

    .visual-card-3 {
        right: 30px;
    }
}

@media (max-width: 992px) {
    .sustainable-container {
        flex-direction: column;
    }

    .sustainable-left,
    .sustainable-right {
        width: 100%;
    }

    .sustainable-content-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .sustainable-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sustainable-visual-effect {
        margin: 40px auto 0;
        height: auto;
        min-height: 400px;
        padding: 20px;
    }

    .visual-card {
        position: relative;
        margin: 15px;
        transform: none !important;
        animation: none !important;
        position: static;
        max-width: 160px;
    }

    .visual-card-2 {
        transform: none !important;
    }

    .visual-circle {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .sustainable-dev {
        padding: 60px 0;
    }

    .sustainable-title-accent {
        font-size: 80px;
        margin-bottom: -20px;
    }

    .sustainable-subtitle {
        font-size: 28px;
    }

    .sustainable-visual-effect {
        padding: 30px 10px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .visual-card {
        margin: 10px;
        width: calc(50% - 20px);
        max-width: none;
        height: 160px;
    }

    .visual-icon {
        font-size: 40px;
    }

    .visual-label {
        font-size: 16px;
    }

    .btn-primary-outline {
        margin: 0 auto;
        display: flex;
    }
}

@media (max-width: 576px) {
    .sustainable-dev {
        padding: 40px 0;
    }

    .sustainable-title-accent {
        font-size: 60px;
        margin-bottom: -15px;
    }

    .sustainable-subtitle {
        font-size: 24px;
    }

    .sustainable-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .visual-card {
        width: 90%;
        height: auto;
        padding: 20px 15px;
        margin: 10px 0;
    }

    .visual-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .visual-label {
        font-size: 16px;
    }

    .btn-primary-outline {
        padding: 10px 25px;
        font-size: 13px;
    }
}

.emc-ecosystem-modern {
    position: relative;
    padding: 0;
    background: none;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.eco-modern-container {
    border: none;
    max-width: 100%;
    padding: 0;
    position: relative;
}

.eco-modern-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    gap: 60px;
}

.eco-modern-left {
    flex: 0 1 45%;
    text-align: right;
    padding-right: 40px;
    border-right: 3px solid rgba(0, 200, 83, 0.2);
}

.eco-modern-right {
    flex: 0 1 55%;
    padding-left: 20px;
}

.eco-modern-title {
    margin: 0;
}

.title-green {
    font-size: 64px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.title-black {
    font-size: 72px;
    color: #333;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.eco-modern-desc.highlight-ecosystem {
    background: linear-gradient(90deg, #f5fcf6 60%, #e8f5e9 100%);
    border-left: 6px solid #43b26c;
    box-shadow: 0 4px 24px rgba(67, 178, 108, 0.08);
    padding: 32px 38px 32px 48px;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 18px;
    animation: fadeInUp 1s;
}

.eco-ecosystem-icon {
    font-size: 48px;
    color: #43b26c;
    flex-shrink: 0;
    margin-right: 10px;
    filter: drop-shadow(0 2px 8px #a7fb6c44);
}

.eco-modern-desc.highlight-ecosystem p {
    font-size: 1.18rem;
    color: #086924;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.1px;
    text-align: left;
}

.eco-highlight {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

html.dark-theme body .emc-ecosystem-modern .eco-modern-container .eco-modern-flex .eco-modern-desc.highlight-ecosystem>p {
    color: rgba(1, 45, 13, 0.8) !important;
}


@media (max-width: 1200px) {
    .title-green {
        font-size: 48px;
    }

    .title-black {
        font-size: 56px;
    }

    .eco-modern-desc.highlight-ecosystem p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .eco-modern-flex {
        flex-direction: column;
        gap: 30px;
    }

    .eco-modern-left {
        flex: 0 1 auto;
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 3px solid rgba(0, 200, 83, 0.2);
        padding-bottom: 30px;
    }

    .eco-modern-right {
        flex: 0 1 auto;
        padding-left: 0;
        width: 100%;
        max-width: 600px;
    }

    .eco-modern-desc.highlight-ecosystem {
        padding: 25px 30px;
    }
}

@media (max-width: 576px) {
    .title-green {
        font-size: 36px;
    }

    .title-black {
        font-size: 42px;
    }

    .eco-modern-desc.highlight-ecosystem p {
        font-size: 15px;
    }
}

.eco-modern-wave {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 100px;
    z-index: 1;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    z-index: 2;
}

.wave-svg path {
    transform-origin: 50% 50%;
    transform-box: fill-box;
    animation: wave 8s ease-in-out infinite;
}

.wave-svg path:nth-child(1) {
    fill: rgba(133, 215, 155, 0.2);
    animation-delay: 0s;
}

html.dark-theme .wave-svg path:nth-child(1) {
    fill: rgba(72, 207, 173, 0.16);
    /* Xanh ngọc nhạt, lớp xa nhất */
}

.wave-svg path:nth-child(2) {
    fill: rgba(100, 240, 139, 0.4);
    animation-delay: 1.5s;
}

html.dark-theme .wave-svg path:nth-child(2) {
    fill: rgba(80, 170, 255, 0.13);
    /* Xanh dương nhạt, lớp giữa */
}

.wave-svg path:nth-child(3) {
    fill: rgba(0, 255, 126, 0.6);
    animation-delay: 3s;
}

html.dark-theme .wave-svg path:nth-child(3) {
    fill: rgba(80, 219, 215, 0.18);
    /* Xanh lá pastel, lớp gần nhất */
}

@keyframes wave {
    0% {
        d: path("M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,165.3C672,171,768,213,864,218.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }

    25% {
        d: path("M0,160L48,181.3C96,203,192,245,288,261.3C384,277,480,267,576,240C672,213,768,171,864,165.3C960,160,1056,192,1152,213.3C1248,235,1344,245,1392,250.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }

    50% {
        d: path("M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,213.3C672,203,768,149,864,144C960,139,1056,181,1152,208C1248,235,1344,245,1392,250.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }

    75% {
        d: path("M0,256L48,250.7C96,245,192,235,288,213.3C384,192,480,160,576,165.3C672,171,768,213,864,229.3C960,245,1056,235,1152,213.3C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }

    100% {
        d: path("M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,165.3C672,171,768,213,864,218.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z");
    }
}

@media (prefers-reduced-motion: reduce) {
    .wave-svg path {
        animation: none;
    }
}

.eco-modern-circles {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1440px;
    margin: 80px auto 0;
    /* Tăng margin-top lên 80px */
    position: relative;
    z-index: 3;
    flex-wrap: nowrap;
    padding: 0 20px;
}

.eco-circle {
    width: 300px;
    height: 300px;
    position: relative;
    cursor: pointer;
    flex-shrink: 1;
}

.eco-circle-content {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.2);
    border: 2px solid rgba(0, 200, 83, 0.1);
}

.eco-circle:hover .eco-circle-content {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 45px rgba(0, 200, 83, 0.25);
    border-color: rgba(0, 200, 83, 0.3);
}

.eco-circle-icon {
    font-size: 40px;
    color: #00c853;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.eco-circle:hover .eco-circle-icon {
    transform: scale(1.2);
    color: #00a844;
}

.eco-circle h3 {
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin: 0 0 15px;
    font-weight: 600;
}

.eco-circle p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
}

.eco-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.eco-bg-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00c853 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.eco-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(0, 200, 83, 0.05) 0%,
            rgba(0, 200, 83, 0.02) 30%,
            transparent 70%);
    transform: rotate(-15deg);
}

@media (max-width: 1200px) {
    .eco-circle {
        width: 250px;
        height: 250px;
    }

    .eco-modern-circles {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .eco-circle {
        width: 220px;
        height: 220px;
    }

    .eco-modern-circles {
        gap: 20px;
        overflow-x: auto;
        padding: 20px;
        justify-content: flex-start;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .eco-modern-circles::-webkit-scrollbar {
        display: none;
    }

    .eco-circle-content {
        padding: 20px;
    }

    .eco-circle-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .eco-circle h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .eco-circle p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .eco-circle {
        width: 180px;
        height: 180px;
        flex: 0 0 auto;
    }

    .eco-modern-circles {
        gap: 15px;
        padding: 15px;
        margin-top: 30px;
        /* Giảm margin cho mobile */
    }

    .eco-circle-content {
        padding: 15px;
    }

    .eco-circle-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .eco-circle h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .eco-circle p {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .eco-circle {
        width: 160px;
        height: 160px;
    }

    .eco-modern-circles {
        gap: 12px;
        padding: 10px;
    }

    .eco-circle-content {
        padding: 12px;
    }

    .eco-circle-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .eco-circle h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .eco-circle p {
        font-size: 11px;
        line-height: 1.2;
    }
}

.made-by-emc {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.made-by-emc::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    z-index: 1;
    border-radius: 50%;
}

.made-by-emc::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(8, 105, 36, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
    border-radius: 50%;
}

.made-by-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.made-by-text {
    flex: 0 0 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
}

.made-by-text h3 {
    font-size: 32px;
    color: #086924;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}


.made-by-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
    min-height: 80px;
    transition: all 0.5s;
    text-align: justify;
    word-spacing: 0.5px;
    letter-spacing: 0.2px;
    text-justify: inter-word;
}

.btn-video {
    width: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: none;
    border: 1px solid #086924;
    color: #086924;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(8, 105, 36, 0.25);
}

.btn-video:hover {
    border: none;
    color: #fff;
    background: #086924;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 105, 36, 0.3);
}

.btn-video i {
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-video:hover i {
    transform: scale(1.2);
    color: #00c853;
}

.made-by-visual {
    flex: 0 0 48%;
    min-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-diagram {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto;
    max-width: 100%;
}

.eco-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(145deg, #086924, #0a8c2f);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(8, 105, 36, 0.3),
        inset 5px 5px 15px rgba(255, 255, 255, 0.1),
        inset -5px -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    overflow: hidden;
}

.eco-center::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    top: 0;
    left: 0;
}

.eco-center img {
    width: 65%;
    height: auto;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

.eco-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    padding: 0;
    z-index: 4;
    overflow: hidden;
    box-sizing: border-box;
    border: 3px solid transparent;
    transition: box-shadow 0.4s, border 0.4s, background 0.4s, z-index 0s, transform 0.5s cubic-bezier(.68, -0.55, .27, 1.55);
}

.eco-item.active {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(8, 105, 36, 0.18), 0 1.5px 12px 0 rgba(0, 0, 0, 0.10);
    border: 2px solid var(--eco-primary-color);
    z-index: 20;
    transform: scale(1.1);
}

.eco-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    background: #f3f3f3;
    display: block;
    transition: none;
}

.eco-item p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--eco-primary-color);
    margin: 0;
    padding: 8px 0 0 0;
    line-height: 1.2;
    background: none;
    flex: 0 0 auto;
    letter-spacing: 0.5px;
}

.eco-item[data-index="3"] p {
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    word-spacing: 0.5px;
    letter-spacing: 0.2px;
    text-justify: inter-word;
    padding: 0 10px;
}

.fade {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.fade.show {
    opacity: 1;
    visibility: visible;
}

.made-by-text h3,
.made-by-text p {
    min-height: 24px;
    margin: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.made-by-text h3.show,
.made-by-text p.show {
    opacity: 1;
    visibility: visible;
}

.venn-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.venn-item.active {
    transform: scale(1.1);
    z-index: 2;
}

@media (max-width: 992px) {
    .made-by-content {
        flex-direction: column;
    }

    .made-by-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .made-by-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .made-by-visual {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .made-by-emc {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .ecosystem-diagram {
        height: 380px;
        width: 380px;
        max-width: 100%;
        margin: 0 auto;
    }

    .eco-center {
        width: 110px;
        height: 110px;
    }

    .eco-item {
        width: 100px;
        height: 100px;
    }

    .eco-item img {
        height: 65px;
    }

    .eco-item p {
        font-size: 14px;
    }

    .made-by-text h3 {
        font-size: 26px;
    }

    .made-by-text p {
        font-size: 15px;
        line-height: 1.6;
        min-height: auto;
    }

    .btn-video {
        padding: 12px 24px;
        font-size: 14px;
        margin: 0 auto;
    }

    .btn-video i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .made-by-emc {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .made-by-text h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .made-by-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .ecosystem-diagram {
        height: 300px;
        width: 300px;
    }

    .eco-center {
        width: 80px;
        height: 80px;
    }

    .eco-item {
        width: 80px;
        height: 80px;
    }

    .eco-item img {
        height: 50px;
    }

    .eco-item p {
        font-size: 12px;
        padding: 5px 0 0;
    }

    .btn-video {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.partners-section {
    position: relative;
    padding: 100px 0;
    background: none;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(67, 178, 108, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.partners-title-custom {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.partners-title-custom span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
}


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

.partners-grid {
    display: flex;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-content: center;
}

.partner-item {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(167, 251, 108, 0.1), rgba(67, 178, 108, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item:hover::before,
.partner-item:hover::after {
    opacity: 1;
}

.partner-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-item a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-section .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(167, 251, 108, 0.1), rgba(67, 178, 108, 0.1));
    animation: float-circle 15s infinite ease-in-out;
}

.animated-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.animated-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

.animated-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-circle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .partners-title-custom {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .partner-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-title-custom {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .partner-item {
        padding: 15px;
    }

    .partner-item img {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .partners-title-custom {
        font-size: 1.5rem;
    }

    .partners-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .partner-item {
        width: 100%;
        max-width: 280px;
        margin: 0;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .partner-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .partner-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 80px;
    }
}

/* News Section */
.news-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    overflow: hidden;
}

.news-swiper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

}

.swiper-controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 0;
}

.swiper-pagination {
    display: flex !important;
    position: static;
    width: auto !important;
    gap: 4px;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 !important;
    background: #e5e5e5;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #43b26c;
    transform: scale(1.2);
}

/* Ẩn nút điều hướng */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.news-item {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    height: 450px;
}

.news-item .news-image img {
    transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.news-category-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #e8f5e9;
    color: #00a859;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 67px;
    margin-bottom: auto;
}

.news-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

/* --- WOW EFFECTS FOR NEWS SECTION (FORCE PRIORITY) --- */
.news-item {
    opacity: 0;
    transform: translateY(40px) scale(1);
    transition: opacity 0.4s cubic-bezier(.34, 1.56, .64, 1), transform 0.4s cubic-bezier(.23, 1, 0.32, 1), background 0.4s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.4s cubic-bezier(.34, 1.56, .64, 1), border 0.4s cubic-bezier(.34, 1.56, .64, 1);
    will-change: opacity, transform;
}

.news-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.news-item:hover {
    transform: translateY(0) scale(1.05);
    background: linear-gradient(120deg, #e8f5e9 60%, #a7fb6c22 100%);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.18), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border: 2px solid #43b26c55;
}

html.dark-theme .news-item:hover {
    transform: translateY(0) scale(1.05);
    background: linear-gradient(120deg, #217162 60%, #399484 80%, #53b1a2 100%);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.18), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border: 2px solid #43b26c55;
}

.news-category-tag {
    animation: pulseTag 1s infinite;
}

@keyframes pulseTag {

    0%,
    100% {
        box-shadow: 0 0 0 0 #43b26c44;
    }

    50% {
        box-shadow: 0 0 8px 4px #43b26c33;
    }
}

.read-more {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    opacity: 0.12;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 0;
    pointer-events: none;
}

.read-more:hover::after {
    transform: scaleX(1);
}

.read-more i {
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.read-more:hover i {
    transform: translateX(8px) scale(1.2);
}

/* Card hover: gradient + shadow + viền - fix chuẩn transform */
.news-item {
    background: #fff;
    border: 2px solid transparent;
    transition:
        background 1s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow 1s cubic-bezier(.34, 1.56, .64, 1),
        border 1s cubic-bezier(.34, 1.56, .64, 1),
        transform 1s cubic-bezier(.23, 1, 0.32, 1);
}

.news-item:hover {
    transform: scale(1.05);
    background: linear-gradient(120deg, #e8f5e9 60%, #a7fb6c22 100%);
    box-shadow: 0 16px 48px 0 rgba(67, 178, 108, 0.18), 0 4px 24px 0 rgba(167, 251, 108, 0.10);
    border: 2px solid #43b26c55;
}

/* Ảnh động + overlay */
.news-item:hover .news-image img {
    transform: scale(1.12) rotate(-2deg);
    filter: brightness(1.1) saturate(1.2);
}

.news-item .news-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.news-item:hover .news-image::after {
    opacity: 0;
}

.news-image {
    position: relative;
    overflow: hidden;
}

/* Tag nổi bật hơn khi hover */
.news-item:hover .news-category-tag {
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    color: #fff;
    box-shadow: 0 0 12px #43b26c55;
    transform: scale(1.08);
}

/* Nút XEM THÊM nổi bật */
.news-item .read-more {
    background: none;
    color: #086924;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
}

.news-item .read-more:hover {
    background: linear-gradient(90deg, rgb(71, 248, 71) 0%, #43b26c 100%);
    color: #fff;
}

.news-item .read-more:hover i {
    color: #fff;
    transform: translateX(6px) scale(1.2);
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .news-swiper {
        margin: 0 -15px;
        padding: 20px 15px;
    }

    .news-item {
        max-width: 340px;
    }
}

.eco-modern-bg,
.eco-bg-dots,
.eco-bg-gradient,
.bubble {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.random-green-dots-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.random-green-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #a7fb6c 0%, #43b26c 100%);
    opacity: 0.18;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
    animation: float-dot 18s infinite linear;
}

@keyframes float-dot {
    0% {
        transform: translateY(0);
    }

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

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

.green-blur-overlay {
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.green-blur-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    /* Màu và blur sẽ set bằng JS */
    animation: move-blur-bubble 24s ease-in-out infinite alternate;
}

@keyframes move-blur-bubble {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.08);
    }

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

.madeby-section-title {
    font-size: 2.2rem;
    color: #1f231f;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
    text-align: left;
}

@media (max-width: 768px) {
    .madeby-section-title {
        font-size: 1.4rem;
        text-align: center;
    }
}

.madeby-section-title-gradient {
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: unset;
    font-weight: 800;
}

.made-by-visual.venn-style {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    background: none;
    border-radius: 30px;
    overflow: visible;
}

/* Căn giữa bằng transform từ tâm */
.venn-item {
    position: absolute;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1 !important;
    left: 50%;
    top: 50%;
}

.venn-item[data-index="2"] {
    /* Trên */
    transform: translate(-50%, -70%);
    z-index: 2;
}

.venn-item[data-index="0"] {
    /* Trái dưới */
    transform: translate(-88%, 0);
    z-index: 2;
}

.venn-item[data-index="1"] {
    /* Phải dưới */
    transform: translate(-12%, 0);
    z-index: 2;
}

.venn-glass {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 40px 0 rgb(238, 237, 237), 0 2px 16px 0 rgba(67, 178, 108, 0.10);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #7b8ca0;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s, color 0.3s;
    overflow: visible;
    z-index: 3;
}

.venn-glass::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.glass-a::before {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 0%, #43b2ff 0%, #7b61ff 80%, transparent 100%);
}

.glass-b::before {
    left: -40px;
    top: 60%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 0% 50%, #43b26c 0%, #a7fb6c 80%, transparent 100%);
}

.glass-c::before {
    right: -40px;
    top: 60%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 100% 50%, #ff61a6 0%, #ffb36c 80%, transparent 100%);
}

.venn-item.active .venn-glass,
.venn-item:hover .venn-glass {
    box-shadow: 0 0 40px 10px #fff, 0 8px 32px 0 rgba(31, 38, 135, 0.28);
    border: 2.5px solid #fff;
    transform: scale(1.12);
    color: #222;
    z-index: 3;
}

.venn-item.active,
.venn-item:hover {
    z-index: 10;
}

/* 3 hình tròn gradient tiêu đề ABC nằm ngoài */
.venn-gradient-title {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s, filter 0.3s;
    pointer-events: none;
}

.gradient-a {
    background: radial-gradient(circle at 60% 40%, #43b2ff 0%, #7b61ff 100%);
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
}

.gradient-b {
    background: radial-gradient(circle at 60% 40%, #43b26c 0%, #a7fb6c 100%);
    left: 0px;
    top: 320px;
}

.gradient-c {
    background: radial-gradient(circle at 60% 40%, #ff61a6 0%, #ffb36c 100%);
    right: 0px;
    top: 320px;
}

.venn-gradient-title.active,
.venn-gradient-title.glow {
    box-shadow: 0 0 32px 8px #fff, 0 4px 24px 0 rgba(0, 0, 0, 0.18);
    filter: brightness(1.2) saturate(1.2);
    z-index: 20;
}

.venn-glass i {
    font-size: 3.2rem;
    color: #7b8ca0;
    z-index: 2;
    position: relative;
}

.venn-label {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 32px 0 #a7fb6c55, 0 6px 32px 0 rgba(0, 0, 0, 0.10);
    pointer-events: none;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

/* Căn vị trí từng label */
.label-logistic {
    left: -50px;
    top: 350px;
    background: radial-gradient(circle at 60% 40%, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
    border-color: #43b26c;
    box-shadow: 0 0 32px 0 #a7fb6c55, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.label-ewallet {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 60% 40%, #43e6b6 0%, #43b26c 100%);
    color: #fff;
    border-color: #a7fb6c;
    box-shadow: 0 0 32px 0 #43e6b655, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.label-ecommerce {
    right: -50px;
    top: 340px;
    background: radial-gradient(circle at 60% 40%, #b6ffe0 0%, #43b26c 100%);
    color: #fff;
    border-color: #43e6b6;
    box-shadow: 0 0 32px 0 #b6ffe055, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.glass-a i {
    color: #43b2ff;
    background: linear-gradient(90deg, #43b2ff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.glass-b i {
    color: #43b26c;
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.glass-c i {
    color: #ff61a6;
    background: linear-gradient(90deg, #ff61a6 0%, #ffb36c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.label-logistic {
    background: radial-gradient(circle at 60% 40%, #a7fb6c 0%, #43b26c 100%);
    color: #fff;
}

.label-ewallet {
    background: radial-gradient(circle at 60% 40%, #43e6b6 0%, #43b26c 100%);
    color: #fff;
}

.label-ecommerce {
    background: radial-gradient(circle at 60% 40%, #b6ffe0 0%, #43b26c 100%);
    color: #fff;
}

.venn-glass svg {
    width: 48px;
    height: 48px;
    stroke: #1a3c1a !important;
    color: #1a3c1a !important;
    display: block;
    margin: 0 auto;
}

.glassmorphism-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.35) 0%, rgba(167, 251, 108, 0.25) 100%);
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(67, 178, 108, 0.25);
    position: relative;
    overflow: hidden;
}

.glassmorphism-icon ion-icon {
    font-size: 54px;
    color: #43b26c;
    /* Gradient cho icon */
    background: linear-gradient(135deg, #43b26c 0%, #a7fb6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #43b26c55);
    z-index: 2;
    position: relative;
}

/* Hiệu ứng ánh sáng nổi bật */
.glassmorphism-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60%;
    height: 40%;
    background: linear-gradient(120deg, #fff8 0%, #fff2 100%);
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.7;
    z-index: 1;
}

.glassmorphism-outer {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(67, 178, 108, 0.25) 0%, rgba(167, 251, 108, 0.18) 100%);
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.18);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.glassmorphism-inner {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(167, 251, 108, 0.15) 100%);
    box-shadow: 0 4px 16px 0 rgba(67, 178, 108, 0.10);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.glassmorphism-inner ion-icon {
    font-size: 36px;
    color: #43b26c;
    background: linear-gradient(135deg, #43b26c 0%, #a7fb6c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #43b26c55);
}

.double-boat-morphism {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boat-morphism {
    position: absolute;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.boat-morphism.back {
    color: #43b26c;
    /* xanh lá */
    filter: blur(0.5px) drop-shadow(0 2px 8px #43b26caa);
    z-index: 1;
}

.boat-morphism.front {
    color: #fff;
    filter: drop-shadow(0 2px 8px #43b26ccc);
    z-index: 2;
}

.venn-item[data-index="0"] ion-icon {
    color: #43b26c;
    background: linear-gradient(135deg, #43b26c 0%, #70a749 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px #43b26c88);
}

.venn-item[data-index="1"] ion-icon {
    color: #6fae89;
    background: linear-gradient(135deg, #43e6b6 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px #43e6b688);
}

.venn-item[data-index="2"] ion-icon {
    color: #80be39;
    background: linear-gradient(135deg, #a7fb6c 0%, #ffe066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px #66ff7888);
}

.label-logistic {
    border-color: #43b26c;
    box-shadow: 0 0 32px 0 #a7fb6c55, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.label-ewallet {
    border-color: #a7fb6c;
    box-shadow: 0 0 32px 0 #43e6b655, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.label-ecommerce {
    border-color: #43e6b6;
    box-shadow: 0 0 32px 0 #b6ffe055, 0 6px 32px 0 rgba(67, 178, 108, 0.10);
}

.label-logistic {
    border-color: #43b2ff;
    box-shadow: 0 0 32px 0 #43b2ff33, 0 6px 32px 0 #43e6b633;
    background: radial-gradient(circle at 60% 40%, #43b2ff33 0%, #43e6b633 60%, #fff7 100%);
}

.label-ewallet {
    border-color: #43e6b6;
    box-shadow: 0 0 32px 0 #43e6b633, 0 6px 32px 0 #a7fb6c33;
    background: radial-gradient(circle at 60% 40%, #43e6b633 0%, #a7fb6c33 60%, #fff7 100%);
}

.label-ecommerce {
    border-color: #a7fb6c;
    box-shadow: 0 0 32px 0 #a7fb6c33, 0 6px 32px 0 #43b2ff33;
    background: radial-gradient(circle at 60% 40%, #a7fb6c33 0%, #43b2ff33 60%, #fff7 100%);
}


.venn-label {
    background: linear-gradient(135deg, #7dc387 0%, #dbe9ea 100%);
    box-shadow: 0 8px 32px 0 #7dc38733, 0 1.5px 12px 0 #dbe9ea55;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-radius: 50%;
    border: 2.5px solid #dbe9ea;
    color: #222;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}

.label-logistic {
    background: radial-gradient(circle at 60% 40%, #43b2ff 0%, #43e6b6 60%, #fff7 100%);
    border: 4px solid #43b2ff;
    box-shadow: 0 0 32px 0 #43b2ff66, 0 6px 32px 0 #43e6b688, 0 0 0 18px #43b2ff22;
    color: #fff;
    text-shadow: 0 2px 16px #43b2ff88, 0 2px 8px #43e6b688;
    left: -50px;
    top: 350px;
}

.label-ewallet {
    background: radial-gradient(circle at 60% 40%, #43e6b6 0%, #a7fb6c 60%, #fff7 100%);
    border: 4px solid #43e6b6;
    box-shadow: 0 0 32px 0 #43e6b688, 0 6px 32px 0 #a7fb6c88, 0 0 0 18px #43e6b622;
    color: #fff;
    text-shadow: 0 2px 16px #43e6b688, 0 2px 8px #a7fb6c88;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

.label-ecommerce {
    background: radial-gradient(circle at 60% 40%, #ffe066 0%, #43b26c 60%, #fff7 100%);
    border: 4px solid #ffe066;
    box-shadow: 0 0 32px 0 #ffe06688, 0 6px 32px 0 #43b26c88, 0 0 0 18px #ffe06622;
    color: #fff;
    text-shadow: 0 2px 16px #ffe06688, 0 2px 8px #43b26c88;
    right: -50px;
    top: 340px;
}

.venn-label:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 0 48px 8px #fff, 0 8px 32px 0 #43b26c55, 0 0 0 24px #a7fb6c33;
    filter: brightness(1.15) drop-shadow(0 2px 24px #a7fb6c);
    z-index: 20;
}

.label-logistic {
    background: linear-gradient(135deg, #43b2ff 0%, #a7fb6c 100%);
    border: 3px solid #fff;
    box-shadow: 0 2px 16px 0 #43b2ff22, 0 1.5px 8px 0 #a7fb6c22;
    color: #fff;
    text-shadow: 0 2px 8px #43b2ff33;
    left: -50px;
    top: 350px;
}

.label-ewallet {
    background: linear-gradient(135deg, #43e6b6 0%, #a7fb6c 100%);
    border: 3px solid #fff;
    box-shadow: 0 2px 16px 0 #43e6b622, 0 1.5px 8px 0 #a7fb6c22;
    color: #fff;
    text-shadow: 0 2px 8px #43e6b633;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
}

.label-ecommerce {
    background: linear-gradient(135deg, #a7fb6c 0%, #43b26c 100%);
    border: 3px solid #fff;
    box-shadow: 0 2px 16px 0 #a7fb6c22, 0 1.5px 8px 0 #43b26c22;
    color: #fff;
    text-shadow: 0 2px 8px #43b26c33;
    right: -50px;
    top: 340px;
}

.label-ecommerce span {
    margin-left: 50px;
}

.label-ewallet span {
    margin-bottom: 30px;
}

.label-logistic span {
    margin-right: 50px;
}

.venn-label:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 32px 4px #a7fb6c33, 0 4px 16px 0 #43b26c22;
    filter: brightness(1.07);
    z-index: 20;
}

.venn-label {
    z-index: 1 !important;
}

.venn-item {
    z-index: 3 !important;
    position: absolute;
    /* hoặc relative nếu cần */
}

#madeby-title {
    margin-bottom: 8px !important;
}

#madeby-desc {
    margin-top: 0 !important;
}

@media (max-width: 576px) {
    .vision-particles {
        display: none !important;
    }

    .vision-strategy-step,
    .vision-step-title,
    .vision-step-num {
        animation: none !important;
        transition: none !important;
        box-shadow: none !important;
    }

    .vision-strategy-step:hover {
        transform: none !important;
    }

    /* Ensure 3 steps are still visible and stacked vertically */
    .vision-strategy-steps {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
    }

    .vision-strategy-step {
        width: 98vw !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 576px) {

    #vision-anim-effect,
    .vision-strategy-curve {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .sustainable-dev .section-header {
        margin-bottom: -20px !important;
    }

    .sustainable-dev .section-header h2 {
        font-size: 1.7rem;
        display: inline-block;
        white-space: nowrap;
        line-height: 1.1;
    }

    .sustainable-dev .section-header h2 span {
        display: flex;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {

    .venn-style,
    .venn-label {
        display: none !important;
    }

    .madeby-mobile-list {
        display: block !important;
        width: 100%;
        margin: 0 auto 24px auto;
    }
}

@media (min-width: 577px) {
    .madeby-mobile-list {
        display: none !important;
    }
}

.madeby-mobile-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(67, 178, 108, 0.08);
    padding: 32px 18px 24px 18px;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    position: relative;
}

.madeby-mobile-icon {
    margin-bottom: 12px;
}

.madeby-mobile-icon ion-icon {
    font-size: 48px;
    color: #43b26c;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.madeby-mobile-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #086924;
    margin-bottom: 10px;
}

.madeby-mobile-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 18px;
}

.madeby-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.madeby-mobile-nav button {
    background: #f5fcf6;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    color: #43b26c;
    box-shadow: 0 2px 8px rgba(67, 178, 108, 0.08);
    transition: background 0.2s, color 0.2s;
}

.madeby-mobile-nav button:active,
.madeby-mobile-nav button:focus {
    background: #a7fb6c;
    color: #fff;
}

@media (max-width: 576px) {
    .madeby-mobile-nav button {
        pointer-events: auto !important;
        z-index: 10 !important;
        position: relative;
    }

    .madeby-mobile-list,
    .madeby-mobile-card {
        z-index: 10 !important;
        position: relative;
    }
}

@media (max-width: 576px) {
    .madeby-mobile-card {
        margin-bottom: 24px;
    }

    .madeby-mobile-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .made-by-text .fade .show {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .eco-modern-circles {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 100%;
    }

    .eco-modern-wave {
        display: none !important;
        position: relative;
        padding: 20px 0;
        background: linear-gradient(180deg, rgba(246, 255, 249, 0.38) 0%, rgba(234, 252, 246, 0.22) 100%);
    }

    .eco-modern-wave::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(208, 241, 255, 0.18) 0%, rgba(224, 247, 250, 0.16) 100%);
        z-index: 0;
    }

    .eco-modern-wave::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(248, 251, 255, 0.13) 0%, rgba(199, 233, 241, 0.13) 100%);
        z-index: 0;
    }

    .eco-modern-circles {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .eco-circle {
        width: 100%;
        height: auto;
        min-height: 180px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 32px rgba(67, 178, 108, 0.1);
        backdrop-filter: blur(8px);
        transform: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .eco-circle::before,
    .eco-circle::after {
        display: none;
    }

    .eco-circle-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        height: 100%;
    }

    .eco-circle-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #43b26c 0%, #a7fb6c 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        margin-bottom: 8px;
    }

    .eco-circle h3 {
        font-size: 20px;
        color: #1a3c1a;
        margin: 0;
    }

    .eco-circle p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.5;
    }

    .eco-circle-halo {
        display: none;
    }

    .eco-modern-flex {
        padding: 0 20px;
    }

    .eco-modern-title {
        font-size: 32px;
    }

    .eco-modern-desc.highlight-ecosystem {
        padding: 20px;
    }

    .eco-ecosystem-icon {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .wave-svg {
        display: none !important;
    }
}

/* Ẩn vòng tròn desktop, hiện card mobile khi mobile */
@media (max-width: 576px) {
    .eco-modern-circles {
        display: none !important;
    }

    .eco-mobile-list {
        display: block;
        padding: 0 8px;
    }

    .eco-mobile-card {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 4px 24px 0 rgba(67, 178, 108, 0.10);
        margin-bottom: 24px;
        padding: 24px 18px 18px 18px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }

    .eco-mobile-card:last-child {
        margin-bottom: 0;
    }

    .eco-mobile-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #a7fb6c 0%, #43b26c 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px auto;
        font-size: 2rem;
        color: #fff;
        box-shadow: 0 2px 8px 0 rgba(67, 178, 108, 0.10);
    }

    .eco-mobile-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #086924;
        margin-bottom: 8px;
    }

    .eco-mobile-card p {
        font-size: 1rem;
        color: #7b8ca0;
        margin-bottom: 0;
    }
}

@media (min-width: 577px) {
    .eco-mobile-list {
        display: none !important;
    }
}

.partner-item svg {
    fill: #43b26c !important;
    /* Màu bạn muốn */
    filter: drop-shadow(0 2px 8px #a7fb6c44);
}

.partner-item:hover svg {
    fill: #a7fb6c !important;
}

.venn-item,
.venn-item::before,
.venn-item::after,
.made-by-visual,
.made-by-visual::before,
.made-by-visual::after {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.venn-item:focus,
.venn-item:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

html.dark-theme #sustainable-dev .sustainable-title-accent {
    color: rgba(8, 105, 36, 0.3) !important;
}

html.dark-theme .social-media-banner .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #43b26c !important;
    background: rgba(67, 178, 108, 0.08);
    margin: 0 6px;
    transition: background 0.2s, border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    text-decoration: none;
    position: relative;
}

html.dark-theme .social-media-banner .social-icon i,
html.dark-theme .social-media-banner .social-icon span {
    color: #43b26c !important;
    font-size: 20px;
    border: none !important;
    background: none !important;
    font-weight: 600;
    line-height: 1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

html.dark-theme .social-media-banner .social-icon span {
    font-size: 16px;
    padding: 0;
}

html.dark-theme .social-media-banner .social-icon:hover {
    background: #43b26c;
    box-shadow: 0 2px 12px #43b26c33;
    border-color: #a7fb6c;
}

html.dark-theme .social-media-banner .social-icon:hover i,
html.dark-theme .social-media-banner .social-icon:hover span {
    color: #fff !important;
}

html.dark-theme .social-media-banner .social-icon.instagram i::before,
html.dark-theme .social-media-banner .social-icon.instagram svg {
    background: none !important;
    color: #43b26c !important;
    fill: #43b26c !important;
    filter: none !important;
}


html.dark-theme body .social-media-banner .social-icon[class~="zalo"] .zalo-text {
    color: #43b26c !important;
}


.news-section,
.container-fluid,
.news-swiper,
.swiper.news-swiper,
.swiper-wrapper {
    width: 100%;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    #madeby-title,
    #madeby-desc {
        display: none !important;
    }
}