/* Business Orientation Page Styles */

/* Business Orientation Main Section */
.business-orientation-section {
    padding: 100px 0 80px;
    background-color: #f8f9fa;
}

.business-orientation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
.hero-background{
    background-image: url('./assets/Group_3 (8).png');
}
.main-title-section {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    position: relative;
    white-space: nowrap;
}

.title-solid {
    color: #2c3e50;
    font-weight: 700;
    white-space: nowrap;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #c8860d;
    font-weight: 700;
    opacity: 0.7;
    white-space: nowrap;
}

.content-row {
    display: block;
    margin-top: 60px;
    text-align: center;
}

.text-content {
    margin-bottom: 40px;
}

.orientation-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    margin: 0 auto 40px;
}

.image-content {
    text-align: center;
    width: 100%;
}

.orientation-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.orientation-image:hover {
    transform: translateY(-5px);
}

/* Market Positioning Section */
.market-positioning-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.positioning-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.positioning-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.positioning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.positioning-item {
    border-radius: 0;
    overflow: hidden;
}

.positioning-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.positioning-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.positioning-item:hover .positioning-img {
    transform: scale(1.05);
}

.positioning-content {
    padding: 35px 30px;
}

.positioning-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.highlight-text {
    color: #e67e22;
    font-weight: 600;
    font-size: 1rem;
}

.regular-text {
    color: #666;
    font-weight: 400;
}


/* Business Goals Section */
.business-goals-section {
    padding: 100px 0;
    background-color: white;
}

.goals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: left; /* 确保容器内容左对齐 */
}

.goals-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 2px;
    margin-left: 0; /* 确保没有左边距 */
    padding-left: 0; /* 确保没有左内边距 */
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.goal-item {
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-image {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    overflow: hidden;
}

.goal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.goal-item:hover .goal-img {
    transform: scale(1.05);
}

.goal-content {
    padding: 0 10px;
}

.goal-title {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.goal-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin: 0;
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 100px 0;
    background-color: #edebf0;
}

.value-proposition-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.value-prop-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.value-prop-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: left;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.value-prop-item {
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
}

.value-prop-item:hover {
    transform: translateY(-5px);
}

.value-prop-image {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.value-prop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-prop-item:hover .value-prop-img {
    transform: scale(1.05);
}

.value-prop-content {
    padding: 0 10px;
    text-align: left;
}

.value-prop-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-prop-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Global Strategy Section */
.global-strategy-section {
    padding: 100px 0;
    background-color: white;
}

.global-strategy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.global-strategy-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.global-strategy-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.global-strategy-content {
    margin-bottom: 60px;
}

.global-strategy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin-bottom: 25px;
    max-width: 1200px;
}

.global-strategy-image {
    width: 100%;
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.global-strategy-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.global-strategy-image:hover .global-strategy-img {
    transform: scale(1.02);
}

/* Business Conclusion Section - Top Part */
.business-conclusion-section-top {
    position: relative;
    padding: 80px 0 60px;
    background-color: #2c4a52;
    color: white;
    overflow: hidden;
}

.conclusion-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f252d;
    background-size: cover;
    background-position: center;
}

/* Business Conclusion Section - Bottom Part */
.business-conclusion-section-bottom {
    position: relative;
    padding: 60px 0 120px;
    background-color: #2c4a52;
    color: white;
    overflow: hidden;
}

.conclusion-background-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:url('./assets/image_12 (1).png');
    background-position: center;
}

