* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --theme-color: #28a745;
    --text-light: #fff;
    --text-muted: #7a7a7a;
    --bg-dark: #17141b;
}

html,
body {
    overflow-x: hidden;
    /* background-color: #000;
    color: #fff; */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    /* height: 100%; */
}


.page-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main-content {
    flex: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0c0c0c;
    padding: 40px 132px;
    flex-wrap: wrap;
    border-top: 1px solid #222;
}


.left-container {
    flex: 1;
    min-width: 260px;
}

.left-container p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
    margin: 6px 0;
}

.right-container {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    min-width: 180px;
}

.right-container img {
    width: 80px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.right-container img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .right-container {
        justify-content: center;
        margin-top: 20px;
    }

    .right-container img {
        margin-left: 0;
    }
}







.Banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 180px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000;
    position: relative;
}

.Banner-content::after {
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(50, 170, 39, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.left-content {
    flex: 1;
    padding-right: 160px;
    position: relative;
    z-index: 1;
}

.left-content h1 {
    font-size: 88px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.left-content .h1-line1 {
    color: #fff;
}

.left-content .h1-line2 {
    color: #32aa27;
}

.left-content p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 30px;
}

.left-content button {
    background: linear-gradient(90deg, #32aa27, #2b8d23);
    color: white;
    font-weight: bold;
    padding: 16px 28px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(50, 170, 39, 0.4);
    transition: all 0.3s ease;
}

.left-content button:hover {
    background: linear-gradient(90deg, #2b8d23, #32aa27);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(50, 170, 39, 0.6);
}

.right-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .Banner-content {
        flex-direction: column-reverse;
        padding: 80px 20px;
        text-align: center;
    }

    .left-content {
        padding: 0;
        margin-top: 30px;
    }

    .left-content h1 {
        font-size: 48px;
    }

    .left-content p {
        font-size: 16px;
    }

    .left-content button {
        font-size: 16px;
        padding: 12px 24px;
    }

    .right-content {
        display: flex;
        justify-content: center;
    }

    .right-content dotlottie-player {
        width: 240px !important;
        height: 240px !important;
    }
}



/* .right-content {
    flex: 1;
    display: flex;
    justify-content: center;
} */

/* .right-content img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
} */


/* .wrapper {
    min-height: calc(100vh - 160px);
} */


.technical-section {
    background-color: #000;
    padding: 80px 20px;
}

.technical-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background-color: #111;
    color: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.tech-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tech-card:nth-child(4) {
    animation-delay: 0.4s;
}

.tech-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-card:hover {
    transform: translateY(-8px);
    background-color: #151515;
}

.tech-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.tech-icon {
    background: rgba(50, 170, 39, 0.1);
    border-radius: 50%;
    padding: 12px;
    font-size: 28px;
    color: #32aa27;
    margin-bottom: 12px;
    transition: transform 0.3s, color 0.3s;
}



.tech-card:hover .tech-icon {
    transform: scale(1.1);
    color: #42d632;
}

.tech-card h3 {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #32aa27;
    font-weight: 600;
}

.tech-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    flex-grow: 1;
    text-align: justify;
    max-width: 90%;
    margin: 0 auto;
}

.tech-card .btn {
    margin-top: 20px;
    background-color: #32aa27;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-card .btn:hover {
    background-color: #28891e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 170, 39, 0.3);
}




.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    transition: background-color 0.5s, transform 0.3s ease;
    z-index: 999;
    transform: translateY(0);
}

.navbar.scrolled-down {
    transform: translateY(-100%);
}

.navbar.scrolled-up {
    transform: translateY(0);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    margin-right: auto;
}

.logo img {
    max-height: 36px;
    display: block;
}

.nav-icon {
    display: none;
    margin-left: auto;
    cursor: pointer;
}

.nav-icon svg {
    transition: transform 0.3s ease, stroke 0.3s ease;
    cursor: pointer;
}

.nav-icon:hover svg {
    transform: scale(1.1);
    stroke: #32aa27;
}


.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #d8d8d8;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    line-height: 80px;
    transition: color 0.3s;
    padding: 0 4px;
}

.nav-links a:hover {
    color: #b4b4b4;
}

.nav-links a.active {
    color: #32aa27;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #32aa27;
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


@media screen and (max-width: 768px) {
    .nav-icon {
        display: block;
    }

    .logo img {
        max-height: 28px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #000;
        width: 50vw;
        max-height: calc(100vh - 80px);
        padding: 16px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-links.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        color: #d8d8d8;
        line-height: 1.4;
        padding: 6px 0;
        margin: 6px 0;
        text-align: left;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background-color: #32aa27;
        width: 100%;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        transform: scaleX(1);
    }
}

.nav-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    display: block;
}

.nav-icon img:hover {
    transform: scale(1.1);
}




