/* 全局样式 */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --accent-color: #ff3366;
    --light-color: #f8f9fa;
    --dark-color: #0a192f;
    --text-color: #333;
	--lightUp-color:#fff;
    --text-light: #8892b0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 25px rgba(100, 255, 218, 0.2);
    --transition: all 0.3s ease;
    --glow-color: rgba(100, 255, 218, 0.5);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-border: rgba(100, 255, 218, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #172a45);
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff6b97);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #a8fff1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    background-image: linear-gradient(rgba(10, 25, 47, 0.01) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(10, 25, 47, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

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

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    padding-top: 10px;
}

.tech-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.tech-decoration span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.7;
}

.tech-decoration span:nth-child(1) {
    animation: pulse 2s infinite 0.2s;
}

.tech-decoration span:nth-child(2) {
    animation: pulse 2s infinite 0.4s;
}

.tech-decoration span:nth-child(3) {
    animation: pulse 2s infinite 0.6s;
}

.tech-decoration-dots {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.tech-decoration-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: var(--secondary-color);
    box-shadow: 5px 0 0 var(--secondary-color),
                0 5px 0 var(--secondary-color),
                5px 5px 0 var(--secondary-color),
                10px 0 0 var(--secondary-color),
                0 10px 0 var(--secondary-color),
                10px 10px 0 var(--secondary-color);
    opacity: 0.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-left: 8px;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}

.btn-primary:hover {
    background-color: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 15px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 0.2;
}
	
.text-ff{
	color: #fff;
}
.text-33{
	color: #333;
}
/* 导航栏样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* width: 100%; */
	z-index: 1000;
	background-color: rgba(10, 25, 47, 0.95);
	/* background-color: rgba(255, 255, 255, 0.95); */
	box-shadow: var(--shadow);
	/* transition: var(--transition); */

}
	
.pd-lr-5{
	padding-left: 5% !important;
	padding-right: 5% !important;
}	
.pd-tb-15{
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}
.flex{
	display: flex;
}
.align-center{
	align-items: center;	
}
.img-logo{
	width: 30px;
	height: 30px;
}
	
.flex-between-center{    
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.logo a {
    display: flex;
    align-items: center;
}

.logo h3 {
	
	padding-left: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--lightUp-color);
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lightUp-color);
    padding: 5px 0;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 首页横幅样式 - 科技感背景 */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a192f, #172a45, #303C55);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* 添加动画背景 */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 添加科技感网格背景 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* 添加浮动粒子效果 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatingDots 20s linear infinite;
    opacity: 0.2;
}

@keyframes floatingDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 span {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--glow-color);
    position: relative;
    display: inline-block;
}

