/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 隐藏滚动条但保留滚动功能 */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background-color: #2d3040;
    /* 隐藏滚动条但保留滚动功能 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* 为body添加WebKit浏览器的滚动条隐藏 */
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* 自定义容器的滚动条隐藏类 */
.no-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.container {
    width: 90%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}
.leftShiftIn{
    animation: slideInLeft 1.5s ease-out forwards;
}
.rightShiftIn{
    animation: slideInRight 1.5s ease-out forwards;
}
/* 头部样式 */
header {
    /* background-color: #0f102a; */
    background-color: rgb(0 37 63 / 78%);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: #fff;
    font-weight: 700;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff6b35;
    font-weight: 700;
    text-shadow: 0 0 1px rgba(255, 107, 53, 0.5);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6b35;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.7);
}

/* 菜单按钮样式 */
.menu-button {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 20px;
    transition: all 0.3s ease;
    display: none;
}

.menu-button:hover {
    color: #ff6b35;
}

/* 语言切换样式 */
.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.lang-dropbtn .headerTypeIcon, .lang-dropbtn .headerTypeIconEnglish {
    
    margin-right: 8px;
    background: url(../images/enLogo.png);
    display: inline-block;
    height: 18px;
    min-width: 24px;
    vertical-align: middle;
    width: 24px;
}

.lang-dropbtn .headerTypeIconEnglish {
}


.lang-dropbtn .fa-caret-down {
    margin-left: 5px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: #2d3040;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%; /* Position below the button */
    margin-top: 5px; /* Add some space */
    right: 0;
}

.lang-dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.lang-dropdown-content a:hover {
    background-color: #ff6b35;
}

.lang-dropdown-content .active {
    background-color: #ff6b35;
    color: white;
}

.lang-dropdown-content.show {
    display: block;
}


.lang-switch .headerTypeIcon{
    margin-right: 5px;
    background: url(../images/vbg01.png) -246px -70px;
    display: inline-block;
    height: 18px;
    min-width: 24px;
    vertical-align: middle;
    width: 24px;
}
.lang-switch .headerTypeIconEnglish{
    background: url(../images/enLogo.png);
    background-size: cover; /* 或 contain */
    background-position: center;
    background-repeat: no-repeat;
   
    margin-right: 5px;
    /* background-position: -246px -112px; */
    display: inline-block;
    height: 18px;
    min-width: 24px;
    vertical-align: middle;
    width: 24px;
}
.lang-switch a {
    color: #fff;
    margin: 0 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 3px 8px;
    border-radius: 10px;
}


.lang-switch span {
    color: rgba(255, 255, 255, 0.5);
}







/* 英文版页面中的英文链接 */
.lang-switch .active {
    position: relative;
    padding-left: 10px;
    /* color: #ff6b35 !important */
}


/* 页面右侧导航锚点 */
.page-navigator {
    display: none;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    /* background-color: rgba(15, 16, 42, 0.6); */
    border-radius: 30px;
    padding: 15px 5px;
}

.page-navigator ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.page-navigator li {
    margin: 15px 0;
    position: relative;
}

.page-navigator a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
    line-height: 20px;
    gap: 10px;
}

.page-navigator a .nav-dot {
    /* width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-right: 10px;
    transition: all 0.3s ease; */
    position: relative;
}
.page-navigator a .nav-dot .nav-dot-circle {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;

}
.page-navigator a .nav-dot .nav-dot-circle1 {
    
    width: 4px;
    height: 4px;
    background: #a8a8a8;
    border-radius: 50%;
    float: left;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.page-navigator a .nav-number {
    opacity: 0.5;
    font-size: 18px;
    color: #ffffff00;
    transition: all 0.3s ease;
}

.page-navigator a:hover .nav-dot,
.page-navigator a.active .nav-dot {
    border-color: #ff6b35;
}
.page-navigator a.active .nav-dot .nav-dot-circle1 {
    background: #ff6b35 !important;
}

/* .page-navigator a:hover .nav-number, */
.page-navigator a.active .nav-number {
    opacity: 1;
    color: #ff6b35;
}

.page-navigator a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-navigator a.active {
    background-color: rgba(255, 107, 53, 0.2);
}

/* 英雄区域样式 */
.hero {
    /* height: 100vh; */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: #2d3040;
    /* padding-top: 60px; */
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
} */

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #e68354;
    z-index: 2; /* 确保内容在遮罩层之上 */
    width: 80%;
}

