/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}
.tbox {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(15, 31, 47, 0.12);
	background: #ffffff;
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	white-space: nowrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.tbox:hover {
	background: rgba(11, 110, 253, 0.08);
	border-color: rgba(11, 110, 253, 0.35);
	box-shadow: 0 12px 24px rgba(11, 110, 253, 0.15);
}

.tbox img {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.footer-ligo{
	display: flex;
	justify-content: start;
	align-items:center;
	
}
.phone{
	text-align: center;
}
.weixin{
	margin-left: 40px;
	text-align: center;
}

/* 语言选择器样式 */
.language-selector {
	position: relative;
	cursor: pointer;
}

.language-selector__current {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0f1f2f;
	white-space: nowrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.language-selector__arrow {
	font-size: 0.7rem;
	transition: transform 0.3s ease;
	color: #0f1f2f;
}

.language-selector.is-open .language-selector__arrow {
	transform: rotate(180deg);
}

.language-selector__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 140px;
	max-width: 200px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	list-style: none;
	margin: 0;
	padding: 4px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	z-index: 1000;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.language-selector__dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-selector__dropdown li {
	margin: 0;
	padding: 0;
}

.language-selector__dropdown li a {
	display: block;
	padding: 10px 16px;
	color: #0f1f2f;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.language-selector__dropdown li a:hover {
	background: rgba(11, 110, 253, 0.1);
	color: #0b6efd;
}

.language-selector__dropdown li:first-child a {
	border-radius: 8px 8px 0 0;
}

.language-selector__dropdown li:last-child a {
	border-radius: 0 0 8px 8px;
}

#translate {
	display: flex;
	align-items: center;
}

#translate select,
.translateSelectLanguage {
	border: none;
	background: transparent;
	padding: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0f1f2f;
	cursor: pointer;
	outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding-right: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230f1f2f' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 16px;
}


#translate select:focus,
.translateSelectLanguage:focus {
	outline: none;
	/* background-color: #55aaff !important; */
}

#translate select option,
.translateSelectLanguage option :checked{
	padding: 10px !important;
	-webkit-appearance:none;
	background-color: #55aaff;
	color: #fff !important;
	border: none !important;
}
/* #translate select option :focus,
.translateSelectLanguage select option :focus{
	background-color: #55aaff !important;
	color: #fff !important;
} */

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
	padding: 0;
    /* font-family: "Raleway", "Microsoft YaHei", sans-serif; */
    color: #0f1f2f;
    background: #f7f9fb;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    color-scheme: light;
    --toolbar-height: 88px;
}
.changeselect {
	border: none;
	outline: none;
	background: #fff;
	cursor: pointer;
	
}

.changeselect:focus {
	outline: none;
	border: none;
}

.changeselect option {
	outline: none;
}

.changeselect option:hover {
	background: rgba(11, 110, 253, 0.1) !important;
}

.changeselect option:checked,
.changeselect option:focus {
	background: rgba(11, 110, 253, 0.15) !important;
	color: #0b6efd !important;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus {
    color: #0b6efd;
}

/* 全局文本溢出处理 - 适配英文文本 */
p, span:not([class*="icon"]):not([class*="arrow"]), li, td, th, label {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.section {
    padding: 80px 24px;
    max-width: 100%;
    /* margin: 0; */
}

.section--alt {
    background: #fff;
	
	
}
.section--alt3 {
    background: url('../img/banner/about-bg.jpg') center center no-repeat;
    background-size: 100% 100%;
    background-repeat: no-repeat;
	
}
.section--alt2 {
    background: #fff;
	
	
}

.section--accent {
	background: #fff;
    /* background: linear-gradient(135deg, #0b6efd 0%, #37c9ff 100%); */
    color: #fff;
    padding: 100px 24px;
}

.section__header {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section__header p {
    margin: 12px 0 0;
}

.eyebrow {
    text-align: center;
	font-size: 30px;
	color: #0b6efd;
	font-weight: 550;
	 /*  */
}
.ttips{
	text-align: center;
	color: #b5b5b5;
	font-size: 13px;
	margin-bottom: 20px;
}
.aboutbtn{
	
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.abt{
	background-color: #0b6efd;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 10px 30px;
	border-radius: 0px 20px 0px 20px;
	/* width: 100px; */
}
.abt img{
	margin-right: 10px;
	width: 25px;
	height: 25px;
}
.titlelive{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}
.mallbox{
	width: 50px;
	height: 5px;
	/* background-color:#5dc1ff; */
	 background: linear-gradient(90deg, #aaffff,#0000ff);
	border-radius: 0px 40px 0px 40px;
	margin-top: 10px;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.btn--primary {
    background: #0b6efd;
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 110, 253, 0.25);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(11, 110, 253, 0.35);
}

.btn--secondary {
    background: rgba(11, 110, 253, 0.12);
    color: #0b6efd;
}

.btn--secondary:hover {
    transform: translateY(-3px);
    background: rgba(11, 110, 253, 0.22);
}

.btn--ghost {
    background: transparent;
    color: #0f1f2f;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(15, 31, 47, 0.1);
}

.btn--full {
    width: 100%;
}

.header {
    position: relative;
    z-index: 1200;
    transition: transform 0.3s ease;
}

.header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.announcement-bar {
    background: linear-gradient(90deg, #5a1ddf 0%, #8036ff 50%, #4b56ff 100%);
    color: #f5f3ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.announcement-bar__content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-bar__contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.announcement-bar__contact a {
    color: #f5f3ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announcement-bar__contact a:hover {
    color: #ffe388;
}

.icon-phone::before,
.icon-mail::before,
.icon-search::before,
.icon-globe::before,
.icon-link::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    mask-size: contain;
    mask-repeat: no-repeat;
    background: currentColor;
}

.icon-phone::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M7.1 3.3A2 2 0 0 1 9.54 3l1.83 1.22a2 2 0 0 1 .74 2.45l-.7 1.75a1 1 0 0 0 .23 1.05l3.26 3.26a1 1 0 0 0 1.05.23l1.75-.7a2 2 0 0 1 2.45.74L21 15.46a2 2 0 0 1-.3 2.44l-1.6 1.6a3 3 0 0 1-3.06.75 19.3 19.3 0 0 1-7.56-4.75 19.3 19.3 0 0 1-4.75-7.56 3 3 0 0 1 .76-3.06l1.6-1.6z'/%3E%3C/svg%3E");
}

.icon-mail::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm8 7L4.8 6.8 4 7.5V18h16V7.5l-.8-.7L12 11z'/%3E%3C/svg%3E");
}

.icon-search::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M11 4a7 7 0 1 1 0 14 7 7 0 0 1 0-14zm0-2a9 9 0 1 0 5.7 16h.3l4 4 1.4-1.4-4-4v-.3A9 9 0 0 0 11 2z'/%3E%3C/svg%3E");
}

.icon-globe::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm7.93 9H17.6c-.14-2.34-.9-4.46-2.1-5.98A8 8 0 0 1 19.93 11zM12 4c.95 0 2.31 1.52 2.93 4H9.07C9.69 5.52 11.05 4 12 4zM7.5 12c0-.34.01-.67.04-1h8.92c.03.33.04.66.04 1s-.01.67-.04 1H7.54c-.03-.33-.04-.66-.04-1zm1.57 5c-.78-1.1-1.26-2.6-1.4-4h8.66c-.14 1.4-.62 2.9-1.4 4-.8 1.12-1.76 2-2.93 2s-2.13-.88-2.93-2zM8.5 5.02C7.3 6.54 6.54 8.66 6.4 11H4.07a8.01 8.01 0 0 1 4.43-5.98zM4.07 13H6.4c.14 2.34.9 4.46 2.1 5.98A8 8 0 0 1 4.07 13zm11.43 5.98c1.2-1.52 1.96-3.64 2.1-5.98h2.33a8.01 8.01 0 0 1-4.43 5.98z'/%3E%3C/svg%3E");
}

.icon-link::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 24 24'%3E%3Cpath d='M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'/%3E%3C/svg%3E");
}

