 @import './fonts.css';

:root {
    --header-height: 90px;
    --bg: #f2f3f9;
    --blue-900: #0f2d6d;
    --blue-800: #174394;
    --blue-700: #2256b0;
    --blue-100: #eef5ff;
    --text-main: #1e2840;
    --text-soft: #5d677e;
    --line: #d9e4f1;
    --line-soft: #8e93a3;
    --white: #ffffff;
}

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

body {
    min-width: 320px;
    color: var(--text-main);
    background: var(--bg);
    overflow-x: hidden;
    font-family: 'Helvetica Neue', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
}

.site-header::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(var(--header-height) * 0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.95;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 10px #ffffff,
                0 10px 20px #ffffff,
                0 10px 30px #ffffff,
                0 10px 40px #ffffff,
                0 10px 50px #ffffff;
    transition: all 0.3s ease;
}
.site-header.site-header-scroll::after {
    height: calc(var(--header-height) * 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 #ffffff;
}

.site-header.site-header-dark::after {
    background-color: rgba(5, 16, 64, 0.95);
    box-shadow: 0 10px 10px rgba(5, 16, 64, 0.5),
                0 10px 20px rgba(5, 16, 64, 0.5),
                0 10px 30px rgba(5, 16, 64, 0.5),
                0 10px 40px rgba(5, 16, 64, 0.5),
                0 10px 50px rgba(5, 16, 64, 0.5);
}
.site-header.site-header-dark.site-header-scroll::after {
    background-color: rgba(5, 16, 64, 0.85);
    box-shadow: 0 0 0 #051040;
}

.nav-bar {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    padding-top: 20px;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo img {
    width: 82px;
    height: auto;
}

.site-nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    font-size: 16px;
    color: rgba(25, 50, 94, 0.95);
}

.site-nav a {
    position: relative;
    padding-bottom: 6px;
    display: block;
    font-weight: 500;
}

.site-nav a.active {
    color: var(--blue-800);
    font-weight: 700;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: currentColor;
    transition: left 0.3s ease, width 0.3s ease;
    z-index: 1;
    left: 0;
    width: 0;
}

.site-header.site-header-dark .site-nav {
    color: rgba(255, 255, 255, 0.95);
}
.site-header.site-header-dark .site-nav a.active {
    color: #8de0ff;
}
 .site-header.site-header-dark .nav-underline {
    background: currentColor;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: rgba(25, 50, 94, 0.95) !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header.site-header-dark .mobile-menu-btn span {
    background: rgba(255, 255, 255, 0.95);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    min-height: 100vh;
    max-height: 100vh;
    background: rgba(15, 45, 109, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2001;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-site-nav {
    display: block;
    padding: 80px 24px 40px;
}

.mobile-site-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-site-nav .nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
}

.mobile-site-nav .nav-item a.active {
    color: #8de0ff;
    font-weight: 700;
}

.mobile-site-nav .dropdown-menu {
    display: none;
    padding: 0;
    margin: 0;
    background: rgba(1, 11, 24, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-site-nav .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 14px 0 14px 20px;
    font-size: 16px;
}

.mobile-site-nav .dropdown.active > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.mobile-site-nav .dropdown a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.3s ease;
    margin-right: 20px;
}

/* Removed the old hover underline effect */

.hero-section {
    position: relative;
    min-height: 540px;
    aspect-ratio: 192 / 90;
}
.hero-section .home-hero-images {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.home-hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.home-hero-carousel-slide.active {
    opacity: 1;
}

.home-hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(7, 26, 71, 0.75) 0%,
        rgba(14, 53, 126, 0.4) 35%,
        rgba(14, 53, 126, 0.25) 60%,
        rgba(10, 38, 88, 0.6) 100%
    );
    pointer-events: none;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.indicator.active {
    width: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -1px;
    z-index: 2;
    background: 
    url("../img/hero-bg-hudu.png") no-repeat center bottom / 100% auto;
    opacity: 0.99;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 71, 0.88) 0%, rgba(14, 53, 126, 0.2) 30%, rgba(14, 53, 126, 0.1) 100%);
}

.home-hero-inner {
    position: relative;
    z-index: 10;
    padding-top: 126px;
    color: var(--white);
}

.home-hero-inner h2 {
    max-width: 680px;
    font-size: clamp(20px, 3.6vw, 36px);
    line-height: 1.6;
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

.section {
    position: relative;
    padding: 52px 0 56px;
}
 .section.about-section {
     padding: 0 0 56px;
     background: url("../img/index-about-img.png") no-repeat right top 30px / auto 220px;
 }

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--blue-800);
}

.section-heading span {
    flex: 0 0 24px;
    height: 2px;
    background: var(--line-soft);
    opacity: 0.6;
}

.section-heading h2 {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    font-family: 'Helvetica Neue', 'Roboto Mono', sans-serif;
}

.light-heading {
    color: var(--white);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 106px;
    height: 36px;
    line-height: 36px;
    padding: 0 22px;
    border-radius: 3px;
    background: var(--blue-800);
    color: var(--white);
    font-size: 16px;
    font-family: 'Roboto Mono', sans-serif;
    transition: background 0.2s ease;
}

.btn-primary::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transform: translateY(2px);
}

.btn-primary:hover {
    background: var(--blue-900);
}

.center-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin: 28px auto 0;
}

.about-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(380px, 1fr);
    align-items: stretch;
    min-height: 168px;
}

.about-copy {
    padding: 10px 0 24px 28px;
}

.about-copy p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
    font-weight: bold;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 26px;
    padding-top: 32px;
    border-top: 1px solid rgba(223, 232, 243, 0.9);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 26px;
}

.service-item+.service-item {
    border-left: 1px solid rgba(223, 232, 243, 0.9);
}

.service-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--blue-700), var(--blue-900));
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.service-icon img {
    width: auto;
    height: 50%;
}

.service-item h3 {
    color: var(--blue-900);
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.service-item p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.performance-section {
    background: url("../img/company-performance-bg.png") no-repeat center top / 100% 100%;
}

.site-footer {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 70px 0 120px;
    background: url("../img/index_bottom.png") no-repeat center bottom / 100% 100%;
}

.performance-section .container,
.subscribe-section .container,
.site-footer .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(210, 223, 239, 0.9);
    border-bottom: 1px solid rgba(210, 223, 239, 0.9);
}

.stat-item {
    padding: 24px 20px;
    text-align: center;
}

.stat-item+.stat-item {
    border-left: 1px solid rgba(210, 223, 239, 0.9);
}

 .stat-item span {
     font-size: 15px;
     color: var(--text-main);
     font-weight: bold;
 }

 .stat-item strong,
 .stat-item strong span {
    display: flex;
    justify-content: center;
     align-items: center;
    color: var(--blue-800);
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    margin-bottom: 8px;
}

.news-section {
    padding: 20px 0;
    background: url("../img/news-bg.png") no-repeat center top / 100% 100%;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(200px, 0.5fr);
    gap: 36px;
    align-items: flex-start;
}

.news-layout .news-list {
    border-top: 1px solid var(--line);
}

.news-layout .news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: bold;
    color: var(--blue-900);
}
.news-layout .news-item:hover {
    color: var(--blue-700);
}

 .news-layout .news-item span {
    line-height: 1.55;
}

 .news-layout .news-item time {
    flex: 0 0 auto;
    padding: 6px 16px;
    border-radius: 12px;
    background: #edf3fb;
    color: #7c8aa7;
    font-size: 12px;
}

.news-preview {
    border: 1px solid rgba(210, 224, 243, 0.9);
    padding: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
}

.news-preview img {
    width: 100%;
    aspect-ratio: 228 / 147;
    object-fit: cover;
}

.subscribe-section {
    background: url("../img/subscribe-bg.png") no-repeat center top / 100% 100%;
    color: var(--white);
    overflow: hidden;
    padding: 30px 0 90px;
}

.subscribe-box {
    min-height: 156px;
}

.subscribe-box .section-heading {
    transform-origin: left center;
    transform: scale(0.75);
}

.subscribe-section p {
    max-width: 660px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.subscribe-form {
    display: flex;
    align-items: center;
    max-width: 460px;
}

.subscribe-form input,
.subscribe-form button {
    height: 40px;
    border: 0;
}

.subscribe-form input {
    flex: 1;
    padding: 0 14px;
    color: var(--text-main);
}

.subscribe-form button {
    padding: 0 22px;
    background: #1b4ca3;
    color: var(--white);
    cursor: pointer;
}

.subscribe-ship {
    position: absolute;
    right: max(20px, calc((100vw - 1200px) / 2));
    bottom: 24px;
    width: min(360px, 34vw);
    opacity: 0.9;
}

.cases-section {
    padding: 20px 0 56px;
    background: url("../img/case-bg.png") no-repeat center top / 100% 100%;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-card {
    overflow: hidden;
    background: #dbe8f7;
    border-radius: 4px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.case-card img {
    width: 100%;
    aspect-ratio: 267 / 166;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.case-card:hover img {
    transform: scale(1.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 120px 1fr 220px;
    gap: 34px;
    align-items: start;
}

.footer-logo {
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px 30px;
    font-size: 16px;
}

 .footer-links a {
     padding-bottom: 8px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     transition: color 0.25s ease;
 }
 .footer-links a:hover {
     color: #14d0e0;
 }

.footer-side {
    justify-self: end;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 700;
}
.social-links a img {
    max-width: 50%;
    max-height: 50%;
}

.footer-side p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.75;
}


.inner-page {
    background: linear-gradient(180deg, #f6fafe 0%, #ffffff 24%, #eef5ff 100%);
}

.solid-header {
    position: sticky;
    top: 0;
}

.contact-redesign {
    margin-top: -90px;
}

.sub-hero {
    position: relative;
}
.sub-hero img{
    width: 100%;
    height: auto;
}

.about-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}

.contact-carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.contact-carousel-item.active {
    opacity: 1;
}

.contact-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 35, 82, 0.6) 0%,
        rgba(10, 35, 82, 0.35) 50%,
        rgba(10, 35, 82, 0.5) 100%
    );
    pointer-events: none;
}

.contact-carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.contact-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.contact-indicator.active {
    width: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.about-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-carousel-item.active {
    opacity: 1;
}

.about-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 28, 70, 0.7) 0%,
        rgba(10, 28, 70, 0.4) 40%,
        rgba(10, 28, 70, 0.6) 100%
    );
    pointer-events: none;
}