.conclusion-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.conclusion-text.primary {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.conclusion-text.secondary {
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.conclusion-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.conclusion-final {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 1.5px;
        gap: 25px;
    }
    
    
    .positioning-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .positioning-title {
        font-size: 2.4rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .goals-title {
        font-size: 2.4rem;
        text-align: left; /* 确保在平板尺寸下也左对齐 */
    }
    
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .value-prop-title {
        font-size: 2.4rem;
    }
    
    .value-prop-subtitle {
        font-size: 1.1rem;
    }
    
    .global-strategy-title {
        font-size: 2.4rem;
    }
    
    .global-strategy-subtitle {
        font-size: 1.1rem;
    }
    
    .conclusion-highlight {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .conclusion-text.primary {
        font-size: 1.1rem;
    }
    
    .conclusion-text.secondary {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .business-orientation-section {
        padding: 80px 0 60px;
    }
    
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .title-solid,
    .title-outline {
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }
    
    .orientation-text {
        font-size: 1.1rem;
    }
    
    .market-positioning-section {
        padding: 80px 0;
    }
    
    .positioning-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .positioning-grid {
        gap: 30px;
    }
    
    .positioning-image {
        height: 240px;
    }
    
    .positioning-content {
        padding: 25px 20px;
    }
    
    .business-goals-section {
        padding: 80px 0;
    }
    
    .goals-title {
        font-size: 2rem;
        margin-bottom: 40px;
        text-align: left; /* 确保在移动端也左对齐 */
    }
    
    .goals-grid {
        gap: 40px;
    }
    
    .goal-image {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .value-proposition-section {
        padding: 80px 0;
    }
    
    .value-prop-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .value-prop-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .value-prop-grid {
        gap: 40px;
    }
    
    .value-prop-image {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .global-strategy-section {
        padding: 80px 0;
    }
    
    .global-strategy-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .global-strategy-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .global-strategy-text {
        font-size: 0.95rem;
    }
    
    .global-strategy-image {
        margin-top: 30px;
    }
    
    .business-conclusion-section-top {
        padding: 60px 0 40px;
    }
    
    .business-conclusion-section-bottom {
        padding: 40px 0 80px;
    }
    
    .conclusion-background-bottom {
        background-attachment: scroll;
    }
    
    .conclusion-highlight {
        font-size: 1.6rem;
        margin-bottom: 30px;
        letter-spacing: 0.8px;
    }
    
    .conclusion-text.primary {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .conclusion-text.secondary {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .conclusion-final {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .business-orientation-container,
    .positioning-container,
    .goals-container,
    .value-proposition-container,
    .global-strategy-container,
    .conclusion-content {
        padding: 0 20px;
    }
    
    .main-title {
        font-size: 1.4rem;
        gap: 10px;
        flex-direction: column;
        flex-wrap: wrap;
        line-height: 1.2;
    }
    
    .title-solid,
    .title-outline {
        font-size: 1.4rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }
    
    .orientation-text {
        font-size: 1rem;
    }
    
    .positioning-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .positioning-content {
        padding: 20px 15px;
    }
    
    .positioning-text {
        font-size: 0.95rem;
    }
    
    .goals-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        text-align: left; /* 确保在小屏幕也左对齐 */
    }
    
    .goal-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .goal-title {
        font-size: 1.1rem;
    }
    
    .goal-description {
        font-size: 0.9rem;
    }
    
    .value-prop-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .value-prop-subtitle {
        font-size: 0.95rem;
    }
    
    .value-prop-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .value-prop-item-title {
        font-size: 1.1rem;
    }
    
    .value-prop-description {
        font-size: 0.9rem;
    }
    
    .global-strategy-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .global-strategy-subtitle {
        font-size: 0.95rem;
    }
    
    .global-strategy-text {
        font-size: 0.9rem;
    }
    
    .global-strategy-image {
        margin-top: 20px;
    }
    
    .business-conclusion-section-top {
        padding: 50px 0 30px;
    }
    
    .business-conclusion-section-bottom {
        padding: 30px 0 60px;
    }
    
    .conclusion-highlight {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
    }
    
    .conclusion-text.primary {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .conclusion-text.secondary {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .conclusion-final {
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .main-title {
        font-size: 1.2rem;
        gap: 8px;
        letter-spacing: 0.5px;
        flex-direction: column;
    }
    
    .title-solid,
    .title-outline {
        font-size: 1.2rem;
        white-space: normal;
        word-break: break-word;
    }
    
    .conclusion-highlight {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .conclusion-text.primary,
    .conclusion-text.secondary {
        font-size: 0.85rem;
    }
    
    .conclusion-final {
        font-size: 0.95rem;
    }
    
    .business-conclusion-section-top {
        padding: 40px 0 25px;
    }
    
    .business-conclusion-section-bottom {
        padding: 25px 0 50px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-item {
    animation: fadeInUp 0.8s ease-out;
}

.feature-item {
    animation: fadeInUp 1s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}