.toolbar {
    position: relative;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 31, 47, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.is-scrolled .toolbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 38px rgba(10, 23, 46, 0.15);
}

.header.is-scrolled .announcement-bar {
    display: none;
}

.header.is-scrolled .toolbar__actions .language-switch__toggle {
    border-color: rgba(15, 31, 47, 0.18);
}

.toolbar__brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #0b6efd;
}

.toolbar__logo {
    display: inline-block;
}

.toolbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switch {
    position: relative;
}

.language-switch__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 31, 47, 0.12);
    background: #ffffff;
    color: #0f1f2f;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.language-switch__toggle:hover,
.language-switch__toggle:focus-visible {
    background: rgba(11, 110, 253, 0.08);
    border-color: rgba(11, 110, 253, 0.35);
    box-shadow: 0 12px 24px rgba(11, 110, 253, 0.15);
    outline: none;
}

.language-switch__toggle .icon-globe::before {
    width: 18px;
    height: 18px;
}

.language-switch__caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.language-switch.is-open .language-switch__caret {
    transform: rotate(-135deg);
}

.language-switch__list {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 156px;
    border-radius: 14px;
    background: linear-gradient(135deg, #151f35, #0b1428);
    box-shadow: 0 20px 40px rgba(5, 15, 42, 0.32);
    color: #f5f7ff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1400;
}

.language-switch.is-open .language-switch__list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switch__option {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-switch__option::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease;
}

.language-switch__option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.language-switch__option.is-active {
    color: #87d0ff;
}

.language-switch__option.is-active::after {
    background: #87d0ff;
}

.toolbar__search {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 110, 253, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b6efd;
    transition: transform 0.3s ease, background 0.3s ease;
}

.toolbar__search:hover {
    transform: translateY(-2px);
    background: rgba(11, 110, 253, 0.18);
}

.navbar__menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #0b6efd;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
}