.about-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.about-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.about-indicator.active {
    width: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.case-hero {
    background-image: url("../img/case-hero.jpg");
    min-height: 760px;
}

.software-hero {
    background-image: url("../img/software-hero.jpg");
    min-height: 560px;
}

.image-title-hero .sub-hero-overlay {
    background: linear-gradient(180deg, rgba(15, 45, 109, 0.08), rgba(15, 45, 109, 0.1));
}

.image-title-hero .sub-hero-inner h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 45, 109, 0.18), rgba(15, 45, 109, 0.3));
}

.dark-hero {
    background: linear-gradient(180deg, rgba(9, 25, 62, 0.76), rgba(9, 25, 62, 0.34));
}

.soft-hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(19, 56, 122, 0.24));
}

.sub-hero-inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    align-items: center;
}

.sub-hero-inner h1 {
    max-width: 860px;
    font-size: clamp(46px, 5.4vw, 82px);
    line-height: 1.12;
    color: var(--white);
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.wide-copy h1 {
    max-width: 1150px;
}

.page-section {
    padding: 72px 0;
}

.page-band {
    padding: 72px 0;
}

.intro-band,
.projects-band {
    background: linear-gradient(135deg, #49b5f3 0%, #1f75cf 52%, #0f3d8b 100%);
    color: var(--white);
}

.framed-section {
    position: relative;
}

.framed-section::before,
.framed-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 12px solid rgba(39, 117, 204, 0.14);
    transform: rotate(45deg);
}

.framed-section::before {
    left: -60px;
    top: 80px;
}

.framed-section::after {
    right: -60px;
    bottom: 60px;
}

.narrow-copy {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.plain-heading {
    margin-bottom: 28px;
}

.plain-heading h2 {
    position: relative;
    height: 80px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    text-align: left;
    color: #07122a;
    font-weight: bold;
}
.plain-heading h2::before {
    content: "";
    display: block;
    width: 40px;
    height: 8px;
    background: #15ace0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.software-main .software-intro {
    color: #07122a;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.light-text h2,
.light-text {
    color: var(--white);
}

.narrow-copy p,
.copy-card p,
.contact-card p,
.case-story span,
.software-intro,
.software-card p {
    font-size: 17px;
    line-height: 1.8;
}

.intro-band p+p,
.narrow-copy p+p {
    margin-top: 22px;
}

.about-capabilities,
.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.copy-card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(20, 59, 124, 0.08);
}

.copy-card h3 {
    margin-bottom: 20px;
    color: var(--blue-900);
    font-size: 32px;
    line-height: 1.2;
}

.dot-list,
.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.dot-list li,
.check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    line-height: 1.8;
}

.dot-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #58bef3, #2365cc);
}

.check-list li::before {
    border-radius: 4px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project-card {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-main);
    box-shadow: 0 14px 30px rgba(7, 33, 89, 0.14);
}

.project-card img {
    width: 100%;
    aspect-ratio: 239 / 190;
    object-fit: cover;
}

.project-card div {
    padding: 18px;
}

.project-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 16px;
    line-height: 1.6;
}

.vision-banner {
    padding: 74px 0;
    background: radial-gradient(circle at center top, rgba(60, 127, 220, 0.12), rgba(60, 127, 220, 0) 36%), linear-gradient(180deg, #112d63 0%, #17396c 100%);
    color: var(--white);
    text-align: center;
}

.vision-banner h2 {
    font-size: clamp(40px, 4vw, 64px);
    margin-bottom: 18px;
}

.vision-banner p {
    font-size: 18px;
    line-height: 1.8;
}

.about-redesign {
    background: #ffffff;
    /* margin-top: -90px; */
}

.about-redesign .about-hero {
    min-height: 600px;
}

.about-redesign .sub-hero-overlay {
    background: linear-gradient(180deg, rgba(10, 28, 70, 0.08), rgba(10, 28, 70, 0.38));
}

.about-redesign .sub-hero-inner {
    align-items: center;
}

.about-redesign .sub-hero-inner h1 {
    margin-left: 120px;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
}

.about-panel {
    position: relative;
    padding: 50px 0 120px;
}

.about-intro-panel {
    z-index: 6;
    margin-top: -2.6%;
    background: url("../img/about-bg.png") no-repeat  center / 100% 100%;
    color: var(--white);
}

.about-copy-panel {
    width: min(980px, calc(100% - 20px));
}

.about-copy-panel h2,
.about-section-title,
.about-vision-panel h2 {
    text-align: center;
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.25;
    font-weight: 700;
    color: #050b15;
    font-family: 'Roboto Mono', sans-serif;
}

.about-copy-panel h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.about-copy-panel p {
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Roboto Mono', sans-serif;
}

.about-copy-panel p+p {
    margin-top: 22px;
}

.about-capability-panel,
.about-tech-panel {
    background: #ffffff;
    margin-top: -4%;
    z-index: 5;
}

.about-capability-panel {
    position: relative;
    overflow: hidden;
    padding-bottom: 26px;
}

.about-capability-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(180px, 26vw, 420px);
    height: clamp(360px, 52vw, 840px);
    background: url("../img/about-left-top.png") no-repeat 0 0 / 100% auto;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content above decorative elements */
.about-capability-panel>.container,
.about-tech-panel>.container,
.about-alliance-panel>.container,
.about-alliance-panel .about-alliance-copy {
    position: relative;
    z-index: 1;
}

.about-section-title {
    margin-bottom: 28px;
}

.about-section-title.light {
    color: var(--white);
}

.about-capability-layout {
    width: min(980px, calc(100% - 20px));
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 28px 46px;
    align-items: center;
}
.about-capability-layout2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}
.about-capability-layout2 .about-reach-copy p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.about-capability-layout2 .about-reach-copy p strong {
    font-weight: 700;
}

.about-service-copy h3,
.about-reach-copy h3,
.about-tech-columns h3 {
    color: #050b15;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-service-copy ul,
.about-tech-columns ul,
.about-alliance-copy ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.about-service-copy li,
.about-tech-columns li,
.about-alliance-copy li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.2;
    color: #111827;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 500;
}

.about-service-copy li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61b5d6;
}

.about-tech-columns li::before,
.about-alliance-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border: 2px solid #74adc6;
    border-radius: 3px;
}

.about-tech-columns li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #4f8ea8;
    border-bottom: 2px solid #4f8ea8;
    transform: rotate(-45deg);
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 18px;
    justify-items: center;
    /* max-width: 360px; */
    margin: 0 auto;
}

.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 120px;
    /* border: 1px dashed rgba(25, 77, 133, 0.35); */
    background: linear-gradient(135deg, rgba(96, 181, 214, 0.18), rgba(255, 255, 255, 0.8));
    color: rgba(19, 62, 112, 0.62);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.icon-placeholder {
    width: 118px;
    height: 92px;
    min-height: 92px;
    border: 0;
    background: rgba(92, 160, 190, 0.18);
    color: #4f93b0;
    clip-path: inset(0 round 14px);
}

.map-placeholder {
    min-height: 210px;
    background: linear-gradient(135deg, rgba(115, 177, 205, 0.24), rgba(228, 242, 248, 0.9));
}

.about-reach-copy p {
    font-size: 18px;
    line-height: 1.5;
    color: #111827;
}

.about-reach-copy p+p {
    margin-top: 6px;
}

.about-tech-panel {
    position: relative;
    padding-top: 18px;
    padding-bottom: 64px;
}

.about-tech-panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -60px;
    width: clamp(180px, 26vw, 420px);
    height: clamp(360px, 52vw, 840px);
    background: url("../img/about-right-top.png") no-repeat right bottom / 100% auto;
    pointer-events: none;
    z-index: 0;
}

.about-tech-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 62px;
    width: min(960px, 100%);
    margin: 0 auto;
}

.about-project-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(120deg, #18457e 0%, #72b8dc 100%);
    color: var(--white);
    padding: 50px 0 80px;
}
.about-project-panel .about-section-title{
    transform: scale(0.8);
}

.about-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(980px, 100%);
    margin: 0 auto;
}

.about-project-card {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #050b15;
    box-shadow: 0 14px 28px rgba(3, 23, 61, 0.22);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(3, 23, 61, 0.3);
}

.about-project-card .image-placeholder {
    min-height: 118px;
    border: 0;
    border-bottom: 1px solid #d8e4ef;
    background: linear-gradient(135deg, #dcebf4, #96c9df);
    position: relative;
    overflow: hidden;
}

.about-project-card .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-project-card:hover .image-placeholder img {
    transform: scale(1.15);
}

.about-project-card .image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 11, 21, 0.6) 0%, rgba(5, 11, 21, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.about-project-card:hover .image-placeholder::after {
    opacity: 1;
}

.about-project-card div:last-child {
    padding: 12px 14px 16px;
}

.about-project-card h3 {
    font-size: 18px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.about-project-card p {
    color: #333d4d;
    font-size: 14px;
    line-height: 1.35;
}

.about-alliance-panel {
    position: relative;
    margin-top: -30px;
    z-index: 2;
    overflow: hidden;
    padding: 60px 0 30px;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 500;
}
.about-alliance-panel .about-section-title {
    font-size: clamp(20px, 2.4vw, 48px);
    font-weight: 700;
}

.about-alliance-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: 220px;
    object-position: 0 0;
    pointer-events: none;
    z-index: 0;
}

.about-alliance-panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 14vw, 220px);
    height: clamp(100px, 14vw, 220px);
    background: url("../img/about-right-bot.png") 100% 100% / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

.about-alliance-copy {
    width: min(930px, calc(100% - 40px));
}

.about-alliance-copy p {
    font-size: 17px;
    line-height: 1.65;
    color: #111827;
}

.about-alliance-copy p+p {
    margin-top: 14px;
}

.about-alliance-copy ul {
    margin-top: 16px;
}

.about-vision-panel {
    padding: 48px 0 56px;
    background: url("../img/about-bottom.png") center bottom / cover no-repeat;
    color: var(--white);
    text-align: center;
}

.about-vision-panel h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 700;
}

