/* 自定义样式 - 君优曼霓 */

/* ===== Hero区域 - 软件开发主题 ===== */
.header-one .header-content-area {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%) !important;
    position: relative;
    overflow: hidden;
}

/* 添加动态网格背景 */
.header-one .header-content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    z-index: 1;
}

/* 添加代码风格的装饰元素 */
.header-one .header-content-area::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* 左下角光晕效果 */
.header-one .header-wrapper::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: glow 6s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* 确保文字在背景之上 */
.header-one .header-content {
    position: relative;
    z-index: 10 !important;
}

/* 标题增强效果 */
.header-one .header-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem !important;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .header-one .header-title {
        font-size: 2.5rem !important;
    }
}

/* 描述文字增强 */
.header-one .text-lg {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* 按钮现代化 */
.header-one .header-content-area .primary-btn-outline {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #1e3c72 !important;
    font-weight: 600;
    padding: 12px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-one .header-content-area .primary-btn-outline:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* 右侧图片容器增强 */
.header-one .header-image {
    position: relative;
    z-index: 5;
}

.header-one .header-image .image {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 底部形状优化 */
.header-one .header-shape {
    z-index: 2;
    opacity: 0.9;
}

/* ===== 科技装饰元素 ===== */
.tech-visual-container {
    position: relative;
    min-height: 500px;
}

/* 代码片段样式 */
.tech-element {
    position: absolute;
    animation: float-element 8s ease-in-out infinite;
}

.tech-code-1 {
    top: 10%;
    right: 10%;
    z-index: 8;
}

.code-snippet {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.code-line {
    margin: 5px 0;
    white-space: nowrap;
}

.code-keyword {
    color: #c792ea;
}

.code-var {
    color: #82aaff;
}

.code-func {
    color: #ffcb6b;
}

/* 图标装饰 */
.tech-icon-1, .tech-icon-2, .tech-icon-3, .tech-icon-4 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tech-icon-1 {
    top: 20%;
    left: 5%;
    animation: float-element 6s ease-in-out infinite;
}

.tech-icon-2 {
    top: 60%;
    left: 15%;
    animation: float-element 7s ease-in-out infinite 1s;
}

.tech-icon-3 {
    bottom: 15%;
    right: 20%;
    animation: float-element 8s ease-in-out infinite 2s;
}

.tech-icon-4 {
    top: 50%;
    right: 5%;
    animation: float-element 9s ease-in-out infinite 1.5s;
    animation-name: rotate-element;
}

.tech-element i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* 圆形装饰 */
.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.tech-circle-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    right: 15%;
    animation: rotate 20s linear infinite;
}

.tech-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 10%;
    animation: rotate 15s linear infinite reverse;
}

.tech-circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 20%;
    animation: pulse-border 4s ease-in-out infinite;
}

/* 动画 */
@keyframes float-element {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-20px) translateX(5px);
    }
}

@keyframes rotate-element {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(139, 92, 246, 0.3);
        border-width: 2px;
    }
    50% {
        border-color: rgba(139, 92, 246, 0.8);
        border-width: 3px;
    }
}

/* 修复导航栏右对齐闪烁问题 */
@media only screen and (min-width: 1200px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 0 !important;
  }
}

/* 防止导航栏布局跳动 */
.navbar-area.navbar-nine .navbar .navbar-collapse {
  transition: none !important;
}

.navbar-area.navbar-nine .navbar .navbar-nav {
  transition: none !important;
}

/* 导航栏激活状态增强 */
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    font-weight: 600 !important;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}

/* 团队成员卡片样式 */
.team-members-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30,64,175,0.15);
}

.team-member-photo {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,64,175,0.9) 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-overlay {
    transform: translateY(0);
}

.member-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: #1E40AF;
    color: white;
    transform: scale(1.1);
}

.team-member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.member-position {
    color: #1E40AF;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 15px;
}

.skill-tag {
    background: #f0f9f5;
    color: #1E40AF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.member-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.member-stat {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1E40AF;
}