.nav-link.is-active {
    color: #0b6efd;
}

.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-item.is-current > .nav-link {
    color: #0b6efd;
}

.nav-item.has-sub-active > .nav-item__header {
    background: rgba(11, 110, 253, 0.08);
    border-radius: 16px;
    padding: 0 12px;
}

.nav-item.has-sub-active > .nav-item__header .nav-link {
    padding: 12px 0;
}

.toolbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.toolbar__toggle span {
    width: 24px;
    height: 2px;
    background: #0f1f2f;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-item__header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item__toggle {
    background: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(15, 31, 47, 0.2);
    position: relative;
    display: none;
    flex-shrink: 0;
}

.nav-item__toggle::before,
.nav-item__toggle::after {
    content: "";
    position: absolute;
    inset: 50% 4px;
    height: 1.5px;
    background: rgba(15, 31, 47, 0.7);
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.nav-item__toggle::after {
    transform: translateY(-50%) rotate(90deg);
}

.nav-item__toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(0deg);
}

.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    max-width: 300px;
    padding: 16px 0 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(5, 26, 60, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: grid;
    gap: 4px;
    z-index: 1300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dropdown::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 10px 22px;
    color: #24405a;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.dropdown a:hover {
    background: rgba(11, 110, 253, 0.12);
    color: #0b6efd;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 移除 has-sub-active 保持菜单打开的逻辑，改为只在hover时显�?*/

.dropdown a.is-active {
    background: rgba(11, 110, 253, 0.12);
    color: #0b6efd;
}

.hero {
    position: relative;
    background: radial-gradient(circle at top left, rgba(11, 110, 253, 0.18), rgba(6, 18, 42, 0.9));
    color: #f4f8ff;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero__slider {
	/* width: 100%; */
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.hero__slides {
    position: relative;
    display: grid;
    min-height: inherit;
}

.hero-slide {
    grid-area: 1 / 1 / 2 / 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    height: 100%;
    min-height: 580px;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* 切换效果1：淡入淡出 */
.hero-slide.transition-fade {
    opacity: 0;
    transform: scale(1);
}

.hero-slide.transition-fade.is-active {
    opacity: 1;
    transform: scale(1);
}

/* 切换效果2：从左滑入 */
.hero-slide.transition-slide-left {
    opacity: 0;
    transform: translateX(-100%);
}

.hero-slide.transition-slide-left.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* 切换效果3：从右滑入 */
.hero-slide.transition-slide-right {
    opacity: 0;
    transform: translateX(100%);
}

.hero-slide.transition-slide-right.is-active {
    opacity: 1;
    transform: translateX(0);
}


.hero-slide__inner {
	width: 100%;
	/* height: 100%; */
   /* display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(280px, 1fr);
    gap: 56px;
    width: min(1120px, 90vw);
    padding: 110px 0 120px;
    align-items: center; */
}

.hero-slide__text {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.hero-slide__text h1 {
    color: #ffffff;
}

.hero-slide__desc {
    margin: 24px 0 36px;
    max-width: 520px;
    color: rgba(235, 242, 255, 0.9);
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-slide__stats {
    margin-top: 36px;
    display: grid;
    gap: 18px;
}

.hero-slide__image {
    position: relative;
    /* border-radius: 32px; */
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 32px 70px rgba(5, 15, 42, 0.45);
}

.hero-slide__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, var(--hero-overlay, rgba(4, 18, 48, 0.6)), rgba(4, 18, 48, 0.15)), var(--hero-image, linear-gradient(135deg, #0b6efd, #09214b));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 1.2s ease;
}

.hero-slide.is-active .hero-slide__image::before {
    transform: scale(1);
}

.hero__controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0 48px;
    z-index: 10; /* 确保按钮在碎片之上 */
}

.hero-nav {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.hero-nav:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-nav::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.hero-nav--prev::after {
    transform: rotate(-135deg);
}

.hero-nav--next::after {
    transform: rotate(45deg);
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
    background: #ffffff;
    transform: scale(1.25);
}

.hero__stat {
    position: relative;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0, 23, 58, 0.35);
}

.hero__stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
}

.hero__stat-label {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    color: rgba(236, 244, 255, 0.8);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 30px rgba(15, 31, 47, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(15, 31, 47, 0.12);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.solution-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75));
    padding: 32px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(0, 48, 80, 0.08);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: -30% -20% auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(11, 110, 253, 0.22), transparent 70%);
    transform: translate(40%, -40%);
    transition: transform 0.4s ease;
}

.solution-card:hover::before {
    transform: translate(30%, -30%) scale(1.1);
}

.solution-card h3 {
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b6efd;
}

.link-arrow::after {
    content: "�?;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* 关于我们 - 新样式 */
.about-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0 50px;
    flex-wrap: wrap;
}

.about-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0.1 0 auto;
}