.about-vision-panel p {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.25;
    font-weight: bold;
}

.certificate-redesign {
    margin-top: -90px;
}

.certificate-redesign .redesign-banner {
    position: relative;
    width: 100%;
}
.certificate-redesign .redesign-banner h1{
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translate(0, -50%);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    font-family: 'Roboto Mono', sans-serif;
    color: var(--white);
}
.certificate-redesign .redesign-banner img{
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 200;
    object-fit: cover;
}

.case-redesign {
    margin-top: -90px;
}

.case-redesign .case-banner{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.case-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 600 / 240;
}

.case-carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.case-carousel-item.active {
    opacity: 1;
}

.case-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 35, 82, 0.75) 0%,
        rgba(10, 35, 82, 0.4) 50%,
        rgba(10, 35, 82, 0.65) 100%
    );
    pointer-events: none;
}

.case-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.case-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.case-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.case-indicator.active {
    width: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.case-redesign .case-banner h1{
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translate(0, -50%);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    font-family: 'Roboto Mono', sans-serif;
    color: var(--white);
    z-index: 5;
}

.case-page {
    background: radial-gradient(circle at top, rgba(72, 120, 204, 0.22), rgba(72, 120, 204, 0) 30%), linear-gradient(180deg, #0a2352 0%, #08214a 100%);
    color: var(--white);
}

.case-content {
    padding: 80px 0 96px;
    background: linear-gradient(rgba(6, 30, 64,0.3), rgba(6, 30, 64, 0.3)), url("../img/case-main-bg.jpg") fixed center top / 100vw 100vh;
}

.case-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
}

.case-menu {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(21, 58, 121, 0.55) url("../img/case-left-bg.jpg") no-repeat  center / 100% 100%;
    box-shadow: inset 0 0 0 1px rgba(134, 187, 255, 0.16);
    backdrop-filter: blur(8px);
}

.case-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(87, 170, 255, 0);
    color: rgba(255, 255, 255, 0.82);
    transition: all 0.5s ease-in-out;
}

.case-menu a.active,
.case-menu a:hover {
    background: rgba(87, 170, 255, 0.18);
    color: var(--white);
}

.case-details-block {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
}
.case-details-block .block-title {
    background-image: linear-gradient(to right, #1f2d66, #1681c8);
    color: #ffffff;
    padding: 40px 60px;
    font-size: clamp(20px, 2.4vw, 44px);
    font-weight: bold;
}

.case-details-content {
    padding: 40px 60px;
}
.case-details-title {
    font-size: clamp(20px, 2vw, 36px);
    font-weight: bold;
    color: #000;
}
.case-details-date {
    font-size: clamp(20px, 1.4vw, 24px);
    font-weight: bold;
    color: #000;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #aaa;
}
.case-details-body {
    min-height: 400px;
    padding: 30px 0 120px;
    color: #000;
    font-size: clamp(14px, 1.2vw, 20px);
}
.case-details-body p {
    margin-bottom: 20px;
}


.news-redesign .news-banner {
    position: relative;
    color: #ffffff;
}
.news-redesign .news-banner h1{
    position: absolute;
    left: 10%;
    top: 35%;
    z-index: 9;
    transform: translate(0, -50%);
    font-size: clamp(42px, 5vw, 64px);
    font-family: 'Zodiak-Bold', sans-serif;
    font-weight: normal;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.news-redesign .news-banner p{
    position: absolute;
    left: 10%;
    top: 60%;
    z-index: 9;
    transform: translate(0, -50%);
    font-size: clamp(20px, 1.6vw, 32px);
}

.news-details-redesign .news-banner h1 {
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
}
.news-details-redesign .news-banner h1 span {
    color: #2e235e;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-carousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 600 / 240;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-carousel .carousel-item.active {
    position: relative;
    opacity: 1;
}

.banner-carousel .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-carousel .indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-carousel .indicator.active {
    width: 28px;
    border-radius: 8px;
    background: #ffffff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}
.news-container .news-section-title {
    text-align: center;
    font-size: 48px;
    color: #0F3460;
    margin: 0 auto;
    padding: 60px 0;
    font-weight: 700;
    font-family: 'Roboto Mono', sans-serif;
}
.news-container .top-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}
.news-container .top-news-image {
    border-radius: 12px;
    overflow: hidden;
}
.news-container .top-news-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}
.news-container .top-news-content h2 {
    font-size: 36px;
    color: #0F3460;
    line-height: 1.2;
    margin-bottom: 20px;
}
.news-container .top-news-content p {
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 25px;
}
.news-container .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0F3460;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.news-container .read-more-btn::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.news-container .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}
.news-container .news-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.news-container .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-container .card-link .card-image {
    transform-origin: center bottom;
    transition: all 0.3s ease-in-out;
}
.news-container .card-link:hover .card-image {
    transform: scale(1.05);
}
.news-container .card-content {
    padding: 20px;
}
.news-container .card-title {
    font-size: 18px;
    color: #0F3460;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}
.news-container .card-date {
    font-size: 14px;
    color: #666666;
}


.news-global-presence {
    background-image: linear-gradient(to bottom, #e6f4fd, #e6f4fd);
}
.news-global-presence .section-title {
    padding: 60px 0 0;
    margin: 0 auto;
}
.news-global-presence .section-desc {
    font-size: 24px;
    padding: 0 10%;
    text-align: center;
}
.news-global-presence img {
    width: 100%;
    height: auto;
}


 .news-details-container {
     max-width: 1200px;
     margin: 60px auto 120px;
     min-height: 300px;
 }
 .news-details-container .news-details-section-title {
     font-size: clamp(24px, 2.8vw, 60px);
 }
 .news-details-container .section-side {
     font-size: clamp(16px, 1.6vw, 24px);
     padding: 20px 0;
     margin-bottom: 20px;
     border-bottom: 1px solid #cccccc;
 }
 .news-details-content p {
     font-size: clamp(14px, 1.2vw, 20px);
     margin-bottom: 20px;
 }
 .news-details-content img {
     max-width: 100%;
     height: auto;
 }


.featured-case {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(29, 71, 139, 0.52);
    box-shadow: inset 0 0 0 1px rgba(140, 194, 255, 0.14);
}

.featured-case img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 560 / 355;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}
.featured-case:hover img {
    border-radius: 24px;
}

.featured-case h3,
.case-story h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Roboto Mono', sans-serif;
}
 .case-story h3 {
     font-size: 20px;
 }

.featured-case .case-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-case p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Roboto Mono', sans-serif;
}

.featured-case a {
    color: #8ec7ff;
    font-size: 20px;
    font-family: 'Roboto Mono', sans-serif;
    transition: all 0.3s ease-in-out;
}
.featured-case a:hover {
    color: #81dcc1;
}

.case-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-story {
    position: relative;
    overflow: hidden;
    padding: 12px 12px 20px;
    border-radius: 22px;
    background: rgba(8, 66, 105, 0.1);
    backdrop-filter: blur(1px);
    box-shadow: inset 0 0 0 1px rgba(140, 194, 255, 0.12);
    transform-origin: center bottom;
    transition: all 0.3s ease-in-out;
}
.case-story::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/case-left-bg.jpg") no-repeat center bottom -600px / 120% auto;
    z-index: -1;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}
.case-story:hover {
    transform: scale(1.02);
}
.case-story:hover::after {
    background: url("../img/case-left-bg.jpg") no-repeat center bottom -30px / 120% auto;
}

.case-story img {
    width: 100%;
    aspect-ratio: 309 / 264;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
}
.case-story:hover img {
    transform: scale(1.05);
}

.case-story p {
    color: #8ec7ff;
    margin-bottom: 8px;
}

