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

body {
    padding-top: 60px;
    font-family: 'Noto Sans SC', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 导航栏样式保持不变 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-container {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto;
}

.nav-links li {
    margin: 0 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
    color: #0c73ba;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0c73ba;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.spacer {
    width: 40px;
}

.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    margin: 0 auto;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artistic-line {
    display: block;
    font-style: italic;
    font-weight: 800;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.6),
        4px 4px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    transform: skew(-5deg);
    font-family: 'Arial Black', 'Noto Sans SC', sans-serif;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0c73ba;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #0c73ba;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .artistic-line {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }
    
    .artistic-line {
        font-size: 1.4rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0c73ba;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #0c73ba;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.content-section {
    padding: 80px 10%;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    color: #0c73ba;
    margin-bottom: 40px;
    position: relative;

}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0c73ba;
    margin: 15px auto;
}

.intro-content {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    text-align: justify;
    line-height: 2;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.intro-image:hover img {
    transform: scale(1.03);
}

.expansion-section {
    background-color: #f9f9f9;
}

.expansion-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.expansion-text {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
    text-align: justify;
    line-height: 2;
}

.expansion-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.expansion-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.expansion-image:hover img {
    transform: scale(1.03);
}

.highlight {
    color: #0c73ba;
    font-weight: 700;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .nav-container {
        justify-content: flex-end;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        transition: left 0.3s;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .spacer {
        display: none;
    }

    .banner {
        height: 50vh;
        min-height: 300px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .intro-content, .expansion-content {
        flex-direction: column;
    }

    .intro-text, .expansion-text {
        padding: 0;
        margin-bottom: 30px;
    }

    .intro-image, .expansion-image {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-section, .expansion-section {
        padding: 50px 5%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 /* Footer Styles */
    .site-footer {
        background-color: #0a2540;
        color: #ffffff;
        padding: 50px 0 0;
        font-family: 'Noto Sans SC', sans-serif;
        line-height: 1.6;
    }
    
    .footer-container {
        margin: 0 auto;
        padding: 0 50px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    /* Adjusted section widths */
    .footer-logo {
        flex: 0 0 180px; /* Fixed width for logo */
    }
    
    .footer-nav {
        flex: 0 0 150px; /* Fixed width for navigation */
    }
    
    .footer-contact {
        flex: 1; /* Takes remaining space */
        min-width: 300px;
        max-width: 600px;
    }
    
    .footer-logo img {
        height: 40px;
        margin-bottom: 15px;
    }
    
    .tagline {
        color: #a8c6f8;
        font-style: italic;
        font-size: 0.95rem;
    }
    
    .footer-section h3 {
        color: #4dabf7;
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-nav ul {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-nav li {
        margin-bottom: 12px;
    }
    
    .footer-nav a {
        color: #e0e0e0;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 0.95rem;
    }
    
    .footer-nav a:hover {
        color: #4dabf7;
    }
    
    .contact-email {
        margin-bottom: 20px;
        color: #a8c6f8;
        font-size: 0.95rem;
    }
    
    .contact-columns {
        display: flex;
        gap: 40px; /* Increased gap between columns */
    }
    
    .contact-col {
        flex: 1;
        min-width: 140px;
    }
    
    .contact-office {
        margin-bottom: 20px;
    }
    
    .contact-office h4 {
        color: #4dabf7;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-office p {
        font-size: 0.9rem;
        color: #d1e3ff;
        margin: 6px 0;
        line-height: 1.5;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px;
        background-color: #071a2f;
        font-size: 0.85rem;
        color: #a8c6f8;
        margin-top: 30px;
    }
    
    @media (max-width: 900px) {
        .footer-logo,
        .footer-nav {
            flex: 0 0 160px; /* Slightly smaller fixed width on medium screens */
        }
        
        .contact-columns {
            gap: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .footer-logo,
        .footer-nav,
        .footer-contact {
            flex: 100%;
            max-width: 100%;
        }
        
        .footer-section:not(:last-child) {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .contact-columns {
            flex-direction: column;
            gap: 15px;
        }
    }
    /*******product.html***********/

.products-banner {
    position: relative;
    width: 100%;
    height: 35vh; /* Lower height than main banner */
    min-height: 250px;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c73ba 0%, #0a2540 100%);
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/1.jpg') center/cover;
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.banner-divider {
    width: 80px;
    height: 3px;
    background: white;
    margin: 15px auto;
    opacity: 0.8;
}

.banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 300;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Service Cards */
.service-card {
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.service-icon-bg {
    flex: 0 0 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(12, 115, 186, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-content {
    padding: 30px;
    flex: 1;
}

.service-content h3 {
    color: #0c73ba;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0c73ba;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
}

.feature-list i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #0c73ba;
    font-size: 1.2rem;
}
    .categories-section {
            margin-top: 60px;
            overflow: hidden;
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
            gap: 10px;
        }

        .category-tab {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            background: #f0f8ff;
            color: #0c73ba;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .category-tab:hover {
            background: #d9ecff;
        }

        .category-tab.active {
            background: #0c73ba;
            color: white;
            box-shadow: 0 4px 8px rgba(12, 115, 186, 0.3);
        }

        .tab-icon {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        .category-content {
            position: relative;
            min-height: 500px;
        }

        .category-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .category-panel.active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .product-item.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .product-image {
            height: 260px;
            overflow: hidden;
        }

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

        .product-info {
            padding: 20px;
        }

        .product-item h4 {
            color: #0c73ba;
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .product-item p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .product-item:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-item:hover .product-image img {
            transform: scale(1.05);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .category-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            .category-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
        }
		.section-intro{
			text-align: center;
			margin-bottom:30px ;
    		line-height: 2;
		}
        .product-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 25px;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .product-item.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .product-item:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-item h4 {
            color: #0c73ba;
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 15px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .category-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            .category-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
            }
            
            .category-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.product-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;

}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-item h4 {
    color: #0c73ba;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-note {
    background: #f0f8ff;
    border-left: 4px solid #0c73ba;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
    }
    
    .service-number {
        height: 60px;
    }
    
    .products-banner {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .products-banner {
        height: 30vh;
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

.product-note {
    background: #f0f8ff;
    border-left: 4px solid #0c73ba;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.product-note i {
    color: #0c73ba;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-card {
        flex-direction: column;
    }
    
    .service-icon-bg {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .products-banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .service-icon-bg {
        flex: 0 0 200px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .products-banner {
        height: 50vh;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .service-icon-bg {
        flex: 0 0 150px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Section Styles */
.story-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-content p {
    margin-bottom: 20px;
}

/* Strengths Section Styles */
.strengths-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.strengths-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strength-category {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.strength-category h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.strength-category ul {
    list-style-type: none;
    padding-left: 0;
}

.strength-category li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}


/* Responsive Design */
@media (max-width: 768px) {
    .story-content,
    .strengths-content {
        padding: 0 20px;
    }
    
    .strength-category {
        margin-bottom: 30px;
    }
}
/******about.html************/
        .stats-section {
            margin: 50px auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2a5caa;
            font-size: 2.2rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            transition: all 1s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #2a5caa;
            margin-bottom: 10px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .stat-value .plus {
            font-size: 1.5rem;
            margin-left: 3px;
        }
        
        .stat-label {
            font-size: 0.7rem;
            color: #555;
            line-height: 1.4;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .stat-icon {
            font-size: 2rem;
            color: #2a5caa;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
            .global-presence {
            margin: 50px auto;
            padding: 20px;
        }
        
.global-presence {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2a5caa;
            font-size: 2.2rem;
        }
        
        .map-container {
            position: relative;
            width: 100%;
            height: 500px;
            background: url('../images/map.png') no-repeat center center;
            background-size: auto;
            margin-bottom: 40px;
        }
        
        .location-marker {
            position: absolute;
            width: 24px;
            height: 24px;
            background: #2a5caa;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
            box-shadow: 0 0 0 4px rgba(42,92,170,0.3);
        }
        
        .location-marker:hover {
            transform: translate(-50%, -50%) scale(1.2);
            z-index: 2;
            background: #e74c3c;
            box-shadow: 0 0 0 4px rgba(231,76,60,0.3);
        }
        
        .location-marker:hover::after {
            background: #e74c3c;
        }
        
        .location-marker::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: #2a5caa;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
        }
        
        .location-info {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            width: 80%;
            max-width: 600px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
            pointer-events: none;
        }
        
        .location-info.active {
            opacity: 1;
        }
        
        .location-info h3 {
            color: #2a5caa;
            margin-top: 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .location-info ul {
            padding-left: 20px;
        }
        
        .location-info li {
            margin-bottom: 8px;
            position: relative;
        }
        
       

        
        @media (max-width: 768px) {
            .map-container {
                height: 400px;
            }
        }
:root {
            --yu-primary: #2563eb;
            --yu-accent: #ea580c;
            --yu-light: #f8fafc;
            --yu-dark: #1e293b;
            --yu-gray: #64748b;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--yu-light);
            color: var(--yu-dark);
            line-height: 1.6;
        }
        
        .yu-advantages {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 1.5rem;
        }
        
        .yu-section-heading {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        
        .yu-section-title {
            color: var(--yu-primary);
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: inline-block;
            background: linear-gradient(90deg, var(--yu-primary), var(--yu-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Two-column layout */
        .yu-columns-container {
            display: flex;
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .yu-services-column {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            border-left: 4px solid var(--yu-primary);
        }
        
        .yu-performance-column {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            border-left: 4px solid var(--yu-accent);
        }
        
        .yu-column-title {
            display: flex;
            align-items: center;
            color: var(--yu-dark);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .yu-column-title i {
            margin-right: 1rem;
            font-size: 1.75rem;
        }
        
        /* Services List */
        .yu-services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .yu-service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed rgba(0,0,0,0.05);
        }
        
        .yu-service-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .yu-service-icon {
            font-size: 1.25rem;
            color: var(--yu-primary);
            background: rgba(37, 99, 235, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .yu-service-content h3 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            color: var(--yu-dark);
        }
        
        .yu-service-content p {
            margin: 0;
            color: var(--yu-gray);
            font-size: 0.95rem;
        }
        
        /* Performance Stats */
        .yu-stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .yu-stat-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed rgba(0,0,0,0.05);
        }
        
        .yu-stat-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .yu-stat-icon {
            font-size: 1.25rem;
            color: var(--yu-accent);
            background: rgba(234, 88, 12, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .yu-stat-value {
            font-weight: 600;
            color: var(--yu-dark);
            font-size: 1.1rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .yu-columns-container {
                flex-direction: column;
            }
            
            .yu-section-title {
                font-size: 1.75rem;
            }
        }
                .story-hero {
            position: relative;
            width: 100%;
            min-height: 600px;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            padding: 4rem 2rem;
        }
        
        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .story-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .story-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .story-content {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            text-align: justify;
        }
        
        .story-content p {
            margin-bottom: 1.5rem;
        }
        
        .highlight-phrase {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .mission-statement {
            font-size: 1.3rem;
            font-style: italic;
            margin-top: 2rem;
            padding: 1.5rem;
            border-left: 3px solid var(--secondary);
            background: rgba(231, 76, 60, 0.1);
        }
        
        .year-marker {
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .story-hero {
                min-height: 500px;
                padding: 2rem 1rem;
            }
            
            .story-title {
                font-size: 2.2rem;
            }
            
            .story-content {
                font-size: 1rem;
            }
        }
        /********contact.html**********/
         .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
            line-height: 1.8;
            text-align: justify;
        }
        .testimonials-container h1 {
            text-align: center;
            margin-bottom: 20px;
        }
        .testimonial {
            margin-bottom: 30px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 20px;
        }
        .testimonial:last-child {
            border-bottom: none;
        }
        .testimonial h2 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        .testimonial p {
            margin-bottom: 10px;
        }
        .testimonial .country-flag {
            font-size: 1.2em;
            margin-right: 5px;
        }