.about-features__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-features__icon:hover {
    background: #0b6efd;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.3);
}

.about-features__icon--active {
    background: #0b6efd;
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 110, 253, 0.4);
}

.about-features__icon i {
    font-size: 40px;
    line-height: 1;
}

.about-features__label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.about-description {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	/* text-align: center; */
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 0;
	padding-bottom: 20px;
}

.about-media {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-media__container {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}

.about-media__image {
	/* display: flex; */
	/* justify-content: center; */
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-media__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.about-media__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.about-media__play svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.about-media__play:hover svg circle {
    fill-opacity: 1;
}

@media (max-width: 768px) {
    .about-features {
        gap: 30px;
        margin: 40px 0 30px;
    }
    
    .about-features__icon {
        width: 70px;
        height: 70px;
    }
    
    .about-features__icon i {
        font-size: 35px;
    }
    
    .about-features__label {
        font-size: 13px;
    }
    
    .about-description {
        margin-bottom: 40px;
    }
    
    .about-description p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-media__play {
        width: 60px;
        height: 60px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-stat {
    background: #eef3f9;
    padding: 18px 24px;
    border-radius: 18px;
    min-width: 140px;
    box-shadow: inset 0 0 0 1px rgba(11, 110, 253, 0.12);
}

.about-stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: #0b6efd;
}

.about-card {
    background: #fff;
    padding: 38px;
    border-radius: 24px;
    box-shadow: 0 20px 36px rgba(10, 33, 64, 0.1);
}

.about-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b6efd;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.project-card {
    background: #fff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(0, 43, 84, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(0, 43, 84, 0.16);
}

.project-card__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(11, 110, 253, 0.12);
    color: #0b6efd;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.news-card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 20px 34px rgba(6, 36, 76, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 42px rgba(6, 36, 76, 0.16);
}

.news-card time {
    font-size: 0.9rem;
    color: #3a5972;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.global-list {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.global-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.global-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
}

.global-grid__map {
    position: relative;
}

.map-placeholder {
    padding: 120px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 138, 255, 0.35), rgba(0, 82, 204, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.badge-group {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 18px 24px;
    color: #fff;
    min-width: 120px;
}

.badge__number {
    font-size: 1.8rem;
    font-weight: 700;
}

.badge__label {
    display: block;
    margin-top: 4px;
}

.section--accent .contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    background: rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(6, 26, 60, 0.24);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.contact-card__form {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 32px;
    color: #0f1f2f;
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

input,
textarea {
    border-radius: 16px;
    border: 1px solid rgba(15, 31, 47, 0.12);
    padding: 14px 18px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0b6efd;
    box-shadow: 0 0 0 4px rgba(11, 110, 253, 0.15);
}

.footer {
    background: #081423;
    color: #d9e3f2;
    padding: 64px 24px 32px;
}

.footer__content {
    max-width: 1440px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer__logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.footer__links a {
    color: #d9e3f2;
}

.footer__links a:hover {
    color: #87d0ff;
}

.footer__form {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer__form input {
    flex: 1;
    border-radius: 999px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer__social a:hover {
    transform: translateY(-4px);
    background: #0b6efd;
}

.footer__meta {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1440px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.footer__meta-links {
    display: flex;
    gap: 16px;
}

.footer__meta-links a {
    color: #87d0ff;
}

.footer__meta-links a:hover {
    color: #fff;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 17, 36, 0.92);
    color: #f0f3ff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 1300;
}

.mobile-overlay.is-open {
    transform: translateX(0);
}

.mobile-overlay__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-overlay__close {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay__body {
    padding: 24px;
    overflow-y: auto;
    display: grid;
    gap: 24px;
}

.mobile-contact {
    display: grid;
    gap: 12px;
}

.mobile-contact a {
    color: #87d0ff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.mobile-menu__item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mobile-menu__link {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu__toggle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__submenu {
    margin: 12px 0 0;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    list-style: none;
}

.mobile-menu__submenu a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.mobile-menu__submenu.is-open {
    max-height: 500px;
    padding: 12px 16px;
    opacity: 1;
}

.mobile-menu__link.is-active {
    color: #87d0ff;
}

.mobile-menu__submenu a.is-active {
    color: #87d0ff;
}

.mobile-overlay__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
}

.animate-slide-left {
    opacity: 0 !important;
    transform: translateX(-60px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right {
    opacity: 0 !important;
    transform: translateX(60px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.in-view.animate-slide-left,
.in-view.animate-slide-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.in-view {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

@keyframes heroGlow {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05) translate3d(-10px, -6px, 0);
        opacity: 0.85;
    }
}

@keyframes floatGentle {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

@keyframes floatUp {
    0% {
        transform: translate3d(-10px, 10px, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
    100% {
        transform: translate3d(10px, 10px, 0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar__menu {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        background: radial-gradient(circle at top left, rgba(11, 110, 253, 0.18), rgba(6, 18, 42, 0.9));
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero__slider {
        width: 100%;
        max-width: 100%;
    }
    
    .hero__slides {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-slide__inner {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 96px 0 110px;
    }

    .toolbar__toggle {
        display: flex;
    }

    .navbar {
        display: none;
    }

    .hero-slide__image {
        order: -1;
        min-height: 320px;
        width: 100%;
        max-width: 100%;
    }

    .hero-slide__stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }

    .hero__controls {
        padding: 0 32px;
    }

    .section {
        padding: 64px 20px;
        width: 100%;
        max-width: 100%;
    }

    .section--accent {
        padding: 80px 20px;
    }

    .section--accent .contact-card {
        padding: 32px;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        background: radial-gradient(circle at top left, rgba(11, 110, 253, 0.18), rgba(6, 18, 42, 0.9));
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }
    
    .toolbar {
        width: 100%;
        max-width: 100%;
    }

    .hero-slide__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .toolbar__actions {
        gap: 10px;
    }

    .hero__controls {
        align-items: flex-end;
        padding-bottom: 140px;
    }

    .hero__dots {
        bottom: 28px;
    }

    .footer__form {
        flex-direction: column;
    }
    
    .section {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 540px) {
    .section {
        padding: 56px 16px;
    }

    .hero-slide__inner {
        padding: 84px 0 92px;
    }

    .hero__stat {
        padding: 18px;
    }

    .hero-nav {
        width: 44px;
        height: 44px;
    }

    .hero__dots {
        gap: 10px;
    }
}

/* Project Case Page Styles */
.project-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/about.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-cp {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/cp/cpde.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-s {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/banner/VCG41N2169351906.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-x {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/banner/VCG41N1318511840.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-c {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/banner/VCG41N2182937873.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-z {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/banner/VCG211407235774.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero-n {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../img/banner/VCG211365423991.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
.project-hero__content {
    z-index: 1;
}

.project-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 30, 72, 0.55);
    z-index: 1;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.about-hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb--about {
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.breadcrumb--about a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb--about a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
    color: #ffffff;
    font-weight: 600;
}

.project-section {
    padding: 60px 0;
}

.project-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a5972;
}

.anli-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    padding: 0 20px;
}

.anli-filter__btn {
    padding: 12px 24px;
    border: none;
    background: #ffffff;
    color: #0f1f2f;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 31, 47, 0.1);
    border: 2px solid transparent;
}

.anli-filter__btn:hover {
    background: rgba(11, 110, 253, 0.1);
    border-color: rgba(11, 110, 253, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 110, 253, 0.2);
}

.anli-filter__btn.is-active {
    background: #0b6efd;
    color: #ffffff;
    border-color: #0b6efd;
    box-shadow: 0 4px 16px rgba(11, 110, 253, 0.4);
}

.anli-filter__btn.is-active:hover {
    background: #0a5ed9;
    border-color: #0a5ed9;
}

/* Enhanced Project Card Styles */
.anli-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.anli-card {
    /* background: #fff; */
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 8px 24px rgba(0, 43, 84, 0.1); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.anli-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 43, 84, 0.2);
}

.anli-card__image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 138, 255, 0.1), rgba(0, 82, 204, 0.1));
}

.anli-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.anli-card:hover .anli-card__image img {
    transform: scale(1.1);
}

.anli-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 110, 253, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.anli-card:hover .anli-card__overlay {
    opacity: 1;
}

.anli-card__overlay-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.anli-card__overlay-btn .icon-search::before,
.anli-card__overlay-btn .icon-link::before {
    width: 20px;
    height: 20px;
}

.anli-card__overlay-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.anli-card__content {
    padding: 24px;
}

.anli-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f1f2f;
    margin-bottom: 8px;
    line-height: 1.4;
}

.anli-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #6b7c8f;
}

.anli-card__likes {
    display: flex;
    align-items: center;
    gap: 6px;
}

.anli-card__likes::before {
    content: "�?;
    color: #e74c3c;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-hero {
        height: 300px;
    }

    .project-hero__title {
        font-size: 2.5rem;
    }

    .about-hero {
        height: 400px;
    }

    .about-hero__title {
        font-size: 2.5rem;
    }

    .breadcrumb--about {
        font-size: 0.9rem;
    }

    .project-filter {
        gap: 12px;
        padding: 0 16px;
    }

    .project-filter__btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

/* Case Detail Page Styles */
.case-detail-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/about.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.case-detail-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.case-detail-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.case-detail-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb--detail {
    justify-content: center;
}

.case-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

.case-detail-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.case-detail-slider__container {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    overflow: visible;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.case-detail-slider__track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-detail-slider__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.case-detail-slider__slide img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.case-detail-slider__prev,
.case-detail-slider__next {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: #0f1f2f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-detail-slider__prev {
    order: -1;
}

.case-detail-slider__next {
    order: 1;
}

.case-detail-slider__prev:hover,
.case-detail-slider__next:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.case-detail-slider__prev:active,
.case-detail-slider__next:active {
    transform: scale(0.95);
}

.case-detail-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.case-detail-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-detail-slider__dot.is-active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

.case-detail-info {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #f7f9fb;
    border-radius: 16px;
}

.case-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.case-detail-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0f1f2f;
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 31, 47, 0.1);
}

.case-detail-list li:last-child {
    border-bottom: none;
}

.case-detail-list strong {
    color: #0b6efd;
    font-weight: 600;
    margin-right: 8px;
}

.case-detail-list span {
    color: #3a5972;
}

.case-detail-actions {
    text-align: center;
    margin-top: 40px;
}

.case-detail-back {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.case-detail-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 110, 253, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .case-detail-hero {
        height: 300px;
    }

    .case-detail-hero__title {
        font-size: 2rem;
    }

    .breadcrumb {
        display: none;
    }

    .case-detail-slider {
        flex-direction: row;
        gap: 20px;
    }

    .case-detail-slider__container {
        width: 100%;
        margin: 0 auto 40px;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .case-detail-slider__track {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .case-detail-slider__slide {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .case-detail-slider__slide img {
        max-width: 100%;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .case-detail-slider__prev,
    .case-detail-slider__next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        position: relative;
        flex-shrink: 0;
    }

    .case-detail-slider__prev {
        order: -1;
    }

    .case-detail-slider__next {
        order: 1;
    }

    .case-detail-info {
        padding: 24px;
    }
}
