.hero-section {
    /* background: linear-gradient(135deg, #093e5d 0%, #093e5d 100%); */
    background-color: rgba(15, 23, 42, 0.95);;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 90px 0 90px;

}

@keyframes backgroundFlow {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 100%;
        opacity: 0.6;
    }

    50% {
        background-position: 100% 50%, 0% 100%, 0% 0%;
        opacity: 0.8;
    }

    100% {
        background-position: 50% 100%, 50% 50%, 100% 0%;
        opacity: 0.6;
    }
}


.hero-section .floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.hero-section .particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.hero-section .particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.hero-section .particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.hero-section .particle:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.hero-section .particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.hero-section .particle:nth-child(7) {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.hero-section .particle:nth-child(8) {
    left: 80%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.hero-section .particle:nth-child(9) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.subtitle-line {
    display: block;
    margin-bottom: 6px;
}

.hero-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.primary-service {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 20px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.primary-service:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.service-tags {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tag-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-service {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 16px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    align-self: flex-start;
     cursor: pointer; 
     border: none 0; 
     margin-top: -30px;
}

.contact-label {
    font-size: 18px;
    opacity: 0.9;
}

.contact-hours {
    font-size: 22px;
    font-weight: 700;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    width: 90%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.hero-img-1 {
    top: 0;
    right: 0;
    transform: rotate(-8deg);
    z-index: 3;
}

.hero-img-2 {
    top: 60px;
    right: 40px;
    transform: rotate(4deg);
    z-index: 2;
}

.hero-img-3 {
    top: 120px;
    right: 80px;
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


.features-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.features-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}


.features-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    background: #093e5d;
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 12px 40px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.4);
}

.feature-item>div {
    background: white;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-badge {
    color: #093e5d;
    font-size: 24px;
    font-weight: 700;
    min-width: 220px;
    padding-right: 40px;
    border-right: 3px solid #e8f0fe;
    position: relative;
}

.feature-badge::after {
    content: '';
    position: absolute;
    right: -1.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(to bottom, #093e5d, #093e5d);
    border-radius: 2px;
}

.feature-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    flex: 1;
}


.stats-content {
    text-align: center;
}

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

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 48px 24px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #093e5d, #093e5d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.2);
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: #093e5d;
    margin-bottom: 16px;
    line-height: 1;
    background: linear-gradient(135deg, #093e5d, #093e5d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.stats-description {
    background: linear-gradient(135deg, #e8f0fe 0%, #f3f4f6 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(26, 115, 232, 0.1);
}

.stats-description p {
    font-size: 20px;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.header-accent {
    width: 6px;
    height: 48px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-icon {
    margin-left: 16px;
}

.header-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.company-name {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 60px 0px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333, #e3f2fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-intro {
    margin-bottom: 80px;
}

.intro-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.company-stat {
    text-align: center;
    position: relative;
}

.stat-circle {
    position: relative;
    margin-bottom: 24px;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.circle-number {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.circle-number:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.circle-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}


.business-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 115, 232, 0.05) 0%, transparent 50%);
}

.business-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.business-highlight {
    background: linear-gradient(135deg, #093e5d 0%, #093e5d 100%);
    color: white;
    padding: 60px 48px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.business-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.business-highlight h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.business-features,
.business-tags {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.business-features:hover,
.business-tags:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
}



.features-title,
.tags-title {
    font-size: 28px;
    color: #093e5d;
    font-weight: 700;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.features-list {
    list-style: none;
}

.feature-point {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-point::before {
    content: '鉁�';
    position: absolute;
    left: 0;
    color: #f78106;
    font-weight: 800;
    font-size: 18px;
    top: 2px;
}

.feature-point.highlight {
    color: #f78106;
    font-weight: 600;
}

.feature-point.highlight::before {
    content: '猸�';
    color: #f78106;
}

.feature-point:hover {
    transform: translateX(8px);
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.business-tag {
    background: #e8f0fe;
    color: #093e5d;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(26, 115, 232, 0.2);
}

.business-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}


.tags-grid2 {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; */
    margin-top: 30px;
}

.business-tag2 {
    display: inline-block;
    color: #fff;
    padding: 8px 10px;
    border-radius: 25px;
    font-size: 16px;
    margin-bottom: 15px;
    margin-right: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.business-tag2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}





.business-tag.primary {
    background: #093e5d;
    color: white;
    border-color: #093e5d;
}

.business-tag.primary:hover {
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.5);
}

.service-systems {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.system-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #093e5d, #093e5d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.system-card:hover::before {
    transform: scaleX(1);
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
}

.system-title {
    color: #093e5d;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}



.banner_g {
    border: 2px solid rgba(255, 255, 255, .3);
    border-top: 0;
    padding: 50px 40px 70px;
    position: relative;
}

.banner_g span {
    display: inline-block;
    margin-right: 20px;
    line-height: 50px;
    font-size: 22px;
    color: #fff;
}

.b_1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    width: 30px;
}

.b_2 {
    position: absolute;
    right: 0;
    top: 0;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    width: 30px;
}

.banner_g .feature-point {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.banner_g .feature-point::before {
    content: '√';
    position: absolute;
    left: 0;
    color: #f78106;
    font-weight: 800;
    font-size: 16px;
    top: 2px;
}


.banner_img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -100px;
    display: block;
    opacity: .1;
    width: 90%;
    margin: 0 auto;
    -webkit-mask: -webkit-linear-gradient(left, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}



.company-section {
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); */
}

.company-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.header-accent {
    width: 6px;
    height: 48px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-icon {
    margin-left: 16px;
}

.header-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.company-name {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 60px 0px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333, #e3f2fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-intro {
    margin-bottom: 80px;
}

.intro-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.company-stat {
    text-align: center;
    position: relative;
}

.stat-circle {
    position: relative;
    margin-bottom: 24px;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.circle-number {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.circle-number:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.circle-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
    font-weight: 500;
}


.business-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 115, 232, 0.05) 0%, transparent 50%);
}

.business-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.business-highlight {
    background: linear-gradient(135deg, #093e5d 0%, #093e5d 100%);
    color: white;
    padding: 60px 48px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.business-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.business-highlight h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.business-features,
.business-tags {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.business-features:hover,
.business-tags:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
}