/* 添加打字机效果 */
.hero-content h1 span::after {
    content: '|';
    position: absolute;
    right: -15px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-btns {
    margin-top: 30px;
}

/* 关于我们样式 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: -1;
}

.about-img {
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.about-img .tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(10, 25, 47, 0.2), rgba(23, 42, 69, 0.3));
    z-index: 1;
    pointer-events: none;
}

.tech-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

.about-text {
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    font-size: 0.9rem;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: 0.5s;
}

.tech-badge:hover::before {
    left: 100%;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-text h3 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.about-text h3 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(100, 255, 218, 0.3);
    border-radius: 2px;
}

.about-text p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    z-index: -1;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(5px);
    transform: translateZ(0);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.stat-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    bottom: 0;
    left: 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(100, 255, 218, 0) 70%);
    opacity: 0.3;
    top: -10px;
    right: -10px;
    z-index: -1;
}

.counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter::after {
    content: '+';
    font-size: 1.8rem;
    position: absolute;
    top: 5px;
    right: -20px;
    color: var(--accent-color);
    font-weight: 700;
    -webkit-text-fill-color: var(--accent-color);
}

.stat-title {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.stat-title::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background-color: rgba(10, 25, 47, 0.1);
    bottom: -5px;
    left: 30%;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.advantage {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(100, 255, 218, 0.15);
    border-color: rgba(100, 255, 218, 0.3);
}

.advantage:hover::before {
    height: 100%;
}

.advantage i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.advantage:hover i {
    transform: scale(1.1) rotate(10deg);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.advantage h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.advantage h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.advantage:hover h4::after {
    width: 50%;
}

.advantage p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 服务内容样式 - 增强科技感 */
.services {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.services .section-header h2 {
    color: #fff;
}

.services .section-header p {
    color: var(--text-light);
}

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

.service-card {
    background-color: rgba(23, 42, 69, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(100, 255, 218, 0.3);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 产品展示样式 - 科技风格 */
.product-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product {
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
}

.product:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23, 42, 69, 0), rgba(23, 42, 69, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product:hover .product-img::before {
    opacity: 1;
}

.tech-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.product-info {
    padding: 25px 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.product-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.product:hover .product-info h3::after {
    width: 100%;
}

.product-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-features span {
    padding: 3px 12px;
    background-color: rgba(10, 25, 47, 0.05);
    color: var(--text-color);
    font-size: 0.8rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-features span:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-2px);
}

/* 成功案例样式 - 科技风格 */
.cases {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cases .section-header h2 {
    color: #fff;
}

.cases .section-header p {
    color: var(--text-light);
}

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

.case-card {
    background-color: rgba(23, 42, 69, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.case-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.case-card:nth-child(1) .case-img {
    background: linear-gradient(45deg, #172a45, #303C55);
}

.case-card:nth-child(1) .case-img::before {
    content: '\f233';
    font-family: 'bootstrap-icons';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    text-shadow: 0 0 20px var(--secondary-color);
}

.case-card:nth-child(2) .case-img {
    background: linear-gradient(45deg, #172a45, #303C55);
}

.case-card:nth-child(2) .case-img::before {
    content: '\f3d1';
    font-family: 'bootstrap-icons';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    text-shadow: 0 0 20px var(--secondary-color);
}

.case-card:nth-child(3) .case-img {
    background: linear-gradient(45deg, #172a45, #303C55);
}

.case-card:nth-child(3) .case-img::before {
    content: '\f471';
    font-family: 'bootstrap-icons';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    text-shadow: 0 0 20px var(--secondary-color);
}

/* 添加科技感网格线 */
.case-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.case-content {
    padding: 30px;
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.case-category {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.case-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.case-features span {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: var(--transition);
}

.case-features span:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

.case-view-more {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.case-view-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.case-view-more:hover {
    color: #fff;
}

.case-view-more:hover i {
    transform: translateX(5px);
}

/* 联系我们样式 - 科技风格 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* 页脚样式 - 科技风格 */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .advantages {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.95);
        transition: 0.3s;
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }

    .nav ul li {
        margin: 10px 0;
    }

    .services-grid,
    .product-slider,
    .cases-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .case-img {
        height: 250px;
    }
    
    .case-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .advantages {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* 添加扫描线效果 */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100%);
        opacity: 0.2;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 15px var(--secondary-color);
    pointer-events: none;
    animation: scanline 8s linear infinite;
    z-index: 9999;
    opacity: 0.7;
}

/* 添加科技感滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--secondary-color));
}

/* 科技感装饰元素 */
.tech-decoration-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    top: 15px;
    left: 15px;
    opacity: 0.7;
    transition: all 0.5s ease;
    z-index: 3;
}

.product:hover .tech-decoration-corner,
.case-card:hover .tech-decoration-corner,
.about-img:hover .tech-decoration-corner {
    transform: scale(1.2) translate(-5px, -5px);
    opacity: 1;
    border-color: var(--secondary-color);
    box-shadow: -2px -2px 10px rgba(100, 255, 218, 0.3);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.2) 0%, rgba(100, 255, 218, 0.1) 100%);
    opacity: 0.1;
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product:hover .tech-overlay,
.case-card:hover .tech-overlay,
.about-img:hover .tech-overlay {
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.3) 0%, rgba(100, 255, 218, 0.2) 100%);
}

.particle {
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* 图片悬停放大动画效果 */
.product-img img,
.case-img img,
.about-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.product-img:hover img,
.case-img:hover img,
.about-img:hover img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

@keyframes pulseGrid {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

/* 图片发光边框效果 */
/* .tech-theme .about-img::before,
.tech-theme .product::before,
.tech-theme .case-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 6px;
    background: linear-gradient(45deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.tech-theme .about-img:hover::before,
.tech-theme .product:hover::before,
.tech-theme .case-card:hover::before {
    opacity: 0.5;
    animation: borderGlow 1.5s linear infinite;
} */

@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

/* 图片悬停3D效果 */
.tech-theme .product-img,
.tech-theme .case-img,
.tech-theme .about-img {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.tech-theme .product-img .tech-image-wrapper,
.tech-theme .case-img .tech-image-wrapper,
.tech-theme .about-img .tech-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.tech-theme .product-img:hover .tech-image-wrapper,
.tech-theme .case-img:hover .tech-image-wrapper,
.tech-theme .about-img:hover .tech-image-wrapper {
    transform: translateZ(20px);
}

/* 波纹点击效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.8s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* 扫描线效果 */
.tech-theme .product-img::after,
.tech-theme .case-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    opacity: 0;
    z-index: 3;
}

.tech-theme .product-img:hover::after,
.tech-theme .case-img:hover::after {
    opacity: 1;
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0%;
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0.7;
    }
}

/* 图片点击放大效果 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
    background-color: rgba(23, 42, 69, 0.9);
}

.modal-overlay.active .modal-image-container {
    transform: scale(1);
    opacity: 1;
}

.modal-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(10, 25, 47, 0.8);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

.modal-close:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: rotate(90deg);
}

.modal-close::before, 
.modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}

.modal-close::before {
    transform: rotate(45deg);
}

.modal-close::after {
    transform: rotate(-45deg);
}

.modal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(10, 25, 47, 0.8);
    color: #fff;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(100, 255, 218, 0.2);
}

.modal-caption h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.modal-caption p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-overlay.active .modal-caption {
    transform: translateY(0);
}

/* 扫描线动画 */
.modal-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    animation: modalScanLine 2s linear infinite;
    z-index: 10;
    box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes modalScanLine {
    0% {
        top: 0;
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0.5;
    }
}

.modal-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 9;
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: var(--border-radius);
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    pointer-events: none;
}

.modal-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 11;
}

.modal-prev,
.modal-next {
    width: 40px;
    height: 40px;
    background-color: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.modal-prev::before,
.modal-next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
}

.modal-prev::before {
    transform: rotate(-45deg);
    margin-right: -4px;
}

.modal-next::before {
    transform: rotate(135deg);
    margin-left: -4px;
}

.product-img {
    cursor: zoom-in;
    position: relative;
}

.product-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23, 42, 69, 0), rgba(23, 42, 69, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-img::after {
    content: '\f52b';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--secondary-color);
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.product-img:hover::before {
    opacity: 0.7;
}

.product-img:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 产品图片缩略图 */
.modal-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 12;
    padding: 10px;
    transition: transform 0.3s ease;
    transform: translateY(100px);
}

.modal-overlay.active .modal-thumbnails {
    transform: translateY(0);
}

.modal-thumbnail {
    width: 60px;
    height: 40px;
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}

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

.modal-thumbnail.active {
    border-color: var(--secondary-color);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.4);
}

.modal-thumbnail:hover {
    opacity: 1;
}

/* 加载动画 */
.modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s infinite linear;
    z-index: 8;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(10, 25, 47, 0.7);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    backdrop-filter: blur(5px);
    z-index: 10;
}

/* 放大缩小控制 */
.modal-zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 12;
}

.modal-zoom-in,
.modal-zoom-out {
    width: 30px;
    height: 30px;
    background-color: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-zoom-in:hover,
.modal-zoom-out:hover {
    background-color: rgba(100, 255, 218, 0.2);
}

.zoom-icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(10, 25, 47, 0.8);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.zoom-icon i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.product-img:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.zoom-icon:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: scale(1.1) !important;
}

.zoom-icon:hover i {
    transform: scale(1.2);
}

.company-year {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-left: 15px;
    padding: 2px 10px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    vertical-align: middle;
    font-weight: 400;
    position: relative;
    top: -2px;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.1);
    overflow: hidden;
    animation: softPulse 3s infinite ease-in-out;
}

.company-year::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px var(--secondary-color);
}

.company-year::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    animation: shimmerEffect 3s infinite;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 5px rgba(100, 255, 218, 0.1);
    }
    50% {
        box-shadow: 0 0 12px rgba(100, 255, 218, 0.3);
    }
    100% {
        box-shadow: 0 0 5px rgba(100, 255, 218, 0.1);
    }
}

@keyframes shimmerEffect {
    100% {
        left: 100%;
    }
} 