.badge-hot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 14px;
    height: 22px;
    min-width: 52px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff6b00, #d84315);
    border-radius: 999px;
    margin-left: 8px;
    letter-spacing: 0.3px;
    box-shadow:
        0 0 6px rgba(255, 90, 0, 0.4),
        inset 0 0 3px rgba(255, 255, 255, 0.15);
    animation: glowPulse 2s infinite ease-in-out;
}

.badge-hot::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C10.12 4.25 10.75 6.75 10.75 6.75C9.67 6.25 8.5 5.7 8 6.5C6.57 8.88 10.07 13.5 12 16c1.93-2.5 5.43-7.12 4-9.5-.5-.8-1.67-.25-2.75.25 0 0 .63-2.5-1.25-4.75z'/></svg>") no-repeat center;
    background-size: contain;
    animation: flameJump 1.8s infinite ease-in-out;
    transform-origin: center;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow:
            0 0 6px rgba(255, 80, 0, 0.5),
            inset 0 0 2px rgba(255, 255, 255, 0.15);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 0 10px rgba(255, 110, 0, 0.8),
            inset 0 0 3px rgba(255, 255, 255, 0.25);
        transform: scale(1.06);
    }
}

@keyframes flameJump {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-58%) scale(1.15);
    }
}




/* body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    pointer-events: none;
} */






.Personnel-content {
    text-align: center;
    padding: 158px 20px;
    background-color: #000;
    color: #fff;
}

.Personnel-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: bold;
}

.team-introduction {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.profile-card {
    background-color: #111;
    border-radius: 12px;
    width: 260px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 0.6s ease forwards;
    animation-fill-mode: forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card:nth-child(1) {
    animation-delay: 0.1s;
}

.profile-card:nth-child(2) {
    animation-delay: 0.2s;
}

.profile-card:nth-child(3) {
    animation-delay: 0.3s;
}

.profile-card:nth-child(4) {
    animation-delay: 0.4s;
}

.profile-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.profile-card a:visited {
    color: inherit;
}

.profile-card a:hover .expertise {
    color: #eee;
}

.profile-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    /* border: 3px solid #42d632; */
    box-shadow: 0 0 8px rgba(66, 214, 50, 0.2);
}

.profile-card h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.profile-card .position {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.profile-card .expertise {
    font-size: 14px;
    color: #bbb;
    transition: color 0.3s ease;
}

@media (max-width: 600px) {
    .profile-card {
        width: 90%;
        margin: 0 auto;
    }

    .Personnel-content h3 {
        font-size: 28px;
    }
}



.result-container {
    background-color: #000;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
}

.result-container .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #fff;
}

.achievements-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.achievement-item {
    background-color: #111;
    border-radius: 12px;
    padding: 30px 20px;
    width: 240px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.achievement-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(443%) hue-rotate(83deg) brightness(97%) contrast(97%);
}

.achievement-item h4 {
    font-size: 28px;
    font-weight: bold;
    color: #32aa27;
    margin-bottom: 10px;
}

.achievement-item h5 {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}







.efficiency-section {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.efficiency-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #32aa27;
}

.efficiency-subtitle {
    font-size: 20px;
    color: #8a8a8a;
    margin-bottom: 24px;
}

.efficiency-description {
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 60px;
}

.efficiency-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.efficiency-stat {
    background-color: #111;
    border-radius: 10px;
    padding: 30px 20px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.efficiency-stat h3 {
    font-size: 32px;
    color: #32aa27;
    margin-bottom: 10px;
}

.efficiency-stat .label {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 6px;
}

.efficiency-stat .desc {
    font-size: 14px;
    color: #bbb;
}






.combined-container {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
    gap: 60px;
}


.contact-container {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.contact-container h2 {
    font-size: 48px;
    color: #32aa27;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0;
    margin-bottom: 16px;
}

.contact-form-container {
    flex: 0 0 480px;
    background-color: #111;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.contact-form-container h2 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #32aa27;
}

.contact-form-container p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 14px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: none;
    border-radius: 6px;
    background-color: #222;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form-container textarea {
    height: 100px;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #888;
}

.contact-form-container button {
    background-color: #32aa27;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-form-container button:hover {
    background-color: #279c1f;
}


.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 1;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    white-space: nowrap;
    line-height: 1;
}

.checkbox-group input[type="checkbox"] {
    transform: scale(1.1);
    accent-color: #32aa27;
    vertical-align: middle;
    margin: 0;
}

@media (max-width: 768px) {
    .combined-container {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 16px;
        gap: 30px;
        margin-top: 40px;
    }

    .contact-container {
        text-align: center;
    }

    .contact-container h2 {
        font-size: 36px;
    }

    .contact-form-container {
        width: 100%;
        max-width: 100%;
    }
}




#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(50, 170, 39, 0.9);
    backdrop-filter: blur(6px);
    border: none;
    outline: none;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    background-color: #28a325;
}

#backToTop svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* 
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

.news-container {
    flex: 1;
}