.hero-content h1 {
    font-size: 6rem; /* 42px / 16px = 2.625rem */
    margin-bottom: 1rem;
    color: #e68354;
    font-weight: 700;
    line-height: 1.2;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    margin: 20px;
    min-width: 200px;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-item h2 span {
    font-size: 1.5rem;
    vertical-align: super;
}

.stat-item p {
    font-size: 1.2rem;
    color: #fff;
}

/* 产品和服务部分 */
.products-section {
    /* padding: 100px 0; */
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
    color: #333;
    background-image: url('../images/indexbackground2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.products-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.product-card {
    width: 32%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    background-color: #fff;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-info p {
    font-size: 0.9rem;
    color: #777;
}

/* 各部分内容区域通用样式 */
section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.cases-section {
    background-color: #ffffff;
    color: #000000;
}

.pr-section {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
}

.research-section {
    background-color: #2d3040;
    color: #fff;
}

/* 关于我们区域 */
.about-section {
    background-color: #fff;
    color: #333;
}

/* 联系我们区域 */
.contact-section {
    background-color: #2d3040;
    color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-right: 15px;
}

.contact-item p {
    font-size: 1rem;
    color: #fff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #777;
}

.en-about-content,
.section-content {
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center;
}

.en-about-content p,
.section-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 页脚样式 */
footer {
    background-color: #002540;
    color: #fff;
    padding: 50px 0 30px;
    position: relative;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-logo {
    /* flex: 1; */
    max-width: 300px;
    margin-right: 50px;
}

footer .footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

footer .footer-contact {
    /* flex: 1; */
    /* max-width: 300px; */
    margin-right: 50px;
}

footer .footer-address {
    /* flex: 1; */
    max-width: 400px;
}

footer .footer-qrcode {
    /* flex: 1; */
    max-width: 300px;
    /* text-align: center; */
}

footer .footer-qrcode h3 {
    text-align: center;
    margin-bottom: 15px;
}

footer .qrcode-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .qrcode-item {
    flex: 0 0 48%;
    margin-bottom: 10px;
}

footer .footer-qrcode img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

footer .footer-qrcode p {
    font-size: 12px;
    margin-bottom: 3px;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

footer .footer-email {
    margin-bottom: 10px;
}

footer .footer-email p {
    font-size: 14px;
    margin-bottom: 5px;
}

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 0.9rem;
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #002540;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    footer .container {
        flex-direction: column;
    }
    
    footer .footer-logo,
    footer .footer-contact,
    footer .footer-address,
    footer .footer-qrcode {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

/* 内页通用样式 */
.page-header {
    background-color: #0f102a;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    background-image: url('../images/InfluencerMarketingbackground1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 16, 42, 0.7); /* 深蓝色蒙层，透明度0.7 */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.page-header p {
    font-size: 1.2rem;
    color: #ff6b35;
}

/* PR页面头部样式 */
.pr-page-header {
    background-color: #0f102a;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    background-image: url('../images/newsMediabackground1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.pr-page-header .container {
    position: relative;
    z-index: 2;
}

.pr-page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

/* 专业服务流程样式 */
.cases-content {
    padding: 80px 0;
    background-color: #fff;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

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

.process-item {
    display: flex;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-content {
    flex-grow: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.process-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

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

/* 保留原来的案例展示网格样式 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #2980b9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-item:nth-child(1) .service-number {
    background-color: #3498db;
}

.service-item:nth-child(2) .service-number {
    background-color: #2980b9;
}

.service-item:nth-child(3) .service-number {
    background-color: #1abc9c;
}

.service-item:nth-child(4) .service-number {
    background-color: #3498db;
}

.service-item:nth-child(5) .service-number {
    background-color: #2980b9;
}

.service-item:nth-child(6) .service-number {
    background-color: #1abc9c;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-desc {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

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

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* PR页面样式 */
.pr-content {
    padding: 80px 0;
    background-color: #fff;
    color: #333;
}

.pr-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pr-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.pr-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.service-item {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-right: 20px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.service-info p {
    color: #777;
    line-height: 1.6;
}

/* 研究内容部分样式 */
.research-content {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #333;
}

.research-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.research-intro h2,
.research-areas h2,
.research-reports h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.research-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.area-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.area-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.area-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.report-item {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.report-image {
    width: 40%;
    overflow: hidden;
}

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

.report-info {
    width: 60%;
    padding: 20px;
    color: #333;
}

.report-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.report-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #ff6b35;
}

/* 关于我们页面样式 */
.en-about-content {
    padding: 80px 0;
    background-color: #fff;
    color: #333;
    text-align: left;
}

.about-intro,
.about-vision {
    margin-bottom: 60px;
}

.about-intro h2,
.about-vision h2,
.about-team h2,
.about-contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about-intro p,
.about-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.team-member {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

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

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.member-title {
    font-size: 1rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.member-desc {
    font-size: 0.9rem;
    color: #777;
}

/* 响应式设计 */
@media (max-width: 992px) {
    nav ul li {
        margin-left: 15px;
    }
    
    .stat-item h2 {
        font-size: 3rem;
    }
    
    .page-navigator {
        right: 15px;
    }
    
    .case-grid,
    .pr-services,
    .area-grid,
    .report-list,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .report-item {
        flex-direction: column;
    }
    
    .report-image,
    .report-info {
        width: 100%;
    }
    
    .menu-button {
        display: block;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    nav {
        display: none;
        width: 100%;
        order: 3;
        background-color: #0f102a;
        padding: 10px 0;
    }

    nav.mobile-visible {
        display: block;
        position: absolute;
        top: 65px;
        left: 0;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }
    .lang-switch {
        margin-left: 0;
    }
    .menu-button {
        display: block;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .lang-switch {
        order: 3;
    }


    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        margin: 15px 0;
    }
    
    footer .container {
        flex-direction: column;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .page-navigator {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .who-we-are {
        padding: 30px 20px;
    }
    
    .who-we-are h2 {
        font-size: 2.5rem;
    }
}

/* WHO WE ARE 区块样式 */
.who-we-are-container {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto 30px;
}

.who-we-are-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f102a;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.social-links {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.social-links a {
    color: #333;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.who-we-are-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .who-we-are-container {
        padding: 25px 20px;
    }
    
    .who-we-are-title {
        font-size: 2.2rem;
    }
}

/* 品牌轮播样式 */
.brand-carousel {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    padding: 30px 0;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 auto; /* 水平居中 */
}

.marquee-row {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 20px 0;
    height: 90px; /* 固定高度防止抖动 */
}

.marquee-content {
    display: inline-flex;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    will-change: transform; /* 性能优化 */
    height: 100%;
    align-items: center;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 6px;
    margin: 0 15px;
    height: 80px;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-shrink: 0; /* 防止缩小 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加过渡效果 */
    cursor: pointer; /* 添加指针样式 */
    padding: 10px; /* 内边距减小 */
}

.marquee-item:hover {
    transform: scale(1.05); /* 鼠标悬停时放大 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* 增加阴影效果 */
    z-index: 10; /* 确保悬停项在上层 */
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片比例但填充容器 */
}

/* 为暂停的行添加样式 */
.marquee-row-paused .marquee-content {
    animation-play-state: paused !important;
}

/* 轮播动画 */
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

/* 确保cases-section内容垂直居中 */
.cases-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* 视频展示区域样式 */
.video-gallery {
    margin-top: 40px;
}

.video-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.video-item {
    width: 32%;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9的宽高比 */
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: #000;
}


.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    background-color: #000;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* 确保点击事件穿透到视频 */
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.play-button i {
    font-size: 30px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.video-container:hover .play-button.show-play {
    opacity: 1;
}

/* 媒体查询，适配移动端 */
@media (max-width: 992px) {
    .video-row {
        flex-wrap: wrap;
    }
    
    .video-item {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .video-row {
        flex-direction: column;
    }
    
    .video-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* 社交媒体平台部分样式 */
.social-platforms-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.platforms-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.platform-card {
    flex: 0 0 calc(20% - 30px);
    max-width: calc(20% - 30px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.platform-card:nth-child(1) .platform-icon {
    background-color: #4267B2;
}

.platform-card:nth-child(2) .platform-icon {
    background-color: #000000;
}

.platform-card:nth-child(3) .platform-icon {
    background-color: #1DA1F2;
}

.platform-card:nth-child(4) .platform-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.platform-card:nth-child(5) .platform-icon {
    background-color: #FF0000;
}

.platform-icon svg {
    width: 35px;
    height: 35px;
}

.platform-name {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
    color: #333;
}

.platform-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.platform-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

.learn-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #2980b9;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

/* 响应式设计 */
@media (max-width: 1200px) {
    .platform-card {
        flex: 0 0 calc(33.33% - 30px);
        max-width: calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .platform-card {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .platform-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* 解决方案部分样式 */
.solutions-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 128, 0, 0.03) 0%, rgba(0, 128, 0, 0) 100%);
    z-index: 0;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
}

.solutions-section .section-title {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.4;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.solution-item {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #00c853, #64dd17);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-item:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #00c853;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
}

.solution-icon svg {
    width: 40px;
    height: 40px;
}

.solution-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.solution-desc {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .solutions-section .section-title {
        font-size: 32px;
    }
    
    .solution-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
    }
    
    .solution-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .solution-title {
        font-size: 20px;
    }
}

/* 案例展示网格样式 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.case-image {
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.1);
}

.case-info {
    padding: 20px;
    color: #333;
}

.case-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.case-info p {
    margin-bottom: 15px;
    color: #777;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff6b35;
    color: #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #ff6b35;
}

/* 关于我们页面样式 */
.about-company {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    gap: 50px;
    overflow: hidden;
}

.about-image {
    flex: 1;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    /* animation: slideInLeft 1.5s ease-out forwards; */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    /* animation: slideInRight 1.5s ease-out forwards; */
}

.about-text h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b35;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 992px) {
    .about-company {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
}

/* 左右进场动画效果 */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 团队部分样式 */
.team-section {
    background-color: #002944;
    padding: 80px 0;
    color: #fff;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    color: #ff6b35;
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.team-header h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-header h3 {
    color: #ff6b35;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.team-header h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-info {
    flex: 1;
    padding-right: 20px;
}

.team-item {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.team-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-item:nth-child(1) {
    transition-delay: 0.4s;
}

.team-item:nth-child(2) {
    transition-delay: 0.6s;
}

.team-item:nth-child(3) {
    transition-delay: 0.8s;
}

.team-item:nth-child(4) {
    transition-delay: 1s;
}

.team-item h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.team-item h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b35;
}

.team-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.team-carousel {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transition-delay: 1.2s;
}

.team-carousel.animate {
    opacity: 1;
    transform: translateX(0);
}

.carousel-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

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

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-prev, .carousel-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: #ff6b35;
}

@media (max-width: 992px) {
    .team-content {
        flex-direction: column;
    }
    
    .team-info, .team-carousel {
        width: 100%;
    }
    
    .team-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* 团队标题渐入动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 轮播图入场动画 */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 业务地址和联系信息区域样式 */
.en-business-address {
    padding: 60px 0;
    background-color: #333;
}

.address-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.map-section {
    flex: 1;
}

.address-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.address-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff6b35;
}

.contact-info {
    width: 400px;
    background-color: #ff6b35;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    color: #fff;
}

.contact-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.address-details {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.qr-code {
    display: flex
;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    justify-content: space-around;
}

.qr-code img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .address-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }
}

/* 海外营销困难页面头部样式 */
.page-header.page-header-difficulties {
    background: url('../images/researchPageHeader.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 150px 0 120px;
    text-align: left;
    color: #fff;
}

.page-header.page-header-difficulties:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.difficulties-container {
    position: relative;
    z-index: 10;
}

.difficulties-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.difficulties-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.difficulty-item {
    background: rgba(15, 16, 42, 0.8);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.difficulty-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.difficulty-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.difficulty-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.difficulty-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .difficulties-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .difficulties-list {
        grid-template-columns: 1fr;
    }
    
    .page-header.page-header-difficulties {
        padding: 120px 0 80px;
    }
    
    .difficulties-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* 服务价值部分样式 */
.value-gain-section {
    margin-bottom: 60px;
    padding: 60px 0;
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #0f102a;
}

.value-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b35;
    font-weight: 500;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-number {
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f102a;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .value-title {
        font-size: 28px;
    }
    
    .value-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .value-content h3 {
        font-size: 18px;
    }
}

/* What We Do 部分样式 */
.what-we-do-section {
    padding: 100px 0;
    background: linear-gradient(46deg, #2e2f47 0%, #84889f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(30%, -30%);
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-30%, 30%);
}

.what-we-do-section .section-wrapper {
    position: relative;
    z-index: 2;
}

.what-we-do-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.what-we-do-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
    transform: translateX(-50%);
}

.what-we-do-content {
    max-width: 900px;
    margin: 0 auto;
}

.what-we-do-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.what-we-do-item {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.what-we-do-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.what-we-do-item .item-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    color: #ff6b35;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.what-we-do-item:hover .item-number {
    background: #ff6b35;
    color: #fff;
}

.what-we-do-item .item-content {
    flex: 1;
}

.what-we-do-item .item-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 70px 0;
    }
    
    .what-we-do-section .section-title {
        font-size: 32px;
    }
    
    .what-we-do-item {
        padding: 20px;
    }
    
    .what-we-do-item .item-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 20px;
    }
    
    .what-we-do-item .item-content p {
        font-size: 16px;
    }
} 