.case-story span {
    color: rgba(255, 255, 255, 0.8);
}



 .business-redesign .business-banner {
     position: relative;
     color: #ffffff;
 }
 .business-redesign .business-banner h1{
     display: inline-block;
     width: 80%;
     text-align: center;
     position: absolute;
     left: 50%;
     top: 50%;
     z-index: 9;
     transform: translate(-50%, -50%);
     font-size: clamp(36px, 4vw, 60px);
     font-family: 'Zodiak-Bold', sans-serif;
     font-weight: normal;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
 }



 .business-carousel {
     position: relative;
     width: 100%;
     height: auto;
     overflow: hidden;
 }

 .business-content-bg {
     position: relative;
     z-index: 0;
     user-select: none;
 }
 .business-content-bg img{
     user-select: none;
     width: 100%;
     height: auto;
 }

 .main-business-content{
     position: relative;
 }
 .main-business-content .content-title {
     position: absolute;
     left: 50%;
     top: 10%;
     z-index: 9;
     transform: translate(-50%, -50%);
     font-size: 44px;
     font-family: 'Roboto Mono', sans-serif;
     font-weight: 700;
 }
 .main-business-content .content-title::after {
     content: '';
     display: block;
     width: 120px;
     height: 4px;
     border-radius: 4px;
     background: #96b2cd;
     position: absolute;
     left: 0;
     right: 0;
     bottom: -10px;
     margin: auto;
 }

 .main-business-content .business-list{
     width: 90%;
     max-width: 1200px;
     position: absolute;
     top: 18%;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
 }
 .main-business-content .business-item{
     width: 100%;
     height: 15vw;
     min-height: 200px;
     border-radius: 32px;
     box-shadow: 2px 2px 20px rgba(23, 61, 127, 0.5);
     margin-bottom: 30px;
 }
 .main-business-content .business-item-1{
     border-bottom-right-radius: 160px;
     background: #e9f3f5 url("../img/business-item-bg1.png") no-repeat left center / auto 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-end;
     padding-right: 80px;
 }
 .main-business-content .business-item-2{
     border-bottom-left-radius: 160px;
     background: #e9f3f5 url("../img/business-item-bg2.png") no-repeat right center / auto 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     padding-left: 80px;
 }
 .main-business-content .business-item-3{
     border-bottom-right-radius: 160px;
     background: #e9f3f5 url("../img/business-item-bg3.png") no-repeat left center / auto 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-end;
     padding-right: 80px;
 }

 .main-business-content .business-item-title {
     width: 55%;
     font-size: 28px;
     font-weight: bold;
     color: #203e70;
     font-family: 'Zodiak-Bold', sans-serif;
     line-height: 1.2;
     margin-bottom: 20px;
 }
 .main-business-content .business-item-content {
     width: 55%;
     font-size: 16px;
     font-family: 'Roboto Mono', sans-serif;
     line-height: 1.2;
 }

 .business-details-content {
     position: relative;
     padding: 80px 0 96px;
     background: url("../img/icons-mao-2.png") no-repeat right -80px top / 360px auto;
 }
 .business-details-content::after {
     width: 100%;
     height: 100%;
     content: '';
     display: block;
     position: absolute;
     left: 0;
     bottom: 0;
     z-index: -1;
     background: #e9effd url("../img/icons-mao-1.png") no-repeat left -80px bottom / 360px auto;
 }

 .equipment-showcase-carousel {
     width: 90%;
     max-width: 1200px;
     position: absolute;
     top: 28%;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
     overflow: hidden;
     padding: 0 60px;
 }
 .equipment-showcase-carousel .arrow-left,
 .equipment-showcase-carousel .arrow-right {
     position: absolute;
     top: 50%;
     z-index: 9;
     transform: translateY(-50%);
     cursor: pointer;
     opacity: 0.8;
     transition: all 0.3s ease-in-out;
 }
 .equipment-showcase-carousel .arrow-left:hover,
 .equipment-showcase-carousel .arrow-right:hover {
     opacity: 1;
 }
 .equipment-showcase-carousel .arrow-left {
     left: 0;
 }
 .equipment-showcase-carousel .arrow-right {
     right: 0;
 }

 .equipment-showcase-carousel-inner {
     display: flex;
     gap: 24px;
     transition: transform 0.5s ease-in-out;
 }
 .equipment-showcase-carousel-item {
     width: 260px !important;
     min-width: 260px;
     height: 600px;
     padding-top: 120px;
     flex-shrink: 0;
     transform: translateX(-15px);
 }
 .equipment-showcase-carousel-item a {
     height: 400px;
     display: block;
     position: relative;
     border-radius: 32px;
     background: #ffffff;
     box-shadow: 6px 6px 20px rgba(23, 61, 127, 0.6);
 }
 .equipment-showcase-carousel-item:nth-child(2n - 1) a {
     height: 350px;
 }
 .equipment-showcase-carousel-item .img{
     position: absolute;
     top: 0;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 200px;
     height: 200px;
     border-radius: 50%;
     overflow: hidden;
     border: 2px solid #ffffff;
     box-shadow: 2px 2px 10px rgba(23, 61, 127, 0.4);
     transition: all 0.3s ease-in-out;
 }
 .equipment-showcase-carousel-item a:hover .img {
     transform: translate(-50%, -50%) scale(1.05);
 }
 .equipment-showcase-carousel-item .img img{
     width: 100%;
     height: auto;
     aspect-ratio: 1 / 1;
     object-fit: cover;
 }
 .equipment-showcase-carousel-item .tit{
     font-size: 28px;
     text-align: center;
     font-weight: bold;
     margin-bottom: 20px;
     padding-top: 120px;
 }
 .equipment-showcase-carousel-item .desc{
     font-size: 20px;
     padding: 0 20px;
 }

 .equipment-showcase-content{
     position: relative;
     background-color: #fff;
 }

 .equipment-showcase-content .content-title {
     position: absolute;
     left: 50%;
     top: 18%;
     z-index: 9;
     transform: translate(-50%, -50%);
     font-size: 44px;
     font-family: 'Roboto Mono', sans-serif;
     font-weight: 700;
 }
 .equipment-showcase-content .content-title::after {
     content: '';
     display: block;
     width: 120px;
     height: 4px;
     border-radius: 4px;
     background: #96b2cd;
     position: absolute;
     left: 0;
     right: 0;
     bottom: -10px;
     margin: auto;
 }


.contact-top {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: stretch;
}

.contact-building img,
.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(23, 61, 127, 0.14);
}

.contact-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.mosaic-tile {
    min-height: 230px;
    border-radius: 0;
    overflow: hidden;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(23, 61, 127, 0.08);
}

.mosaic-tile h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Roboto Mono', sans-serif;
}

.mosaic-tile p {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Roboto Mono', sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.mosaic-tile.gradient {
    background: linear-gradient(180deg, #139dcc, #119ecc);
}

.mosaic-tile.gradient.alt {
    background: linear-gradient(180deg, #29aabf, #29abc1);
}
.mosaic-tile.gradient img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}


.mosaic-tile.photo {
    padding: 0;
}

.mosaic-tile.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-section {
    padding: 0;
}

.contact-info-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 5fr) minmax(320px, 2fr);
    align-items: stretch;
}
.contact-info-layout::before,
.contact-info-layout::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
}
.contact-info-layout::before {
    height: 180%;
    transform: translateX(-70%) translateY(-80%);
    background-image: linear-gradient(to right, #115a9a 50%, #2ba4b5);
}
.contact-info-layout::after {
    transform: translateX(70%);
    background-image: linear-gradient(to right, #115a9a, #2ba4b5 40%);
}

 .contact-info-layout .contact-card {
    padding: 34px 100px 34px 34px;
    background: linear-gradient(to right, #deeefe, #deeefd);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px 0 0 6px;
}
.contact-info-layout .map-card {
    border-radius: 0;
    display: flex;
    align-items: center;
}
.contact-info-layout .map-card .map-wrap {
    width: 120%;
    height: 70%;
    border-radius: 4px;
    overflow: hidden;
    margin-left: -20%;
}
.contact-info-layout .map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-layout .contact-card .contact-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
    align-items: flex-start;
    color: #0b2644;
}
.contact-info-layout .contact-card .contact-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    grid-column: 1;
    grid-row: 1 / span 2;
}
.contact-info-layout .contact-card .contact-item h3 {
    grid-column: 2;
    margin: 0 0 8px 0;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Roboto Mono', sans-serif;
}
.contact-info-layout .contact-card .contact-item p {
    grid-column: 2;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-family: 'Roboto Mono', sans-serif;
}

.certificate-content {
    position: relative;
    background: url("../img/certificate_bg.png") center / cover no-repeat;
    aspect-ratio: 1536 / 1791;
}
.certificate-content h2 {
    position: absolute;
    font-family: 'Roboto Mono', sans-serif;
}
.certificate-content .certificate-text {
    position: absolute;
    font-size: clamp(12px, 1.5vw, 22px);
    font-family: 'Roboto Mono', sans-serif;
}

.contact-item+.contact-item {
    margin-top: 28px;
}

.contact-item h3 {
    color: var(--blue-900);
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
}

.software-page {
    background: #fff;
}

.software-redesign {
    position: relative;
    color: #ffffff;
}
.software-redesign .software-banner {
    position: relative;
    color: #ffffff;
}
.software-redesign .software-banner h1{
     position: absolute;
     left: 10%;
     top: 40%;
     z-index: 9;
     transform: translate(0, -50%);
     font-size: clamp(24px, 4.5vw, 64px);
     font-family: 'Zodiak-Bold', sans-serif;
     font-weight: normal;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.software-redesign .software-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.software-section {
    position: relative;
}
.software-section::after {
    content: "";
    position: absolute;
    inset: 0;
    right: -60px;
    z-index: -1;
    margin: auto;
    background: url("../img/software-bg2.jpg") no-repeat center 0 / auto 55vw;
}

.software-layout {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 0;
}

.software-nav {
    /*position: sticky;*/
    top: 110px;
    align-self: start;
    display: grid;
    gap: 14px;
    padding: 24px 0;
    transform: translateX(-40px);
}

.sticky-trigger {
    height: 1px;
    margin-bottom: -1px;
    visibility: hidden;
}

.software-nav a {
    position: relative;
    display: block;
    height: 60px;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    padding: 18px 18px 10px 90px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.software-nav a::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: url("../img/software-nav-item-bg2.png") no-repeat 0 center / contain;
    opacity: 0;
    transform-origin: center bottom;
    transition: all 0.6s ease-in-out;
}

.software-nav a.active,
.software-nav a:hover {
    color: #1f597a;
}
.software-nav a.active::after,
.software-nav a:hover::after {
    opacity: 1;
}

.software-intro {
    margin-bottom: 26px;
}

.software-card {
    width: 100%;
    height: 240px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    margin-bottom: 36px;
    border-radius: 30px;
    background: url("../img/software-item-bg.png") no-repeat center / 100% 100%;
    box-shadow: 0 18px 40px rgba(18, 53, 107, 0.5);
}

.software-card .img {
    width: 200px;
    border-radius: 4px;
    aspect-ratio: 200 / 128;
    object-fit: cover;
    transform: translate(19px, -14px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.software-card img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.2s ease-in-out;
}
.software-card:hover img {
    transform: scale(1.05);
}

 .software-card .info {
     width: 70%;
 }
 .software-card .info p {
     color: var(--blue-900);
     line-height: 1.2;
     font-weight: bold;
     margin-bottom: 20px;
 }
 .software-card .info .btn-primary {
     width: 180px;
     height: 40px;
     border-radius: 20px;
     background-image: linear-gradient(to right, #135188, #1281c6);
     color: #fff;
     transition: all 0.2s ease-in-out;
 }
 .software-card .info .btn-primary:hover {
     transform: scale(1.05);
 }

.software-card h3 {
    font-size: 34px;
    line-height: 1.1;
    color: #111b31;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 700;
}

.software-card h4 {
    font-size: 22px;
    line-height: 1.3;
    margin: 4px 0 12px;
    color: var(--blue-900);
}

.software-main {
    transform: translateX(-30px);
}

.our-global-impact .ogi-title {
    font-size: 44px;
    font-family: 'Roboto Mono', sans-serif;
    color: #232321;
    text-align: center;
    font-weight: 700;
    padding: 60px 0;
}
.our-global-impact .ogi-body {
    height: 420px;
    background: url("../img/our-global-impact.png") no-repeat center / cover;
}






/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--blue-100);
    color: var(--blue-800);
}

.dropdown-menu a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dropdown-menu a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Modal Styles */
.download-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.download-modal-overlay.active {
    display: flex;
}

.download-modal-container {
    position: relative;
    width: min(90%, 800px);
    max-height: 80vh;
    border: 4px solid #0f2d6d;
    background-color: #ffffff;
    box-shadow: 2px 2px 10px rgba(0, 255, 217, 0.3);
    outline: 1px solid rgba(0, 255, 217, 1);
    border-radius: 12px;
    overflow: hidden;
}

.download-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background-color: #ffffff;
    border-bottom: 2px solid #0f2d6d;
    position: relative;
}

.download-modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #0f2d6d;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.download-modal-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 100%;
    background-color: #c73e3a;
    border: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.download-modal-close:hover {
    background-color: #a52a27;
}

.download-modal-body {
    padding: 30px;
    min-height: 500px;
    overflow-y: auto;
}

.software-detail {
    text-align: center;
}

.software-title {
    font-size: 36px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 12px;
    text-align: left;
}

.software-description {
    font-size: 18px;
    color: #333333;
    margin-bottom: 24px;
    text-align: left;
    font-family: 'Roboto Mono', sans-serif;
    font-weight: 500;
}

.software-carousel-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 24px;
}

