/* Reset conflicting styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Ensure proper stacking context */
body {
    position: relative;
    z-index: 1;
    height: auto !important;
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
    max-width: 100vw;
}

body {
    padding-top: 63px !important;
}

/* Force header to stay fixed */
#emc-global-header {
    position: fixed !important;
    width: 100%;
    max-width: 100vw;
}

/* Add scroll rulers */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    height: auto !important;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Rest of your ecosystem styles */
: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;
}

/* Show sidebar only after customer benefits section */
.customer-benefits~.green-sidebar,
.customer-benefits~* .green-sidebar {
    opacity: 1;
}

/* Container adjustments */
.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
    transform: none !important;
    -webkit-transform: none !important;
    width: 100%;
    overflow-x: hidden;
}

.ecosystem-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    transform: none !important;
    -webkit-transform: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
    width: 100%;
    max-width: 100vw;
}

.ecosystem-section-alt {
    background-color: var(--eco-bg-light);
    position: relative;
    transform: translateZ(0);
}

.ecosystem-section-green {
    background-color: var(--eco-bg-lighter);
    position: relative;
    transform: translateZ(0);
}

/* Headings dan Typography */
.section-title {
    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;
}

.section-title.center {
    text-align: center;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--eco-shadow-sm);
    transition: var(--eco-transition-default);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

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

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-title {
    background-color: var(--eco-primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: var(--eco-font-weight-semibold);
    font-size: var(--eco-font-size-base);
    transition: var(--eco-transition-default);
}

.service-card:hover .service-title {
    background-color: #064d19;
}

/* Optimization Section */
.optimization-section {
    text-align: center;
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.optimization-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 226, 155, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.optimization-title {
    color: var(--eco-primary-color);
    font-size: var(--eco-font-size-2xl);
    font-weight: var(--eco-font-weight-extrabold);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Geographical Advantage Section */
.geo-section {
    padding: 70px 0;
    position: relative;
    background-color: var(--eco-bg-light);
}

.geo-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.geo-content {
    flex: 1;
    min-width: 300px;
    max-width: 60%;
}

.geo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.geo-map-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.geo-map {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.geo-map:hover {
    transform: scale(1.05);
}

.geo-title {
    color: var(--eco-primary-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.geo-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    justify-content: space-between;
}

.geo-benefit {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.geo-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.geo-benefit-title {
    background: linear-gradient(135deg, #086924 0%, #098a2e 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.geo-benefit-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.geo-benefit:hover .geo-benefit-img {
    transform: scale(1.05);
}

.geo-benefit-text {
    padding: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background-color: #ffffff;
    position: relative;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 226, 155, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.testimonial-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #f9fcfa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-content {
    flex: 1;
    padding: 40px 30px 30px 30px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 100px;
    color: rgba(8, 105, 36, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 0.8;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Responsive Styling */
@media (max-width: 1200px) {
    .ecosystem-container {
        padding: 0 20px;
    }

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

    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .geo-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .service-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .geo-benefits {
        grid-template-columns: 1fr;
    }

    .eco-features-grid {
        width: 100%;
        max-width: 500px;
    }

    .eco-feature-card.leaf {
        width: 220px;
        height: 220px;
    }

    .eco-feature-card.leaf:hover {}

    .tooltip-bubble {
        width: 300px;
    }

    .testimonial-item {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .intro-section {
        padding: 40px 0;
    }

    .ecosystem-container {
        padding: 0 15px;
    }

    .service-card,
    .geo-benefit {
        min-width: 100%;
    }

    .eco-feature-card.leaf {
        width: 180px;
        height: 180px;
    }

    .tooltip-bubble {
        width: 250px;
        padding: 20px;
    }

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        padding: 12px 24px;
        font-size: 16px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .geo-map-container {
        max-width: 100%;
    }

    .geo-map {
        max-width: 100%;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .ecosystem-3cards {
        grid-template-columns: 1fr !important;
    }

    .your-cards-container-class {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    @media (max-width: 768px) {
        .your-cards-container-class {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 24px !important;
        }
    }
}

@media (max-width: 576px) {
    .section-title.center {
        text-align: center;
    }

    .service-title,
    .geo-benefit-title {
        text-align: center;
    }

    .testimonial-content p {
        text-align: left;
    }

    .ecosystem-section-alt {
        text-align: center;
    }

    .ecosystem-section-alt .row {
        justify-content: center;
    }

    .ecosystem-section-alt .col-md-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .ecosystem-container {
        padding: 0 10px;
    }

    .service-card,
    .geo-benefit {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .eco-feature-card.leaf {
        width: 150px;
        height: 150px;
    }

    .tooltip-bubble {
        width: 200px;
        padding: 15px;
        font-size: 14px;
    }

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .geo-map-container {
        height: 200px;
    }

    .eco-feature-title {
        font-size: 16px;
    }

    .eco-feature-icon {
        font-size: 24px !important;
    }

    .eco-feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    /* Mobile-specific styles */
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}


/* Fix for image sizes on mobile */
@media (max-width: 576px) {

    .service-img,
    .geo-benefit-img {
        height: 160px;
    }

    .testimonial-image img {
        height: 180px;
    }
}

/* Add line xanh gradient bên trái cho section "Lợi ích cho Khách Hàng" */
.ecosystem-section-alt {
    position: relative;
}

.ecosystem-section-alt::before {
    display: none;
}

.ecosystem-container {
    position: relative;
    z-index: 2;
    /* Đảm bảo nội dung nằm trên line xanh */
}

/* Fix for text alignment on mobile */
@media (max-width: 576px) {
    .section-title.center {
        text-align: center;
    }

    .service-title,
    .geo-benefit-title {
        text-align: center;
    }

    .testimonial-content p {
        text-align: left;
    }

    .ecosystem-section-alt {
        text-align: center;
    }

    .ecosystem-section-alt .row {
        justify-content: center;
    }

    .ecosystem-section-alt .col-md-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Fix for spacing on mobile */
@media (max-width: 576px) {
    .ecosystem-section {
        padding: 30px 0;
    }

    .mt-4 {
        margin-top: 15px;
    }

    .service-card,
    .geo-benefit {
        margin-bottom: 15px;
    }
}

/* Fix for button styles on mobile */
@media (max-width: 576px) {

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Fix for testimonials on mobile */
@media (max-width: 576px) {
    .testimonial-item {
        margin-bottom: 20px;
    }

    .testimonial-image {
        height: 160px;
    }

    .testimonial-content {
        padding: 15px;
    }
}

/* Fix for optimization section on mobile */
@media (max-width: 576px) {
    .optimization-section {
        padding: 30px 0;
    }

    .optimization-title {
        font-size: 24px;
    }
}

/* Fix for geographical advantage section on mobile */
@media (max-width: 576px) {
    .geo-section {
        padding: 30px 0;
    }

    .geo-title {
        font-size: 24px;
    }

    .geo-content {
        padding: 0 15px;
    }
}

/* Fix for feature cards on mobile */
@media (max-width: 576px) {
    .eco-feature-card {
        padding: 15px;
    }

    .eco-feature-icon-wrapper {
        margin-bottom: 15px;
    }

    .eco-feature-title {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* Fix for stats section on mobile */
@media (max-width: 576px) {
    .stats-section {
        padding: 20px;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Thêm keyframes cho animation bay */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes glow {
    0% {
        text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3);
    }

    50% {
        text-shadow: 2px 2px 8px rgba(167, 251, 108, 0.5);
    }

    100% {
        text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3);
    }
}

.number-float {
    animation: float 3s ease-in-out infinite, glow 3s ease-in-out infinite;
}

.btn-green-light {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #a7fb6c 0%, #86e29b 100%);
    color: #086924;
    font-weight: 700;
    font-size: 18px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(134, 226, 155, 0.10);
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}

html.dark-theme body .btn-green-light {
    background: none !important;
    color: white !important;
    border: #043a14 2px solid;
}

.btn-green-light:hover,
.btn-green-light:focus {
    background: linear-gradient(90deg, #43b26c 0%, #a7fb6c 100%);
    color: #064d19;
    box-shadow: 0 8px 32px rgba(67, 178, 108, 0.22);
    transform: scale(1.08);
}

.btn-green-card {
    display: inline-block;
    padding: 14px 36px;
    background: #a7fb6c;
    color: #086924;
    font-weight: 700;
    font-size: 18px;
    border-radius: 32px;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(134, 226, 155, 0.10);
    backdrop-filter: blur(4px);
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
    cursor: pointer;
    outline: none;
}

.btn-green-card:hover,
.btn-green-card:focus {
    background: #a7fb6c;
    color: #086924;
    box-shadow: 0 8px 32px 0 rgba(167, 251, 108, 0.28);
    transform: scale(1.08);
}

.btn-blue-card {
    display: inline-block;
    padding: 14px 36px;
    background: #b0e0fb;
    color: #13406c;
    font-weight: 700;
    font-size: 18px;
    border-radius: 32px;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(176, 224, 251, 0.10);
    backdrop-filter: blur(4px);
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
    cursor: pointer;
    outline: none;
}

.btn-blue-card:hover,
.btn-blue-card:focus {
    background: #b0e0fb;
    color: #13406c;
    box-shadow: 0 8px 32px 0 rgba(176, 224, 251, 0.28);
    transform: scale(1.08);
}

.btn-orange-card {
    display: inline-block;
    padding: 14px 36px;
    background: #f7d6b0;
    color: #a05e0c;
    font-weight: 700;
    font-size: 18px;
    border-radius: 32px;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(247, 214, 176, 0.10);
    backdrop-filter: blur(4px);
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
    cursor: pointer;
    outline: none;
}

.btn-orange-card:hover,
.btn-orange-card:focus {
    background: #f7d6b0;
    color: #a05e0c;
    box-shadow: 0 8px 32px 0 rgba(247, 214, 176, 0.28);
    transform: scale(1.08);
}

/* Tăng kích thước tiêu đề */
.section-title,
.geo-title,
.optimization-title {
    font-size: 44px;
    font-weight: 900;
}

@media (max-width: 992px) {

    .section-title,
    .geo-title,
    .optimization-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .section-title,
    .geo-title,
    .optimization-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .section-title,
    .geo-title,
    .optimization-title {
        font-size: 20px;
    }
}

/* Feature Section Styles */
.ecosystem-feature-section .ecosystem-container {
    max-width: 1600px;
    width: 100%;
}

.eco-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    overflow: visible !important;
}

.eco-feature-card.leaf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    background: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(8, 105, 36, 0.06);
    position: relative;
    cursor: pointer;
    overflow: visible !important;
    padding: 0;
}

.leaf-topleft {
    border-radius: 60% 60% 10% 60%;
    background: #fff;
}

.leaf-topright {
    border-radius: 60% 60% 60% 10%;
    background: linear-gradient(135deg, #eaffea 0%, #a7fb6c 100%) !important;
}

.leaf-bottomleft {
    border-radius: 60% 10% 60% 60%;
    background: linear-gradient(135deg, #eaffea 0%, #a7fb6c 100%) !important;
}

.leaf-bottomright {
    border-radius: 10% 60% 60% 60%;
    background: #fff;
}

.eco-feature-card:hover {
    z-index: 2;
    box-shadow: 0 4px 24px rgba(8, 105, 36, 0.13);
    background: #eaffea;
}

.leaf-topright .eco-feature-icon {
    font-size: 40px;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 10px rgba(134, 226, 155, 0.18);
    transition: color 0.3s;
}

.leaf-bottomleft .eco-feature-icon {
    font-size: 40px;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 10px rgba(134, 226, 155, 0.18);
    transition: color 0.3s;
}

.eco-feature-icon {
    font-size: 40px;
    color: #086924;
    text-shadow: 0 2px 10px rgba(134, 226, 155, 0.18);
    transition: color 0.3s;
}



.eco-feature-title {
    font-size: 17px;
    font-weight: 900;
    color: #086924;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
    transition: color 0.3s ease;
    word-break: break-word;
    white-space: normal;
    padding: 10px 12px 0 12px;
    /* tăng padding trên và hai bên */
    line-height: 1.3;
    min-height: 48px;
    /* đảm bảo chiều cao tối thiểu */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.eco-feature-card:hover .eco-feature-title {
    color: #43b26c;
}

.eco-feature-card.leaf:hover {
    background: #f8fff8;
    box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08);
    z-index: 10;
}

.leaf-topleft:hover,
.leaf-topright:hover {
    transform: translateY(-4px);
}

.leaf-bottomleft:hover,
.leaf-bottomright:hover {
    transform: translateY(4px);
}

.eco-feature-card:hover .eco-feature-icon-wrapper {
    box-shadow: 0 4px 12px rgba(67, 178, 108, 0.15);
    transform: scale(1.05);
}

.eco-feature-card:hover .eco-feature-title {
    color: #086924;
}

.eco-feature-card:hover .tooltip-bubble {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) scale(1) !important;
    z-index: 9999 !important;
    animation: tooltipPulse 2s infinite;
}

@keyframes tooltipPulse {
    0% {
        box-shadow: 0 8px 32px rgba(8, 105, 36, 0.12);
    }

    50% {
        box-shadow: 0 8px 32px rgba(167, 251, 108, 0.25);
    }

    100% {
        box-shadow: 0 8px 32px rgba(8, 105, 36, 0.12);
    }
}

.eco-feature-card {
    padding: 28px 10px 22px 10px;
    min-height: 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative !important;
}

.tooltip-bubble {
    position: absolute;
    width: 400px;
    padding: 36px;
    background: linear-gradient(135deg, rgba(167, 251, 108, 0.18) 0%, rgba(67, 178, 108, 0.13) 100%);
    border-radius: 48px;
    box-shadow: 0 8px 32px 0 rgba(67, 178, 108, 0.13), 0 1.5px 8px 0 rgba(67, 178, 108, 0.08);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-size: 20px;
    line-height: 1.8;
    color: #1a3c1a;
    text-align: justify;
    font-weight: 500;
    transform: translateY(-50%) scale(0.95);
    backdrop-filter: blur(10px);
    /* border: 1.5px solid rgba(167, 251, 108, 0.22); */
}

.tooltip-bubble:before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: inherit;
    /* border: 1.5px solid rgba(167, 251, 108, 0.22); */
    transform: rotate(45deg);
    z-index: -1;
    border-radius: 12px;
}

.leaf-topleft .tooltip-bubble {
    right: calc(100% + 24px);
    left: auto;
    top: 50%;
}

.leaf-topleft .tooltip-bubble:before {
    right: -16px;
    left: auto;
    top: 50%;
    margin-top: -16px;
    border-right: none;
    border-top: none;
}

.leaf-topright .tooltip-bubble {
    left: calc(100% + 24px);
    right: auto;
    top: 50%;
}

.leaf-topright .tooltip-bubble:before {
    left: -16px;
    right: auto;
    top: 50%;
    margin-top: -16px;
    border-left: none;
    border-top: none;
}

.leaf-bottomleft .tooltip-bubble {
    right: calc(100% + 24px);
    left: auto;
    top: 50%;
}

.leaf-bottomleft .tooltip-bubble:before {
    right: -16px;
    left: auto;
    top: 50%;
    margin-top: -16px;
    border-right: none;
    border-top: none;
}

.leaf-bottomright .tooltip-bubble {
    left: calc(100% + 24px);
    right: auto;
    top: 50%;
}

.leaf-bottomright .tooltip-bubble:before {
    left: -16px;
    right: auto;
    top: 50%;
    margin-top: -16px;
    border-left: none;
    border-top: none;
}

.eco-feature-card:hover .tooltip-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

@media (max-width: 768px) {
    .tooltip-bubble {
        width: 90vw;
        max-width: 98vw;
        padding: 18px;
        font-size: 17px;
        line-height: 1.6;
        border-radius: 32px;
    }

    .eco-feature-card .tooltip-bubble:before {
        width: 24px;
        height: 24px;
        left: 50%;
        top: -12px;
        margin-left: -12px;
        border-radius: 8px;
    }
}

.eco-feature-card:hover .tooltip-bubble {
    transform: translateY(-50%) scale(1.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Thêm hiệu ứng glow cho tooltip */
.eco-feature-card:hover .tooltip-bubble::before {
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Thêm hiệu ứng border animation */
.eco-feature-card:hover .tooltip-bubble {
    border-image: linear-gradient(45deg, #a7fb6c, #43b26c) 1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        border-image-source: linear-gradient(0deg, #a7fb6c, #43b26c);
    }

    100% {
        border-image-source: linear-gradient(360deg, #a7fb6c, #43b26c);
    }
}

.leaf-topleft .tooltip-bubble {
    right: calc(100% + 24px);
    left: auto;
    top: 50%;
}

.leaf-topleft .tooltip-bubble:after {
    right: -15px;
    left: auto;
    top: 50%;
    margin-top: -15px;
    border-right: none;
    border-top: none;
}

.leaf-topright .tooltip-bubble {
    left: calc(100% + 24px);
    right: auto;
    top: 50%;
}

.leaf-topright .tooltip-bubble:after {
    left: -15px;
    right: auto;
    top: 50%;
    margin-top: -15px;
    border-left: none;
    border-top: none;
}

.leaf-bottomleft .tooltip-bubble {
    right: calc(100% + 24px);
    left: auto;
    top: 50%;
}

.leaf-bottomleft .tooltip-bubble:after {
    right: -15px;
    left: auto;
    top: 50%;
    margin-top: -15px;
    border-right: none;
    border-top: none;
}

.leaf-bottomright .tooltip-bubble {
    left: calc(100% + 24px);
    right: auto;
    top: 50%;
}

.leaf-bottomright .tooltip-bubble:after {
    left: -15px;
    right: auto;
    top: 50%;
    margin-top: -15px;
    border-left: none;
    border-top: none;
}

/* Show tooltip on hover */
.eco-feature-card:hover .tooltip-bubble {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) scale(1) !important;
    z-index: 9999 !important;
}

.eco-features-grid {
    overflow: visible !important;
}

.eco-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(67, 178, 108, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    outline: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.leaf-topright .eco-feature-icon-wrapper,
.leaf-bottomleft .eco-feature-icon-wrapper {
    background: #ffffff;
}

.eco-feature-card:hover .eco-feature-icon-wrapper {
    box-shadow: 0 4px 12px rgba(67, 178, 108, 0.15);
    transform: scale(1.05);
}

.eco-feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    border-radius: 50%;
    z-index: 1;
}

.eco-feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    border-radius: 50%;
    z-index: 1;
}

.eco-feature-icon {
    font-size: 32px !important;
    color: #086924 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.eco-feature-card:hover .eco-feature-icon-wrapper {
    box-shadow: 0 4px 12px rgba(67, 178, 108, 0.15);
    transform: scale(1.05);
}

.leaf-topright .eco-feature-icon-wrapper,
.leaf-bottomleft .eco-feature-icon-wrapper {
    background: #ffffff;
}

.leaf-topright .eco-feature-icon,
.leaf-bottomleft .eco-feature-icon {
    color: #086924 !important;
    text-shadow: 0 2px 4px rgba(8, 105, 36, 0.1);
}

.eco-feature-title {
    font-size: 24px;
    font-weight: 900;
    color: #086924;
    margin-bottom: 0;
    margin-top: -20px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(67, 178, 108, 0.10);
    transition: color 0.3s ease;
    word-break: break-word;
    white-space: normal;
    padding: 10px 12px 0 12px;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.eco-feature-card:hover .eco-feature-title {
    color: #43b26c;
}

.eco-feature-card.leaf:hover {
    background: #f8fff8;
    box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08);
    z-index: 10;
}

.eco-feature-card:hover .eco-feature-icon-wrapper {
    box-shadow: 0 4px 12px rgba(67, 178, 108, 0.15);
    transform: scale(1.05);
}

.eco-feature-card:hover .eco-feature-title {
    color: #086924;
}

/* Cloud icon styles */
.fa-cloud {
    font-size: 48px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(8, 105, 36, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-feature-card:hover .fa-cloud {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(8, 105, 36, 0.3));
}

.leaf-topright .eco-feature-title,
.leaf-bottomleft .eco-feature-title {
    color: #064d19;
}

.leaf-topright:hover .eco-feature-title,
.leaf-bottomleft:hover .eco-feature-title {
    color: #043a14;
}

.leaf-topleft .eco-feature-icon-wrapper,
.leaf-bottomright .eco-feature-icon-wrapper {
    background: linear-gradient(135deg, #eaffea 0%, #a7fb6c 100%);
}

.eco-feature-card:hover .eco-feature-icon-wrapper {
    box-shadow: 0 4px 12px rgba(67, 178, 108, 0.15);
    transform: scale(1.05);
}

.leaf-topleft:hover,
.leaf-topright:hover {
    background: #f8fff8;
    box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08);
    transform: translateY(-4px);
    z-index: 10;
}

.leaf-bottomleft:hover,
.leaf-bottomright:hover {
    background: #f8fff8;
    box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08);
    transform: translateY(4px);
    z-index: 10;
}

.leaf-topright,
.leaf-bottomleft {
    background: linear-gradient(135deg, #a7fb6c 0%, #86e29b 100%) !important;
}

/* Comprehensive Responsive Styles */
@media (max-width: 1400px) {
    .ecosystem-container {
        max-width: 1140px;
        padding: 0 30px;
    }

    .section-title {
        font-size: 48px;
    }

    .service-cards {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .ecosystem-container {
        max-width: 960px;
        padding: 0 20px;
    }

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

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .geo-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .eco-features-grid {
        width: 90%;
        max-width: 600px;
    }

    .eco-feature-card.leaf {
        width: 250px;
        height: 250px;
    }
}

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

    .section-title {
        font-size: 36px;
    }

    .intro-section {
        padding: 60px 0;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .geo-benefits {
        grid-template-columns: 1fr;
    }

    .eco-features-grid {
        width: 100%;
        max-width: 500px;
    }

    .eco-feature-card.leaf {
        width: 220px;
        height: 220px;
    }

    .tooltip-bubble {
        width: 300px;
    }

    .testimonial-item {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        height: 200px;
    }

    .geo-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .geo-content,
    .geo-image {
        width: 100%;
    }
}

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

    .section-title {
        font-size: 32px;
    }

    .intro-section {
        padding: 40px 0;
    }

    .service-card,
    .geo-benefit {
        min-width: 100%;
    }

    .eco-feature-card.leaf {
        width: 180px;
        height: 180px;
    }

    .tooltip-bubble {
        width: 250px;
        padding: 20px;
    }

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        padding: 12px 24px;
        font-size: 16px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .geo-map-container {
        max-width: 100%;
    }

    .geo-map {
        max-width: 100%;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .ecosystem-3cards {
        grid-template-columns: 1fr !important;
    }

    .your-cards-container-class {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 576px) {
    .ecosystem-container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-section {
        padding: 30px 0;
    }

    .service-card,
    .geo-benefit {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .eco-feature-card.leaf {
        width: 150px;
        height: 150px;
    }

    .tooltip-bubble {
        width: 200px;
        padding: 15px;
        font-size: 14px;
    }

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .geo-map-container {
        height: 200px;
    }

    .eco-feature-title {
        font-size: 16px;
    }

    .eco-feature-icon {
        font-size: 24px !important;
    }

    .eco-feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    /* Mobile-specific styles */
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .ecosystem-3cards {
        grid-template-columns: 1fr !important;
    }
}

/* Fix for tooltip positioning on mobile */
@media (max-width: 768px) {
    .eco-feature-card .tooltip-bubble {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
        z-index: 1000;
    }

    .eco-feature-card .tooltip-bubble:before {
        display: none;
    }

    .leaf-topleft .tooltip-bubble,
    .leaf-topright .tooltip-bubble,
    .leaf-bottomleft .tooltip-bubble,
    .leaf-bottomright .tooltip-bubble {
        left: 50%;
        right: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Fix for grid layouts on mobile */
@media (max-width: 768px) {
    .service-cards {
        display: flex;
        flex-direction: column;
    }

    .geo-benefits {
        display: flex;
        flex-direction: column;
    }

    .eco-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}


/* Fix for text alignment on mobile */
@media (max-width: 576px) {
    .section-title.center {
        text-align: center;
    }

    .service-title,
    .geo-benefit-title {
        text-align: center;
    }

    .testimonial-content p {
        text-align: left;
    }

    .ecosystem-section-alt {
        text-align: center;
    }

    .ecosystem-section-alt .row {
        justify-content: center;
    }

    .ecosystem-section-alt .col-md-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Fix for spacing on mobile */
@media (max-width: 576px) {
    .ecosystem-section {
        padding: 30px 0;
    }

    .mt-4 {
        margin-top: 15px;
    }

    .service-card,
    .geo-benefit {
        margin-bottom: 15px;
    }
}

/* Fix for button styles on mobile */
@media (max-width: 576px) {

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Fix for testimonials on mobile */
@media (max-width: 576px) {
    .testimonial-item {
        margin-bottom: 20px;
    }

    .testimonial-image {
        height: 160px;
    }

    .testimonial-content {
        padding: 15px;
    }
}

/* Fix for optimization section on mobile */
@media (max-width: 576px) {
    .optimization-section {
        padding: 30px 0;
    }

    .optimization-title {
        font-size: 24px;
    }
}

/* Fix for geographical advantage section on mobile */
@media (max-width: 576px) {
    .geo-section {
        padding: 30px 0;
    }

    .geo-title {
        font-size: 24px;
    }

    .geo-content {
        padding: 0 15px;
    }
}

/* Fix for feature cards on mobile */
@media (max-width: 576px) {
    .eco-feature-card {
        padding: 15px;
    }

    .eco-feature-icon-wrapper {
        margin-bottom: 15px;
    }

    .eco-feature-title {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* Fix for stats section on mobile */
@media (max-width: 576px) {
    .stats-section {
        padding: 20px;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Fix for hover effects on mobile */
@media (max-width: 768px) {

    .service-card:hover,
    .geo-benefit:hover,
    .testimonial-item:hover,
    .geo-map:hover {
        transform: none;
        box-shadow: none;
    }

    .service-card:hover .service-img,
    .geo-benefit:hover .geo-benefit-img,
    .testimonial-item:hover .testimonial-image img {
        transform: none;
    }
}

/* Fix for touch targets on mobile */
@media (max-width: 768px) {

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .eco-feature-card {
        min-height: 44px;
    }
}

/* Fix for font sizes on different screens */
@media (max-width: 1400px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
}

/* Fix for container widths */
@media (min-width: 1400px) {
    .ecosystem-container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .ecosystem-container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ecosystem-container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ecosystem-container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .ecosystem-container {
        max-width: 540px;
    }
}

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

/* Fix for images and media */
img {
    max-width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fix for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Fix for dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }

    .service-card,
    .geo-benefit,
    .testimonial-item {
        background-color: #2d2d2d;
    }

    .tooltip-bubble {
        background-color: #2d2d2d;
        color: #ffffff;
    }
}

/* ... existing code ... */

/* Fix for vertical stacking and overflow prevention */
@media (max-width: 768px) {

    /* Container fixes */
    .ecosystem-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Grid to vertical stack */
    .service-cards,
    .geo-benefits,
    .eco-features-grid,
    .stats-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    /* Card fixes */
    .service-card,
    .geo-benefit,
    .testimonial-item,
    .eco-feature-card {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    /* Image container fixes */
    .service-img,
    .geo-benefit-img,
    .testimonial-image,
    .geo-map-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Text container fixes */
    .service-title,
    .geo-benefit-title,
    .testimonial-content,
    .eco-feature-title {
        width: 100%;
        padding: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Button container fixes */
    .btn-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Fix for feature grid */
    .eco-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .eco-feature-card.leaf {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    /* Fix for testimonials */
    .testimonial-item {
        flex-direction: column;
    }

    .testimonial-image {
        width: 100%;
        height: 200px;
    }

    .testimonial-content {
        width: 100%;
        padding: 20px;
    }

    /* Fix for geographical section */
    .geo-content-wrapper {
        flex-direction: column;
    }

    .geo-content,
    .geo-image {
        width: 100%;
        padding: 0;
    }

    /* Fix for optimization section */
    .optimization-section .grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Fix for stats section */
    .stats-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .ecosystem-container {
        padding: 0 10px;
    }

    .service-card,
    .geo-benefit,
    .testimonial-item,
    .eco-feature-card {
        margin: 0 0 15px 0;
    }

    .service-img,
    .geo-benefit-img,
    .testimonial-image {
        height: 180px;
    }

    .eco-feature-card.leaf {
        min-height: 180px;
    }

    .btn-green-light,
    .btn-green-card,
    .btn-blue-card,
    .btn-orange-card {
        width: 100%;
        margin: 5px 0;
    }
}

/* Fix for horizontal scrolling issues */
html,
body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
    position: relative;
}

/* Fix for content width */
.ecosystem-section {
    width: 100%;
    overflow-x: hidden;
}

/* Fix for images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Fix for buttons */
.btn-green-light,
.btn-green-card,
.btn-blue-card,
.btn-orange-card {
    white-space: normal;
    text-align: center;
    word-wrap: break-word;
}

/* Fix for tooltips on mobile */
@media (max-width: 768px) {
    .tooltip-bubble {
        position: fixed;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 300px !important;
    }

    .tooltip-bubble:before {
        display: none;
    }
}

/* Fix for feature cards on mobile */
@media (max-width: 768px) {
    .eco-feature-card {
        margin: 0 0 20px 0;
    }

    .eco-feature-icon-wrapper {
        margin: 0 auto 15px auto;
    }

    .eco-feature-title {
        text-align: center;
        padding: 0 10px;
    }
}

/* Fix for testimonials on mobile */
@media (max-width: 768px) {
    .testimonial-item {
        margin: 0 0 30px 0;
    }

    .testimonial-image {
        margin-bottom: 15px;
    }

    .testimonial-content {
        padding: 15px;
    }
}

/* Fix for geographical section on mobile */
@media (max-width: 768px) {
    .geo-section {
        padding: 30px 0;
    }

    .geo-content {
        margin-bottom: 30px;
    }

    .geo-map-container {
        margin: 0 auto;
    }
}

/* Fix for optimization section on mobile */
@media (max-width: 768px) {
    .optimization-section {
        padding: 30px 0;
    }

    .optimization-title {
        font-size: 24px;
        text-align: center;
    }

    .optimization-content {
        padding: 0 15px;
    }
}

/* Fix for stats section on mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 20px 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* ... existing code ... */

/* Fix for 3-column grid on mobile */
@media (max-width: 768px) {

    /* Grid container */
    .grid-3-columns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    /* Grid items */
    .grid-item {
        width: 100%;
        margin: 0 0 20px 0;
    }

    /* Card styles */
    .grid-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }

    /* Image container */
    .grid-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        margin-bottom: 15px;
    }

    /* Content container */
    .grid-content {
        width: 100%;
        padding: 0;
    }

    /* Title styles */
    .grid-title {
        font-size: 20px;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Description styles */
    .grid-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: center;
    }

    /* Button container */
    .grid-button {
        width: 100%;
        margin-top: 15px;
    }

    /* Icon container */
    .grid-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto;
    }

    /* Stats section */
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .grid-card {
        padding: 15px;
    }

    .grid-title {
        font-size: 18px;
    }

    .grid-description {
        font-size: 13px;
    }

    .grid-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Fix for grid spacing */
@media (max-width: 768px) {
    .grid-3-columns {
        margin: 0;
        padding: 0;
    }

    .grid-item:last-child {
        margin-bottom: 0;
    }
}

/* Fix for grid animations */
@media (max-width: 768px) {
    .grid-card {
        transform: none !important;
        transition: none !important;
    }

    .grid-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(8, 105, 36, 0.08) !important;
    }
}

/* Fix for grid images */
@media (max-width: 768px) {
    .grid-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
}

/* Fix for grid buttons */
@media (max-width: 768px) {

    .grid-button .btn-green-light,
    .grid-button .btn-green-card,
    .grid-button .btn-blue-card,
    .grid-button .btn-orange-card {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Service cards */
    .service-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Geo benefits */
    .geo-benefits {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .geo-benefit {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    /* Feature cards */
    .eco-features-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
    }

    .eco-feature-card.leaf {
        flex: 0 0 280px;
        scroll-snap-align: start;
        height: 280px;
    }

    /* Testimonials */
    .testimonial-item {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-image {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }

    /* Stats section */
    .stats-section {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .stat-item {
        flex: 0 0 200px;
        scroll-snap-align: start;
    }

    /* Hide scrollbar but keep functionality */
    .service-cards::-webkit-scrollbar,
    .geo-benefits::-webkit-scrollbar,
    .eco-features-grid::-webkit-scrollbar,
    .testimonial-item::-webkit-scrollbar,
    .stats-section::-webkit-scrollbar {
        display: none;
    }

    .service-cards,
    .geo-benefits,
    .eco-features-grid,
    .testimonial-item,
    .stats-section {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Add padding to container for better spacing */
    .ecosystem-container {
        padding: 0 15px;
    }

    /* Adjust card sizes for better mobile view */
    .service-card,
    .geo-benefit,
    .eco-feature-card.leaf {
        min-width: 280px;
        margin: 0;
    }

    /* Add visual indicator for scrollable content */
    .service-cards::after,
    .geo-benefits::after,
    .eco-features-grid::after,
    .testimonial-item::after,
    .stats-section::after {
        content: '';
        flex: 0 0 15px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {

    .service-card,
    .geo-benefit,
    .eco-feature-card.leaf {
        min-width: 260px;
    }

    .testimonial-image {
        flex: 0 0 180px;
    }

    .stat-item {
        flex: 0 0 180px;
    }
}

/* ... existing code ... */

@media (max-width: 768px) {
    .ecosystem-intro-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
}

@media screen and (max-width: 768px) {
    .ecosystem-section .section-title {
        font-size: 36px !important;
    }

    .ecosystem-section .text-center {
        font-size: 16px !important;
        padding: 0 20px;
    }

    .service-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px;
    }

    .service-cards>div {
        padding: 20px !important;
        gap: 15px !important;
    }

    .service-cards .number-float {
        font-size: 60px !important;
        min-width: 60px !important;
    }

    .service-cards .service-title {
        font-size: 18px !important;
    }

    .service-cards>div>div:last-child {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .section-title.center {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .ecosystem-section .text-center {
        margin-left: 24px !important;
        margin-right: 24px !important;
    }
}

.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr !important;
    }

    /* Grid 2 columns */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Grid 3 columns */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Adjust gap and margins for mobile */
    div[style*="display: grid"] {
        gap: 20px !important;
        margin-top: 30px !important;
    }

    /* Eco features grid */
    .eco-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
    }

    .eco-feature-card.leaf {
        width: 70% !important;
        height: auto !important;
        min-height: 200px !important;
        margin: 0 !important;
    }

    /* Increase font size for feature section */
    .eco-feature-title {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }

    .tooltip-bubble {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .eco-feature-icon {
        font-size: 32px !important;
    }

    /* Adjust section title */
    .section-title.center {
        font-size: 36px !important;
    }
}

.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .number-float {
        font-size: 60px !important;
        min-width: 60px !important;
    }
}

/* Tắt ruler cho các section con */
.ecosystem-section,
.ecosystem-section-alt,
.ecosystem-section-green,
.intro-section,
.optimization-section,
.geo-section,
.stats-section,
.testimonial-section,
.sustainable-dev,
.emc-ecosystem,
.made-by-emc {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Tắt ruler cho các card và item */
.service-card,
.eco-feature-card,
.geo-benefit,
.testimonial-item,
.ecosystem-item,
.pillar-item {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Tắt ruler khi hover */
/* .service-card:hover,
.eco-feature-card:hover,
.geo-benefit:hover,
.testimonial-item:hover,
.ecosystem-item:hover,
.pillar-item:hover {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
} */

/* Thêm smooth scroll cho toàn bộ trang */
html {
    scroll-behavior: smooth;
}

/* Tắt ruler cho các container */
/* .ecosystem-container,
.container,
.ecosystem-content,
.ecosystem-components,
.ecosystem-feature-section,
.eco-features-grid {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
} */

/* Tắt ruler cho các button */
/* .btn-green-light,
.btn-green-card,
.btn-blue-card,
.btn-orange-card,
.btn-secondary,
.btn-video {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
} */

/* Tắt ruler cho các icon wrapper */
/* .eco-feature-icon-wrapper,
.eco-center,
.eco-item {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
} */

/* Tắt ruler cho các tooltip */
/* .tooltip-bubble,
.tooltip-bubble:before,
.tooltip-bubble:after {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
} */

/* Tắt ruler cho phần Giới thiệu hệ sinh thái */
/* .ecosystem-intro,
.ecosystem-content,
.ecosystem-intro p,
.ecosystem-content p,
.ecosystem-intro h2,
.ecosystem-content h2,
.ecosystem-intro h3,
.ecosystem-content h3 {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
} */

/* Tắt ruler cho các phần tử con trong phần giới thiệu */
/* .ecosystem-intro *,
.ecosystem-content * {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
} */

/* Tắt ruler cho các phần tử khi hover */
/* .ecosystem-intro:hover,
.ecosystem-content:hover,
.ecosystem-intro *:hover,
.ecosystem-content *:hover {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
} */

/* Customer Benefits Section */
.customer-benefits {
    padding: 40px 0;
    background-color: #fff;
    position: relative;
    border-left: 4px solid var(--eco-primary-color);
    margin-left: 20px;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-icon {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-content h4 {
    color: #086924;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.benefits-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.section-title {
    color: #086924;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

/* Responsive styles for number indicators */
@media (max-width: 768px) {
    .number-float {
        font-size: 60px !important;
        min-width: 60px !important;
    }
}

@media (max-width: 480px) {
    .number-float {
        font-size: 48px !important;
        min-width: 48px !important;
    }
}

/* Responsive styles for tooltip-bubble */
@media (max-width: 768px) {
    .tooltip-bubble {
        background: #ffffff !important;
        box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08) !important;
        color: #333333 !important;
        border: 1px solid rgba(67, 178, 108, 0.1) !important;
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1000 !important;
        width: 90% !important;
        max-width: 320px !important;
        text-align: center !important;
    }

    .tooltip-bubble:after {
        display: none !important;
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .tooltip-bubble {
            background: #1a1a1a !important;
            color: #ffffff !important;
            border: 1px solid rgba(67, 178, 108, 0.2) !important;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
        }

            html.dark-theme body #tooltip-bubble-1,
            html.dark-theme body #tooltip-bubble-2,
            html.dark-theme body #tooltip-bubble-3,
            html.dark-theme body #tooltip-bubble-4 {
                background: #1a1a1a !important;
                color: #ffffff !important;
                border: 1px solid rgba(67, 178, 108, 0.2) !important;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
            }
    }
}

@media (max-width: 480px) {
    .tooltip-bubble {
        background: #ffffff !important;
        box-shadow: 0 4px 16px rgba(67, 178, 108, 0.08) !important;
        color: #333333 !important;
        border: 1px solid rgba(67, 178, 108, 0.1) !important;
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1000 !important;
        width: 90% !important;
        max-width: 280px !important;
        text-align: center !important;
        padding: 15px !important;
    }

    .tooltip-bubble:after {
        display: none !important;
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .tooltip-bubble {
            background: #1a1a1a !important;
            color: #ffffff !important;
            border: 1px solid rgba(67, 178, 108, 0.2) !important;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
        }
    }
}

/* Add overlay for mobile tooltip */
@media (max-width: 768px) {
    .tooltip-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .tooltip-overlay.active {
        display: block;
    }
}

/* Existing styles */

/* Number indicators base styles */
.number-float {
    font-size: 80px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #43b26c !important;
    text-shadow: 2px 2px 4px rgba(167, 251, 108, 0.3) !important;
    min-width: 80px !important;
    margin-right: 20px !important;
    display: inline-block !important;
}

/* Responsive styles for number indicators */
@media (max-width: 768px) {
    .number-float {
        font-size: 60px !important;
        min-width: 60px !important;
        margin-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .number-float {
        font-size: 48px !important;
        min-width: 48px !important;
        margin-right: 12px !important;
    }
}

/* iOS specific adjustments */
@supports (-webkit-touch-callout: none) {
    .number-float {
        margin-right: 24px !important;
    }

    @media (max-width: 768px) {
        .number-float {
            margin-right: 18px !important;
        }
    }

    @media (max-width: 480px) {
        .number-float {
            margin-right: 15px !important;
        }
    }
}

html,
body,
section {
    height: auto !important;
    min-height: 0 !important;
    /* overflow: visible !important; */
    width: 100%;
    max-width: 100%;
}

.ecosystem-section,
.ecosystem-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

#emc-global-header .emc-global-header-nav a,
#emc-global-header .emc-global-header-nav-link {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    text-transform: uppercase;
}

/* Icon styles for dark mode */
html.dark-theme body .emc-ecosystem .icon-wrapper {
    position: relative;
    display: inline-flex;
    padding: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(30, 30, 30, 0.6) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

html.dark-theme body .emc-ecosystem .icon-wrapper:hover {
    border-color: rgba(167, 251, 108, 0.5) !important;
    box-shadow: 0 0 15px rgba(167, 251, 108, 0.1);
}

html.dark-theme body .emc-ecosystem img[src*="icon"],
html.dark-theme body .emc-ecosystem svg,
html.dark-theme body .emc-ecosystem i {
    position: relative;
    z-index: 1;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

html.dark-theme body .emc-ecosystem .icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    z-index: 0;
    opacity: 0.5;
}

/* Specific icon overrides */
html.dark-theme body .emc-ecosystem i[class*="sun"],
html.dark-theme body .emc-ecosystem i[class*="leaf"] {
    color: rgba(167, 251, 108, 0.9) !important;
}

/* html.dark-theme body .emc-ecosystem .icon-wrapper:hover i,
html.dark-theme body .emc-ecosystem .icon-wrapper:hover img,
html.dark-theme body .ecosystem-section svg {
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    background: rgba(30, 30, 30, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
    padding: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
} */

html.dark-theme body .ecosystem-intro-cards>div {
    border: 2.5px solid #fff !important;
    border-radius: 24px !important;
    background: #181a1b !important;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.08);
    /* Giữ padding, margin như cũ */
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}


html.dark-theme body .ecosystem-intro-cards {
    border: none !important;
}

html.dark-theme body .eco-feature-card.leaf {
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}

html.dark-theme body .eco-feature-card.leaf:hover {
    border: 2.5px solid #a7fb6c !important;
    box-shadow: 0 6px 12px 0 rgba(167, 251, 108, 0.5), 0 4px 32px 0 rgba(67, 178, 108, 0.10) !important;
    transform: scale(1.04);
    z-index: 2;
}



html.dark-theme body .leaf-topright .eco-feature-icon-wrapper .eco-feature-icon,
html.dark-theme body .leaf-bottomleft .eco-feature-icon-wrapper .eco-feature-icon {
    background: #fbfffd !important;
}

/* html.dark-theme body .leaf-topright .eco-feature-title,
html.dark-theme body .leaf-bottomleft .eco-feature-title {
    color: #0e6527 !important;
} */



/* html.dark-theme body .eco-feature-card.leaf:hover .eco-feature-icon-wrapper {
    background: #333 !important;
} */

html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(8, 105, 36, 0.10) !important;
    z-index: 0;
    display: block;
}

html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix {
    position: relative !important;
    z-index: 0;
}

html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix>svg {
    position: relative;
    z-index: 1;
}

/* Nền trắng tròn cho div bao icon trong card dịch vụ/giải pháp ở dark mode */
html.dark-theme body .service-card>div:first-child,
html.dark-theme body .solution-grid>div>.icon-bg-fix,
html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix {
    background: transparent !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(8, 105, 36, 0.10);
    width: 100px;
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Đảm bảo icon bên trong nổi lên trên */
html.dark-theme body .service-card>div:first-child>svg,
html.dark-theme body .service-card>div:first-child>i,
html.dark-theme body .solution-grid>div>div:first-child>svg,
html.dark-theme body .solution-grid>div>div:first-child>i,
html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix>svg,
html.dark-theme body .ecosystem-intro-cards>div>.icon-bg-fix>i {
    position: relative;
    z-index: 2;
}

/* Dark mode: viền trắng tròn cho icon ở phần Giải Pháp Nổi Bật & */
html.dark-theme body .ecosystem-section#eco-solutions>.ecosystem-container>div>div>div.icon-bg-fix {
    background: transparent !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(8, 105, 36, 0.10);
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    margin-bottom: 25px;
}

/* Dark mode: viền trắng icon Tối ưu hoá*/
html.dark-theme body .optimize-icon {
    background: transparent !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(8, 105, 36, 0.10);
    width: 90px !important;
    height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 1;
    overflow: visible;
    margin: 0 auto 18px auto;
}

html.dark-theme body .optimize-icon>i,
html.dark-theme body .optimize-icon>svg {
    color: #fff !important;
    background: none !important;
    font-size: 32px !important;
    position: relative;
    z-index: 2;
}