.stat-label {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

/* 团队领导层特殊样式 */
.leadership-card {
    background: linear-gradient(135deg, #1E40AF 0%, #1e3a8a 100%);
    color: white;
}

.leadership-card .member-name,
.leadership-card .member-bio {
    color: white;
}

.leadership-card .member-position {
    color: #c3fcd8;
}

.leadership-card .skill-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* 服务详情页背景 */
.service-detail-area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.service-detail-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(30,64,175,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.service-detail-area > .container {
    position: relative;
    z-index: 1;
}

/* 项目案例图片样式 */
.project-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-showcase img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-showcase:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30,64,175,0) 0%, rgba(30,64,175,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-showcase:hover .project-overlay {
    opacity: 1;
}

.project-overlay h5 {
    color: white;
    margin: 0;
    font-weight: 600;
}

/* 功能卡片美化 */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30,64,175,0.1);
    border-color: #1E40AF;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E40AF 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

/* Hero区域背景 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

/* 案例展示网格 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.case-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.case-content {
    padding: 25px;
}

.case-content h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 20px;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.case-tag {
    background: #f0f9f5;
    color: #1E40AF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* 统计数据区域 */
.stats-section {
    background: linear-gradient(135deg, #1E40AF 0%, #1e3a8a 100%);
    padding: 60px 0;
    color: white;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #c3fcd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: #666;
    opacity: 1;
}

/* 首页统计区域的标签使用白色 */
.stats-section .stat-label {
    color: #fff;
}

/* 服务卡片图片覆盖 */
.service-card-with-image {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    transition: all 0.3s ease;
}

.service-card-with-image:hover::before {
    background: linear-gradient(180deg, rgba(30,64,175,0.3) 0%, rgba(30,64,175,0.9) 100%);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-card-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card-with-image {
        height: 300px;
    }
}

/* 图标列表样式 */
.list-unstyled li {
    padding: 8px 0;
    color: #666;
}

.list-unstyled li i {
    color: #1E40AF;
    margin-right: 10px;
    font-size: 18px;
}

/* 按钮悬停效果 */
.btn-outline-primary {
    border-color: #1E40AF;
    color: #1E40AF;
}

.btn-outline-primary:hover {
    background-color: #1E40AF;
    border-color: #1E40AF;
    color: white;
}

/* 卡片阴影效果 */
.card {
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 合作伙伴区域美化 */
.overseas-partners {
    background: #f8f9fa;
    padding: 80px 0;
}

/* 客户案例无限滚动 */
.partners-infinite-scroll {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scroll-infinite 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 客户案例4等分网格布局 */
.partners-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* 横向滚动容器 */
.partners-scroll-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.partners-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    flex-shrink: 0;
}

.partner-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

.partner-logo {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.partner-info h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.app-name {
    color: #1E40AF;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.country {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.partner-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-visit {
    background: #1E40AF;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-visit:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.btn-google {
    background: #4285f4;
}

.btn-google:hover {
    background: #357ae8;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1E40AF 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon i {
    font-size: 36px;
    color: white;
}

.solution-card h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .partners-infinite-scroll {
        margin-top: 30px;
    }

    .partners-track {
        gap: 20px;
        animation: scroll-infinite 20s linear infinite;
    }

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

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

    .partners-scroll-container {
        gap: 20px;
        padding: 10px 0;
    }

    .partner-card {
        padding: 20px 15px;
        min-width: 220px;
    }

    .partner-logo {
        margin: 0 auto 15px;
    }

    .partner-info h3 {
        font-size: 14px;
    }

    .app-name {
        font-size: 12px;
    }

    .country {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .partners-grid-container {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-width: 200px;
    }

    .partners-track {
        gap: 15px;
    }
}

/* 修正轮播图高度和控制按钮位置 */
.slider-area.slider-two .carousel {
    height: 350px !important;
    width: 45% !important;
    right: 5% !important;
}

.slider-area.slider-two .slider-content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area.slider-two .carousel {
        height: 350px !important;
        width: 100% !important;
        right: 0 !important;
    }

    .slider-area.slider-two .slider-content {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 767px) {
    .slider-area.slider-two .carousel {
        height: 250px !important;
        width: 100% !important;
        right: 0 !important;
    }

    .slider-area.slider-two .slider-content {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* 修正左右控制按钮位置 */
.slider-area.slider-two .carousel .carousel-control-prev {
    top: 50% !important;
    bottom: auto !important;
    left: 20px !important;
    right: auto !important;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slider-area.slider-two .carousel .carousel-control-next {
    top: 50% !important;
    bottom: auto !important;
    left: auto !important;
    right: 20px !important;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slider-area.slider-two .carousel .carousel-control-prev:hover,
.slider-area.slider-two .carousel .carousel-control-next:hover {
    background: rgba(30, 64, 175, 0.9) !important;
}

.slider-area.slider-two .carousel .carousel-control-prev i,
.slider-area.slider-two .carousel .carousel-control-next i {
    font-size: 24px !important;
}

/* 修正指示器位置 - 改为底部水平排列 */
.slider-area.slider-two .carousel .carousel-indicators {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    top: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.slider-area.slider-two .carousel .carousel-indicators li {
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
}

.slider-area.slider-two .carousel .carousel-indicators li.active {
    width: 30px !important;
    height: 10px !important;
}

/* 移除列表默认样式 */
ul.info,
ul.social,
ul.slider-btn {
    list-style: none;
    padding-left: 0;
}

/* 完全移除body的默认边距，确保导航栏贴顶 */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* 确保导航栏紧贴顶部，没有任何间隙 */
.navbar-area.navbar-nine {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    z-index: 999 !important;
}

/* 首页header section - 留出导航栏空间 */
section#about-us.header-area.header-one {
    margin-top: 76px !important;
    padding-top: 0 !important;
}

/* 其他页面第一个section - 留出导航栏空间 + 额外间距 */
section.service-detail-area,
section.team-members-section,
section.page-header,
section.card-area,
section[style*="margin-top"] {
    margin-top: 96px !important;  /* 76px导航栏高度 + 20px间距 */
}

/* 如果是首页的其他section，不需要那么大的margin */
#about-us ~ section {
    margin-top: 0 !important;
}


/* 服务卡片 "了解更多→" 链接样式 */
.service-learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #1E40AF;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1E40AF;
    transition: width 0.3s ease;
}

.service-learn-more:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.service-learn-more:hover::after {
    width: 100%;
}