.software-carousel-wrapper .software-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 600 / 400;
}

.software-carousel-wrapper .software-carousel .carousel-item {
    display: none;
    position: absolute;
    inset: 0;
}

.software-carousel-wrapper .software-carousel .carousel-item.active {
    display: block;
}

.software-carousel-wrapper .software-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.software-carousel-wrapper .carousel-prev,
.software-carousel-wrapper .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 2px solid #0f2d6d;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0f2d6d;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.software-carousel-wrapper .carousel-prev:hover,
.software-carousel-wrapper .carousel-next:hover {
    background-color: #0f2d6d;
    color: #ffffff;
}

.software-carousel-wrapper .carousel-prev {
    left: -22px;
}

.software-carousel-wrapper .carousel-next {
    right: -22px;
}

.software-carousel-wrapper .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.software-carousel-wrapper .carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.software-carousel-wrapper .carousel-indicators .indicator.active {
    background-color: #0f2d6d;
}

.software-carousel-wrapper .carousel-caption {
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.download-btn-primary,
.download-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1f75cf, #0f3d8b);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-btn-primary:hover,
.download-btn-secondary:hover {
    background: linear-gradient(135deg, #2385e0, #1a50a0);
    transform: translateY(-2px);
}

.download-btn-secondary {
    background: linear-gradient(135deg, #29aabf, #119ecc);
}

.download-btn-secondary:hover {
    background: linear-gradient(135deg, #3ab5c7, #1aaed6);
}

.download-btn-primary::before,
.download-btn-secondary::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.software-info {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #666666;
}

.software-info span {
    display: inline-block;
}

/* FAQs Styles */
.faqs-container {
    margin-top: 40px;
    padding: 30px 20px 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faqs-title {
    font-size: 32px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0f2d6d;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-q {
    font-size: 20px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Roboto Mono', sans-serif;
}

.faq-a {
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    font-weight: bold;
}

.faq-a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #0f2d6d;
    border-radius: 50%;
}

/* Order Page Styles */
.order-container {
    margin-top: 40px;
    padding: 30px 20px 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.order-section {
    margin-bottom: 30px;
}

.order-title {
    font-size: 36px;
    font-weight: bold;
    color: #054d87;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid #054d87;
    display: inline-block;
}

.order-description {
    font-size: 20px;
    color: #333333;
    line-height: 1.8;
    font-weight: bold;
}

.license-section {
    margin-top: 60px;
}

.license-title {
    font-size: 36px;
    font-weight: bold;
    color: #054d87;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #054d87;
    display: inline-block;
}

.license-item {
    margin-bottom: 36px;
}

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

.license-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 10px;
}

.license-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
}

/* References Page Styles */
.references-container {
    margin-top: 40px;
    padding: 30px 20px 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.references-title {
    font-size: 36px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0f2d6d;
    text-transform: uppercase;
    font-family: 'Roboto Mono', sans-serif;
}

.references-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-left: 8px;
}

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

.reference-icon {
    color: #3ab5c7;
    font-size: 24px;
    font-weight: bold;
    margin-right: 12px;
    line-height: 1.6;
}

.reference-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

/* Culture Page Styles */
.culture-banner {
    position: relative;
    color: #ffffff;
}

.culture-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.culture-carousel {
    position: relative;
    overflow: hidden;
}

.culture-carousel .carousel-item {
    display: none;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.culture-carousel .carousel-item.active {
    display: block;
}

.culture-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.culture-carousel .indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.culture-carousel .indicator.active {
    background-color: #ffffff;
}

.culture-container {
}

.culture-menu {
    padding: 80px 20px;
    background: url("../img/culture-menu-bg.gif") no-repeat center / 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 280px;
}

.menu-item a {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 50px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-item .img {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: -10px;
    z-index: 1;
    background-color: #0d4790;
    transition: all 0.3s ease;
}

.menu-item img {
    width: 60px;
    height: 60px;
}

.menu-item span {
    flex: 1;
    padding: 20px 20px 20px 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 .menu-item.active a,
 .menu-item:hover a {
     background-color: #0d4790;
 }
 .menu-item.active .img,
 .menu-item:hover .img {
     background-color: #000000;
 }




 .culture-redesign {
     margin-top: -90px;
 }
 .culture-redesign .culture-banner {
     position: relative;
     color: #ffffff;
 }
 .culture-redesign .culture-banner h1{
     position: absolute;
     left: 50%;
     top: 50%;
     z-index: 9;
     transform: translate(-50%, -50%);
     font-size: clamp(42px, 5vw, 64px);
     font-family: 'Zodiak-Bold', sans-serif;
     font-weight: normal;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
 }

 .culture-electronic-journals-container {
     position: relative;
     min-height: 800px;
     background: #ffffff url("../img/culture-bg.jpg") no-repeat center bottom / 100% auto;
     padding-bottom: 8%;
 }
 .culture-electronic-journals-container::before {
     position: relative;
     z-index: 0;
     content: '';
     display: block;
     width: 100%;
     height: 300px;
     background: linear-gradient(to bottom, #114284, #0e4993, #134a95);
     border-top: 1px solid #0f3969;
     border-bottom: 8px solid #527bab;
 }

 .new-electronic-journals {
     position: absolute;
     top: 20px;
     left: 50%;
     z-index: 1;
     transform: translateX(-50%);
     width: 255px;
     transition: all 0.3s ease;
 }
 .new-electronic-journals:hover {
     transform: translateX(-50%) translateY(-4px);
 }
 .new-electronic-journals img {
     width: 100%;
     height: auto;
     aspect-ratio: 333 / 455;
     object-fit: cover;
 }

 .culture-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .culture-menu {
     display: flex;
 }

 .fish-block {
     position: relative;
     width: 100%;
     aspect-ratio: 200 / 128;
 }
 .fish-block::before {
     content: '';
     display: block;
     position: absolute;
     inset: 0;
     z-index: 9;
     margin: auto;
     width: 100%;
     background: url("../img/fish.png") no-repeat center / contain;
     user-select: none;
     pointer-events: none;
 }
 .fish-block .fish-img {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 1;
     width: 11%;
 }
 .fish-block .fish-img a {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 10px;
     transition: all 0.3s ease;
 }
 .fish-block .fish-img a:hover {
     transform: translateY(-4px) scale(1.03);
 }
 .fish-block .fish-img img {
     width: 100%;
     height: auto;
     aspect-ratio: 333 / 455;
     object-fit: cover;
     box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
 }
 .fish-block .fish-img span {
     width: 130%;
     height: 36px;
     line-height: 36px;
     text-align: center;
     background: #224a86;
     color: #ffffff;
     border-radius: 18px;
     font-size: 14px;
 }
 .fish-block .fish-img:nth-child(1) {
     transform: translate(-384%, -105%);
 }
 .fish-block .fish-img:nth-child(2) {
     transform: translate(-209%, -105%);
 }
 .fish-block .fish-img:nth-child(3) {
     transform: translate(-35%, -105%);
 }
 .fish-block .fish-img:nth-child(4) {
     transform: translate(140%, -105%);
 }
 .fish-block .fish-img:nth-child(5) {
     transform: translate(-340%, 20%);
 }
 .fish-block .fish-img:nth-child(6) {
     transform: translate(-171%, 20%);
 }
 .fish-block .fish-img:nth-child(7) {
     transform: translate(-4%, 20%);
 }
 .fish-block .fish-img:nth-child(8) {
     transform: translate(166%, 20%);
 }



 .culture-details-content {
     position: relative;
     padding: 80px 0 96px;
     background: url("../img/icons-mao-2.png") no-repeat right -80px top / 360px auto;
 }
 .culture-details-content::after {
     width: 100%;
     height: 100%;
     content: '';
     display: block;
     position: absolute;
     left: 0;
     bottom: 0;
     z-index: -1;
     background: #e9effd url("../img/icons-mao-1.png") no-repeat left -80px bottom / 360px auto;
 }




 .culture-details-details-block {
     background: #ffffff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
 }
 .culture-details-details-block .block-title {
     background-image: linear-gradient(to right, #1f2d66, #1681c8);
     color: #ffffff;
     padding: 40px 60px;
     font-size: clamp(20px, 2.4vw, 44px);
     font-weight: bold;
 }

 .culture-details-content-inner {
    padding: 40px 60px;
}

/* Journal Details Page Styles */
.journal-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.journal-cover {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.journal-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-info {
    flex: 1;
}

.journal-title {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.journal-date {
    font-size: 20px;
    color: #666666;
    margin-bottom: 16px;
}

.author-section {
    margin-top: 20px;
}

.author-label {
    font-size: 20px;
    font-weight: bold;
    color: #0f2d6d;
    display: block;
    margin-bottom: 4px;
}

.author-name {
    font-size: 24px;
    color: #333333;
    margin: 0;
}

.journal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-download,
.btn-share {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #233771 0%, #237eb7 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-download:hover,
.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 77, 140, 0.4);
}

.journal-content {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 1;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0f2d6d;
    display: inline-block;
}

.abstract-text,
.introduction-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.keywords-section {
    margin-bottom: 30px;
}

.keywords-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    padding-left: 30px;
    border-left: 2px solid #e0e0e0;
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold;
    color: #0f2d6d;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0f2d6d;
}

.contents-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

.contents-list li {
    font-size: 16px;
    color: #333333;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.contents-list li:last-child {
    border-bottom: none;
}


 .culture-corporate-brochures-container {
     position: relative;
     min-height: 1050px;
     background: #ffffff url("../img/culture-bg.jpg") no-repeat center bottom / 100% auto;
     padding-bottom: 8%;
 }
 .culture-corporate-brochures-container::before {
     position: relative;
     z-index: 0;
     content: '';
     display: block;
     width: 100%;
     height: 500px;
     background: linear-gradient(to bottom, #114284, #0e4993, #134a95);
     border-top: 1px solid #0f3969;
     border-bottom: 8px solid #527bab;
 }
 .culture-corporate-brochures-container .title {
     font-size: clamp(24px, 3vw, 44px);
     color: #ffffff;
     position: absolute;
     left: 0;
     right: 0;
     top: 5%;
     margin: auto;
     font-family: 'Roboto Mono', sans-serif;
     text-align: center;
 }
 .culture-corporate-brochures-container .xcc-img {
     position: relative;
     z-index: 5;
     max-width: 1200px;
     width: 90%;
     margin: -380px auto 20px;
 }
 .culture-corporate-brochures-container .xcc-img  img {
     width: 100%;
     height: auto;
 }
 .culture-corporate-brochures-container .button {
     display: block;
     width: 500px;
     height: 60px;
     margin: 0 auto 60px;
     background: linear-gradient(to right, #1f2d66, #1681c8);
     border-radius: 30px;
     font-size: 24px;
     line-height: 60px;
     text-align: center;
     color: #ffffff;
     box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
     transition: all 0.3s ease;
 }
 .culture-corporate-brochures-container .button:hover {
     transform: translateY(-2px);
 }






 .culture-employee-gallery-container {
     position: relative;
     min-height: 1050px;
     background: #ffffff url("../img/fengcai-bg.jpg") no-repeat center bottom / 100% auto;
     padding-bottom: 8%;
 }
 .culture-employee-gallery-container::before {
     position: relative;
     z-index: 0;
     content: '';
     display: block;
     width: 100%;
     height: 650px;
     background: linear-gradient(to bottom, #114284, #0e4993, #134a95);
     border-top: 1px solid #0f3969;
     border-bottom: 8px solid #527bab;
 }
 .culture-employee-gallery-container .title {
     font-size: clamp(24px, 3vw, 44px);
     color: #ffffff;
     position: absolute;
     left: 0;
     right: 0;
     top: 5%;
     margin: auto;
     font-family: 'Roboto Mono', sans-serif;
     text-align: center;
 }
 .culture-employee-gallery-container .fc-img {
     position: relative;
     z-index: 5;
     width: 100%;
     margin: -460px auto 20px;
 }
 .culture-employee-gallery-container .fc-img  img {
     width: 100%;
     height: auto;
     aspect-ratio: 13 / 3;
     object-fit: cover;
 }
 .culture-employee-gallery-container .fc-desc {
     width: 90%;
     max-width: 1200px;
     margin: 120px auto;
     font-size: clamp(16px, 2vw, 32px);
     line-height: 1.5;
     color: #ffffff;
 }




@media (max-width: 1600px) {
    .main-business-content .business-item-title {
        width: 60%;
        font-size: 20px;
    }
    .main-business-content .business-item-content {
        width: 60%;
        font-size: 14px;
    }

    .business-content-bg {
        min-height: 800px;
    }
    

    .software-layout {
        grid-template-columns: 340px minmax(0, 1fr);
    }
    .software-section::after {
        background: url("../img/software-bg2.jpg") no-repeat center 0 / auto 65vw;
    }

    .culture-employee-gallery-container .fc-img  img {
        aspect-ratio: 13 / 4;
    }
    .culture-employee-gallery-container .fc-desc {
        margin: 150px auto 100px;
    }

    .contact-carousel {
        height: 40vw;
    }
}


@media (max-width: 1280px) {
    .hero-section {
        aspect-ratio: auto;
    }

    .culture-employee-gallery-container {
        min-height: auto;
        padding-bottom: 10%;
    }

    .culture-employee-gallery-container::before {
        height: 55vw;
    }

    .culture-employee-gallery-container .fc-img {
        margin: -40vw auto 20px;
    }

}

@media (max-width: 1200px) {

    .project-grid,
    .case-card-grid,
    .about-project-grid,
    .case-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-top {
        grid-template-columns: 1fr;
    }

    .software-nav,
    .case-menu {
        position: static;
    }
    .main-business-content .business-item-title {
        width: 55%;
        font-size: 20px;
    }
    .main-business-content .business-item-content {
        width: 55%;
        font-size: 14px;
    }


    .equipment-showcase-content {
        background: #fff url("../img/business-bg2.png") no-repeat center top / 100% auto;
        padding: 250px 0 50px;
        position: relative;
    }
    .business-content-bg {
        display: none;
    }
    .equipment-showcase-carousel {
        width: 100%;
        min-height: auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .certificate-redesign .container {
        width: 100% !important;
    }

    .certificate-content .certificate-text {
        width: 50% !important;
        height: 15vw !important;
        overflow-y: scroll;
    }

    .certificate-content h2 {
        transform-origin: left top;
        transform: scale(0.5);
    }

    .software-layout {
        grid-template-columns: 320px minmax(0, 1fr);
    }
    .software-section::after {
        background: url("../img/software-bg2.jpg") no-repeat center 0 / auto 75vw;
    }

    .software-card {
        grid-template-columns: 210px minmax(0, 1fr);
    }
    .software-card .img {
        width: 100%;
        max-width: 16vw;
        margin: 0 auto;
        transform: translate(0, -14px);
    }

}
@media (max-width: 1110px) {
    .software-card {
        grid-template-columns: 200px minmax(0, 1fr);
    }
    
    .home-hero-inner h1 {
        font-size: 42px;
    }

    .site-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-copy {
        background: rgba(255, 255, 255, 0.85);
        padding: 24px;
        border-radius: 8px;
    }

    .about-intro-panel {
        background: url("../img/about-bg.png") no-repeat center / 100% auto;
        background-size: cover;
    }

    .about-copy-panel {
        width: calc(100% - 40px);
        padding: 30px 20px;
    }

    .about-card,
    .news-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-strip,
    .stats-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(3),
    .stat-item:nth-child(3) {
        border-left: 0;
    }

    .subscribe-ship {
        position: static;
        width: min(360px, calc(100% - 40px));
        margin: 24px auto 0;
    }

    .footer-side {
        justify-self: start;
    }
}


@media (max-width: 1024px) {
    .main-business-content .content-title,
    .equipment-showcase-content .content-title {
        width: 100%;
        font-size: 32px;
        text-align: center;
    }

    .main-business-content {
        background: #fff url("../img/business-bg.jpg") no-repeat center top / 100% auto;
        padding: 200px 0 100px;
    }
    .main-business-content .business-content-bg {
        display: none;
    }
    .main-business-content .business-list {
        position: relative;
    }
    .main-business-content .business-item{
        width: 100%;
        height: auto;
        border-radius: 20px !important;
        box-shadow: 2px 2px 20px rgba(23, 61, 127, 0.5);
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.9);
    }
    .main-business-content .business-item-title {
        width: 90%;
        font-size: 20px;
    }
    .main-business-content .business-item-content {
        width: 90%;
        font-size: 14px;
    }

    
    .software-layout {
        grid-template-columns: 1fr;
    }
    .software-section::after {
        background: url("../img/software-bg2.jpg") no-repeat center 0 / auto 100vw;
    }
    .software-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        transform: translateY(0px);
    }
    .software-nav a {
        background: rgba(255, 255, 255, 0.5);
        padding: 8px 32px;
        border-radius: 12px;
        box-shadow: 2px 2px 20px rgba(23, 61, 127, 0.5);
        height: 56px;
        line-height: 40px;
        color: #064c87;
        transition: all 0.3s ease;
    }
    .software-nav a::after {
        display: none;
    }
    .software-nav a.active,
    .software-nav a:hover {
        background: #064c87;
        color: var(--white);
    }

    .software-main {
        transform: translateY(0px);
    }

    .plain-heading h2 {
        margin-left: 15%;
    }

    .software-intro {
        margin-left: 15%;
        margin-right: 5%;
    }

    .software-card {
        grid-template-columns: 25vw minmax(0, 1fr);
    }

    .culture-corporate-brochures-container {
        min-height: 50vw;
    }

    .contact-carousel {
        height: 50vw;
    }

}

@media (max-width: 992px) {
    .news-container .top-news {
        grid-template-columns: 1fr;
    }
    .news-container .top-news-content {
        text-align: center;
    }
    .news-container .top-news-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 900px) {

    .about-capabilities,
    .about-tech-grid,
    .about-capability-layout,
    .about-tech-columns,
    .contact-info-layout,
    .featured-case {
        grid-template-columns: 1fr;
    }

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

    .sub-hero,
    .case-hero {
        min-height: 420px;
    }

    .sub-hero-inner h1 {
        font-size: 40px;
    }

    .about-redesign .sub-hero-inner h1 {
        margin-left: 0;
    }

    .about-icon-grid {
        max-width: 440px;
    }
}

@media (max-width: 768px) {

    .container {
        width: 100% !important;
        padding: 24px;
    }

    main {
        padding-top: 120px;
    }

    .about-redesign,
    .contact-redesign,
    .case-redesign,
    .business-redesign,
    .software-redesign,
    .news-redesign,
    .culture-redesign,
    .certificate-redesign {
        padding-top: 80px;
    }

    .page-section,
    .page-band,
    .case-content {
        padding: 48px 0;
    }

    .case-layout,
    .project-grid,
    .about-project-grid,
    .case-card-grid,
    .contact-mosaic,
    .software-card {
        grid-template-columns: 1fr;
    }

    .software-main {
        transform: translate(0px);
        width: calc(100vw - 48px);
    }

    .mosaic-tile {
        min-height: 180px;
    }

    .plain-heading h2 {
        font-size: 34px;
    }

    .copy-card,
    .contact-card {
        padding: 24px;
    }

    .about-redesign .about-hero {
        min-height: 360px;
    }

    .about-panel {
        padding: 44px 0;
    }

    .about-copy-panel p,
    .about-service-copy li,
    .about-tech-columns li,
    .about-alliance-copy p,
    .about-alliance-copy li,
    .about-reach-copy p {
        font-size: 16px;
    }

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

    .icon-placeholder {
        width: 100%;
    }

    .software-nav a {
        padding: 8px 12px;
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 12px 0 16px;
        z-index: 1000;
    }

    .site-header::after {
        height: 100% !important;
        opacity: 1 !important;
        background-color: rgba(255, 255, 255, 1) !important;
    }

    .site-header.site-header-dark::after {
        background-color: rgba(5, 16, 64, 0.95) !important;
    }

    .hero-section {
        min-height: 320px;
    }

    .home-hero-inner {
        padding-top: 60px;
    }

    .home-hero-inner h1 {
        font-size: 31px;
        text-align: left;
        max-width: 420px;
    }

    .site-nav {
        gap: 12px 16px;
        font-size: 13px;
    }

    .section {
        padding: 40px 0 44px;
    }
    .section.about-section {
        padding: 0 0 44px;
    }

    .service-strip {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .cases-grid,
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .service-item+.service-item,
    .stat-item+.stat-item {
        border-left: 0;
        border-top: 1px solid rgba(223, 232, 243, 0.9);
    }

    .news-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-form {
        max-width: 100%;
        /* flex-direction: column; */
        align-items: stretch;
        gap: 10px;
    }

    .subscribe-form input,
    .subscribe-form button {
        height: 50px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-links a {
        max-width: 280px;
    }

    /* 主营业务页移动端优化 */
    .main-business-content .business-list {
        width: 95%;
        top: 12%;
    }

    .main-business-content .business-item {
        height: auto;
        min-height: 280px;
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }

    .main-business-content .business-item-1,
    .main-business-content .business-item-2,
    .main-business-content .business-item-3 {
        border-radius: 20px;
        align-items: center;
        padding: 30px 20px;
    }

    .main-business-content .business-item-title,
    .main-business-content .business-item-content {
        width: 100%;
        text-align: center;
    }

    .main-business-content .business-item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .main-business-content .business-item-content {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 新闻页移动端优化 */
    .news-container .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-container .card-image {
        height: 180px;
    }

    .news-container .top-news {
        grid-template-columns: 1fr;
    }

    .news-container .top-news-content h2 {
        font-size: 28px;
    }

    /* 联系我们页移动端优化 */
    .contact-mosaic {
        grid-template-columns: 1fr;
    }

    .contact-info-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-layout::before,
    .contact-info-layout::after {
        display: none;
    }

    .contact-info-layout .contact-card {
        padding: 24px;
        border-radius: 6px;
    }

    .contact-info-layout .map-card {
        margin-top: 20px;
    }

    .contact-info-layout .map-card .map-wrap {
        width: 100%;
        height: 300px;
        margin-left: 0;
    }

    .contact-info-layout .contact-card .contact-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .contact-info-layout .contact-card .contact-item img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        grid-column: 1;
        grid-row: 1;
    }

    .contact-info-layout .contact-card .contact-item h3 {
        grid-column: 1;
        font-size: 24px;
        text-align: center;
    }

    .contact-info-layout .contact-card .contact-item p {
        grid-column: 1;
        font-size: 16px;
        text-align: center;
    }

    /* 公司简介页移动端优化 */
    .about-capability-layout {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-capability-layout2 {
        grid-template-columns: 1fr;
    }

    .about-tech-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-service-copy h3,
    .about-reach-copy h3,
    .about-tech-columns h3 {
        font-size: 22px;
    }

    .about-service-copy li,
    .about-tech-columns li,
    .about-alliance-copy li {
        font-size: 15px;
        padding-left: 20px;
    }

    .about-project-grid {
        grid-template-columns: 1fr;
    }

    .about-project-card {
        gap: 15px;
    }

    .about-alliance-copy {
        padding: 30px 20px;
    }

    /* 软件下载页移动端优化 */
    .software-layout {
        grid-template-columns: 1fr;
    }

    .software-nav {
        position: static;
        transform: translateX(0);
        padding: 20px 0;
    }

    .software-card {
        grid-template-columns: 1fr;
        padding: 15px;
        text-align: center;
        gap: 18px;
        background: #fff;
        height: 400px;
        width: 80vw;
        margin: 0 auto 36px;
    }

    .software-card .img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        transform: translate(19px, -14px);
    }

    .software-card .info {
        width: 100%;
        text-align: center;
    }

    .software-card .info h3 {
        font-size: 18px;
    }

    .software-card .info h4 {
        font-size: 16px;
    }

    .software-card .info p {
        font-size: 14px;
    }

    /* 案例页移动端优化 */
    .case-layout {
        grid-template-columns: 1fr;
    }

    .case-menu {
        position: static;
    }

    .case-card-grid {
        grid-template-columns: 1fr;
    }

    .case-story {
        padding: 15px;
    }

    .case-story h3 {
        font-size: 18px;
    }

    .case-story p {
        font-size: 14px;
    }

    /* 详情页移动端优化 */
    .news-details-container {
        margin: 30px auto 60px;
        padding: 0 20px;
    }

    .news-details-container .news-details-section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .news-details-container .section-side {
        font-size: 14px;
        padding: 15px 0;
    }

    .news-details-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .case-details-block {
        border-radius: 12px;
    }

    .case-details-block .block-title {
        padding: 25px 30px;
        font-size: 24px;
    }

    .case-details-content {
        padding: 25px 30px;
    }

    .case-details-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .case-details-date {
        font-size: 16px;
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .case-details-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-close {
        top: -35px;
        right: 5px;
        font-size: 28px;
    }

    .news-redesign .news-banner h1 {
        font-size: clamp(20px, 4vw, 44px) !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .news-redesign .news-banner p {
        display: none;
    }

    .new-electronic-journals {
        width: 200px;
    }

    .culture-employee-gallery-container {
        background: #ffffff url("../img/fengcai-bg.jpg") no-repeat center bottom / cover;
    }

    .culture-corporate-brochures-container .button {
        width: 80vw;
        margin: 160px auto 60px;
        font-size: 20px;
    }

    .section-heading h2 {
        font-size: clamp(20px, 3vw, 32px);
    }

    .about-copy-panel h2,
    .about-section-title,
    .about-vision-panel h2 {
        font-size: clamp(24px, 3vw, 36px);
    }

    .about-vision-panel p {
        font-size: clamp(16px, 2vw, 22px);
    }

    .subscribe-section p {
        font-size: 16px;
    }

    .mosaic-tile h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .mosaic-tile p {
        font-size: 15px;
    }

    .contact-item h3 {
        font-size: 22px;
    }

    .contact-item p {
        font-size: 15px;
    }

    .plain-heading h2 {
        height: auto;
        font-size: clamp(24px, 4vw, 42px);
    }

    .software-intro {
        font-size: 16px;
    }

    .software-card h3 {
        font-size: 24px;
    }

    .software-card h4 {
        font-size: 18px;
    }

    .faq-q {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .faq-a {
        font-size: 15px;
    }

    .order-title,
    .license-title {
        font-size: 26px;
    }

    .order-description {
        font-size: 16px;
    }

    .license-subtitle {
        font-size: 18px;
    }

    .license-text {
        font-size: 15px;
    }

    .references-title {
        font-size: 26px;
    }

    .journal-title {
        font-size: 26px;
    }

    .journal-date {
        font-size: 16px;
    }

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

    .author-name {
        font-size: 20px;
    }

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

    .abstract-text,
    .introduction-text,
    .keywords-text {
        font-size: 15px;
    }

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

    .contents-list li {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
        height: 32px;
        line-height: 32px;
        padding: 0 18px;
    }

    .menu-item span {
        font-size: 16px;
        padding: 15px 15px 15px 20px;
    }

    .news-container .news-section-title {
        font-size: 32px;
        padding: 40px 0;
    }

    .news-container .top-news-content h2 {
        font-size: 24px;
    }

    .news-container .top-news-content p {
        font-size: 18px;
    }

    .news-container .card-title {
        font-size: 16px;
    }

    .our-global-impact .ogi-title {
        font-size: 32px;
        padding: 40px 0;
    }

    .culture-banner h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 16px;
    }

    main {
        padding-top: 60px;
    }

    .about-redesign,
    .contact-redesign,
    .case-redesign,
    .business-redesign,
    .software-redesign,
    .news-redesign,
    .culture-redesign,
    .certificate-redesign {
        padding-top: 60px;
    }

    .page-section,
    .page-band,
    .case-content {
        padding: 32px 0;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 8px 0 12px;
        z-index: 1000;
    }

    .site-header::after {
        height: 100% !important;
        opacity: 1 !important;
        background-color: rgba(255, 255, 255, 1) !important;
    }

    .site-header.site-header-dark::after {
        background-color: rgba(5, 16, 64, 0.95) !important;
    }

    .hero-section {
        min-height: 280px;
    }

    .home-hero-inner {
        padding-top: 40px;
    }

    .home-hero-inner h2 {
        font-size: clamp(18px, 3.2vw, 28px);
        line-height: 1.5;
    }

    .section {
        padding: 30px 0 34px;
    }
    .section.about-section {
        padding: 0 0 34px;
    }

    .section-heading h2 {
        font-size: clamp(18px, 3vw, 28px);
    }

    .service-item {
        padding: 15px 20px;
        gap: 12px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 10px;
    }

    .service-item h3 {
        font-size: 14px;
    }

    .service-item p {
        font-size: 12px;
    }

    .about-copy p {
        font-size: 13px;
        line-height: 1.6;
    }

    .stat-item strong,
    .stat-item strong span {
        font-size: clamp(24px, 4vw, 40px);
    }

    .stat-item span {
        font-size: 13px;
    }

    .news-layout .news-item {
        font-size: 14px;
        padding: 14px 0;
    }

    .news-layout .news-item time {
        font-size: 11px;
        padding: 4px 12px;
    }

    .subscribe-section p {
        font-size: 14px;
    }

    .subscribe-form input,
    .subscribe-form button {
        height: 44px;
    }

    .case-card {
        border-radius: 3px;
    }

    .footer-links {
        font-size: 14px;
        gap: 10px 20px;
    }

    .footer-side p {
        font-size: 14px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .sub-hero-inner h1 {
        font-size: clamp(32px, 5vw, 48px);
    }

    .about-redesign .sub-hero-inner h1 {
        font-size: clamp(30px, 4.5vw, 48px);
    }

    .about-copy-panel h2,
    .about-section-title,
    .about-vision-panel h2 {
        font-size: clamp(20px, 3vw, 32px);
    }

    .about-copy-panel p {
        font-size: 14px;
    }

    .about-vision-panel p {
        font-size: clamp(14px, 2vw, 18px);
    }

    .about-service-copy h3,
    .about-reach-copy h3,
    .about-tech-columns h3 {
        font-size: 18px;
    }

    .about-service-copy li,
    .about-tech-columns li,
    .about-alliance-copy li {
        font-size: 14px;
        padding-left: 18px;
    }

    .about-alliance-copy p {
        font-size: 14px;
    }

    .about-reach-copy p {
        font-size: 16px;
    }

    .copy-card {
        padding: 20px;
        border-radius: 16px;
    }

    .copy-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .dot-list li,
    .check-list li {
        font-size: 15px;
        padding-left: 22px;
    }

    .project-card h3 {
        font-size: 18px;
    }

    .project-card p {
        font-size: 14px;
    }

    .vision-banner h2 {
        font-size: clamp(28px, 4vw, 48px);
    }

    .vision-banner p {
        font-size: 15px;
    }

    .about-project-card h3 {
        font-size: 16px;
    }

    .about-project-card p {
        font-size: 13px;
    }

    .mosaic-tile {
        min-height: 150px;
        padding: 20px;
    }

    .mosaic-tile h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .mosaic-tile p {
        font-size: 13px;
    }

    .contact-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

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

    .contact-info-layout .contact-card .contact-item h3 {
        font-size: 20px;
    }

    .contact-info-layout .contact-card .contact-item p {
        font-size: 14px;
    }

    .plain-heading h2 {
        font-size: clamp(20px, 4vw, 36px);
        height: 44px;
    }

    .software-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .software-card {
        padding: 12px;
        gap: 14px;
        height: auto;
        min-height: 300px;
        width: 90vw;
    }

    .software-card .info h3 {
        font-size: 16px;
    }

    .software-card .info h4 {
        font-size: 14px;
    }

    .software-card .info p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .software-card h3 {
        font-size: 20px;
    }

    .software-card h4 {
        font-size: 16px;
    }

    .software-nav a {
        padding: 6px 10px;
        font-size: 14px;
        height: 48px;
        line-height: 36px;
    }

    .faq-q {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .faq-a {
        font-size: 13px;
        line-height: 1.6;
    }

    .order-title,
    .license-title {
        font-size: 22px;
    }

    .order-description {
        font-size: 14px;
    }

    .license-subtitle {
        font-size: 16px;
    }

    .license-text {
        font-size: 14px;
    }

    .references-title {
        font-size: 22px;
    }

    .reference-text {
        font-size: 13px;
    }

    .journal-header {
        flex-direction: column;
        gap: 20px;
    }

    .journal-cover {
        width: 140px;
        height: 170px;
        margin: 0 auto;
    }

    .journal-title {
        font-size: 22px;
        text-align: center;
    }

    .journal-date {
        font-size: 14px;
        text-align: center;
    }

    .author-label {
        font-size: 14px;
        text-align: center;
    }

    .author-name {
        font-size: 18px;
        text-align: center;
    }

    .journal-content {
        flex-direction: column;
        gap: 20px;
    }

    .sidebar {
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #e0e0e0;
        padding-top: 20px;
    }

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

    .abstract-text,
    .introduction-text,
    .keywords-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sidebar-title {
        font-size: 16px;
    }

    .contents-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .btn-download,
    .btn-share {
        padding: 10px 24px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 13px;
        height: 28px;
        line-height: 28px;
        padding: 0 16px;
    }

    .menu-item span {
        font-size: 14px;
        padding: 12px 10px 12px 15px;
    }

    .menu-item .img {
        width: 80px;
        height: 80px;
    }

    .menu-item img {
        width: 48px;
        height: 48px;
    }

    .news-container .news-section-title {
        font-size: 26px;
        padding: 30px 0;
    }

    .news-container .top-news-content h2 {
        font-size: 18px;
    }

    .news-container .top-news-content p {
        font-size: 16px;
    }

    .news-container .card-title {
        font-size: 15px;
    }

    .news-container .card-date {
        font-size: 13px;
    }

    .news-container .read-more-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .news-global-presence .section-desc {
        font-size: 16px;
        padding: 0 5%;
    }

    .news-details-container {
        margin: 20px auto 40px;
    }

    .news-details-container .news-details-section-title {
        font-size: 22px;
    }

    .news-details-container .section-side {
        font-size: 13px;
        padding: 12px 0;
    }

    .news-details-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .case-details-block .block-title {
        padding: 20px 24px;
        font-size: 20px;
    }

    .case-details-content {
        padding: 20px 24px;
    }

    .case-details-title {
        font-size: 20px;
    }

    .case-details-date {
        font-size: 14px;
        padding: 12px 0;
        margin-bottom: 12px;
    }

    .case-details-body {
        font-size: 14px;
        padding: 20px 0 80px;
    }

    .case-story h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .case-story p {
        font-size: 13px;
    }

    .case-story span {
        font-size: 14px;
    }

    .featured-case h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .featured-case p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .featured-case a {
        font-size: 16px;
    }

    .business-redesign .business-banner h1 {
        font-size: clamp(24px, 4vw, 44px);
    }

    .main-business-content .content-title,
    .equipment-showcase-content .content-title {
        font-size: 24px;
    }

    .main-business-content .business-item-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .main-business-content .business-item-content {
        font-size: 13px;
        line-height: 1.5;
    }

    .equipment-showcase-carousel-item .tit {
        font-size: 22px;
        padding-top: 100px;
        margin-bottom: 15px;
    }

    .equipment-showcase-carousel-item .desc {
        font-size: 16px;
        padding: 0 15px;
    }

    .software-redesign .software-banner h1 {
        font-size: clamp(18px, 4vw, 48px);
    }

    .culture-redesign .culture-banner h1 {
        font-size: clamp(30px, 5vw, 48px);
    }

    .culture-banner h1 {
        font-size: 24px;
    }

    .culture-corporate-brochures-container .title {
        font-size: clamp(20px, 3vw, 32px);
    }

    .culture-corporate-brochures-container .button {
        width: 85vw;
        font-size: 18px;
        height: 50px;
        line-height: 50px;
    }

    .culture-employee-gallery-container .title {
        font-size: clamp(20px, 3vw, 32px);
    }

    .culture-employee-gallery-container .fc-desc {
        font-size: clamp(14px, 2vw, 24px);
        margin: 100px auto 60px;
    }

    .new-electronic-journals {
        width: 160px;
    }

    .our-global-impact .ogi-title {
        font-size: 26px;
        padding: 30px 0;
    }

    .certificate-redesign .redesign-banner h1 {
        font-size: clamp(30px, 5vw, 48px);
    }

    .case-redesign .case-banner h1 {
        font-size: clamp(30px, 5vw, 48px);
    }

    .culture-electronic-journals-container {
        min-height: 350px;
    }
    .fish-block .fish-img span {
        font-size: 8px;
        line-height: 16px;
    }

    .site-footer {
        background: url("../img/index_bottom.png") no-repeat center bottom / auto 100%;
    }

    .indicator {
        width: 8px !important;
        height: 8px !important;
        opacity: 0.8;
    }
    .indicator.active {
        width: 16px !important;
    }
    .culture-carousel .carousel-item {
        height: 320px;
    }

    .cases-section {
        background: url("../img/case-bg.png") no-repeat center bottom / 100% auto;
    }

    .subscribe-section {
        background: url("../img/subscribe-bg.png") no-repeat center top / auto 100%;
        padding: 30px 0 60px;
    }
    .news-section {
        background: url("../img/news-bg.png") no-repeat center bottom / 100% auto;
    }
    .section.about-section {
        background: url("../img/index-about-img.png") no-repeat right top 50px / auto 240px;
    }
    .performance-section {
        background: url("../img/company-performance-bg.png") no-repeat center bottom / 100% auto;
    }

    .about-carousel-indicators {
        bottom: 10px;
    }
    .about-indicator {
        width: 8px;
        height: 8px;
        opacity: 0.8;
    }
    .about-indicator.active {
        width: 16px;
    }
    .about-redesign .about-hero {
        min-height: 200px;
    }

    .about-copy-panel {
        padding: 36px 12px 60px !important;
    }

    .about-service-copy li, .about-tech-columns li, .about-alliance-copy li{
        padding-left: 24px;
    }

    .case-carousel {
        aspect-ratio: 10 / 7;
    }

    .case-indicator {
        width: 8px;
        height: 8px;
    }
    .case-indicator.active {
        width: 16px;
    }

    .banner-carousel .carousel-item {
        aspect-ratio: 10 / 7;
    }

    .equipment-showcase-content {
        padding: 120px 0;
    }
    .equipment-showcase-content .content-title {
        top: 60px;
    }

    .certificate-redesign .redesign-banner img {
        aspect-ratio: 6 / 5;
    }

    .certificate-content h2 {
        display: none;
    }
    .certificate-content h2.content-title {
        display: block;
        font-size: 32px !important;
        width: 100%;
    }
    .certificate-content .certificate-text {
        font-size: 9px;
    }

    .about-intro-panel {
        background: url("../img/about-bg.png") no-repeat left top / 100% 100%;
        margin-top: -36px;
    }

    .site-logo img {
        width: 60px;
    }
    .site-header {
        background: rgba(255, 255, 255, .8);
        height: 70px !important;
        box-shadow: none;
        backdrop-filter: blur(4px);
    }
    .site-header::after {
        display: none;
    }
    .news-redesign .news-container {
        padding: 10px;
    }

    .software-redesign {
        width: 100vw;
        overflow-x: hidden;
    }
    .download-modal-title {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .software-title {
        font-size: 20px;
    }
    .software-description {
        font-size: 16px;
    }
    .download-btn-primary, .download-btn-secondary {
        font-size: 12px;
    }
    .software-info span {
        font-size: 10px;
    }

    .our-global-impact .ogi-body {
        height: 140px;
    }
}
