/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #0066cc;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.language-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-link:hover,
.language-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.language-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Carousel Section */
.hero-carousel {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-image img {
    max-width: 50%;
    max-height: 50%;
    opacity: 0.3;
    filter: brightness(1.2);
}

.carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.8) 0%, rgba(0, 102, 204, 0.4) 60%, transparent 100%);
    padding: 60px 0;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0066cc;
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

.indicator:hover {
    transform: scale(1.2);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
    }
    
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem;
    }
    
    .carousel-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-content {
        padding: 30px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.philosophy h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.philosophy p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}

.philosophy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

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

.feature p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Company Stats Section */
.our-products {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(102, 126, 234, 0.85) 50%, rgba(118, 75, 162, 0.9) 100%),
        url('/Templates/cn2025/images/dental_innovation.svg') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.our-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Templates/cn2025/images/new_product_launch.svg') center/contain no-repeat;
    opacity: 0.15;
    z-index: 1;
    animation: floatBackground 8s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.2;
    }
}

.our-products .container {
    position: relative;
    z-index: 2;
}

.our-products .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-products h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ffffff, #e3f2fd, #ffffff, #bbdefb);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.our-products .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.product-item:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.product-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 102, 204, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.product-item.animate-in {
    animation: productPulse 2s ease-in-out;
}

@keyframes productPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 102, 204, 0);
    }
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.product-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.product-item:hover .product-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.product-item:hover .product-icon::before {
    opacity: 1;
    transform: scale(1);
}

.product-icon img {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-item:hover .product-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.product-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.product-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white;
}

.product-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.product-link:hover {
    border-bottom-color: white;
    opacity: 0.8;
}

.products-cta {
    text-align: center;
}

.products-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: white;
    color: #007bff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.products-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.products-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.products-cta .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 102, 204, 0.4);
    color: #0066cc;
}

.products-cta .btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Latest News Section */
.latest-news {
    padding: 80px 0;
    background: white;
}

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

.latest-news h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.view-all-btn {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #0056b3;
}

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

.news-preview {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-preview:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.news-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* Customer Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 4rem;
    color: #007bff;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background: white;
    color: #007bff;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: brightness(1.1);
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background-color: white;
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.industry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.industry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.industry-content {
    padding: 30px;
}

.industry-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

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

.industry-link {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.industry-link:hover {
    color: white;
    background: linear-gradient(135deg, #0066cc, #764ba2);
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.industry-link::after {
    content: '';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.industry-link:hover::after {
    transform: translateX(4px);
}

/* Product Detail Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #004499;
}

.breadcrumb-separator {
    color: #6c757d;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 500;
}

.product-detail {
    padding: 3rem 0;
    background: #fff;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 2rem;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #0066cc;
    transform: translateY(-2px);
}

.product-info-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-code {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.product-description,
.product-specifications {
    margin-bottom: 2rem;
}

.product-description h3,
.product-specifications h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.product-description p {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.spec-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #dee2e6;
}

.spec-table td:first-child {
    font-weight: 600;
    color: #495057;
    background: #e9ecef;
    width: 30%;
}

.spec-table td:last-child {
    color: #6c757d;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Product Detail Page Button Styles */
.product-actions .btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    border-color: #0066cc;
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #004499, #003366);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.product-actions .btn-secondary {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.product-actions .btn-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.product-features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
}

.related-products {
    padding: 4rem 0;
    background: white;
}

.related-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .product-info-detail h1 {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.contact-info p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Download Center Styles */
.download-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

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

.download-search {
    padding: 30px 0;
    background: white;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #0066cc;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 10px;
}

.downloads-grid {
    padding: 50px 0;
}

.download-section {
    margin-bottom: 50px;
}

.download-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
}

.downloads-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.download-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.download-icon {
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

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

.download-info p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.download-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
}

.download-meta span {
    padding: 3px 8px;
    border-radius: 12px;
    background: #f8f9fa;
    color: #6c757d;
}

.file-type {
    background: #e3f2fd !important;
    color: #1976d2 !important;
}

.download-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.download-btn:hover {
    background: #0052a3;
}

.download-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.download-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.download-stats h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #0066cc;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0052a3;
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.contact-info-grid {
    display: grid;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    margin-bottom: 20px;
    color: #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder {
    position: relative;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
}

.map-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.map-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 500;
}

.map-link:hover {
    text-decoration: underline;
}

.global-offices {
    padding: 60px 0;
}

.global-offices h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

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

.office-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.office-flag {
    margin-bottom: 20px;
}

.office-flag img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.office-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.office-info p {
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: left;
}

.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .philosophy-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .language-switcher {
        margin-left: 10px;
        gap: 6px;
    }
    
    .language-link {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .philosophy-features {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .downloads-row,
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .download-meta {
        justify-content: center;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-overlay {
        padding: 20px 20px 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .philosophy h2,
    .industries h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.page-header {
    margin-top: 80px;
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 68, 153, 0.85) 100%),
        url('/Templates/cn2025/images/company_building.svg') center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Templates/cn2025/images/partnership.svg') center/contain no-repeat;
    opacity: 0.1;
    z-index: 1;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.company-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 30px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.mission, .vision, .values {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover, .values:hover {
    transform: translateY(-5px);
}

.mission .icon, .vision .icon, .values .icon {
    margin-bottom: 30px;
}

.mission h3, .vision h3, .values h3 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.mission p, .vision p, .values p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.history-section {
    padding: 80px 0;
    background: white;
}

.history-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 60px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0066cc;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    background: #0066cc;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-left: 30px;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 60px;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.team-member .position {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.certifications {
    padding: 80px 0;
    background: white;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 60px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.cert-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.cert-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.cert-item h4 {
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 10px;
    font-weight: 600;
}

.cert-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* News Page Mobile Responsive */
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Our Products Responsive - Tablet */
    .our-products {
        padding: 60px 0;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .product-item {
        padding: 25px 15px;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
    
    /* Industries Section - Tablet */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .industry-card {
        padding: 30px 25px;
    }
    
    /* Latest News - Tablet */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Testimonials - Tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    /* CTA Section - Tablet */
    .cta-section .container {
        gap: 50px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    /* Our Products Responsive */
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .product-item {
        padding: 20px 15px;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .product-icon img {
        width: 35px;
        height: 35px;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .products-cta .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Latest News Responsive */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    /* CTA Section Responsive */
    .cta-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* News Page Styles */
.news-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.tab-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.featured-news {
    padding: 60px 0;
    background: white;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0066cc;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.news-meta .date,
.news-meta .author {
    position: relative;
}

.news-meta .author::before {
    content: "•";
    margin-right: 8px;
}

.excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0052a3;
}

.news-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.load-more-section {
    text-align: center;
    padding: 20px 0;
}

.load-more-btn {
    padding: 15px 40px;
    background: white;
    border: 2px solid #0066cc;
    color: #0066cc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.load-more-btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: #0066cc;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission, .vision, .values {
        padding: 30px 20px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0 !important;
        width: 60px;
        padding: 10px 5px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* News Page Responsive */
    .featured-article {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }
    
    .news-articles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .company-overview,
    .mission-vision,
    .history-section,
    .team-section,
    .certifications {
        padding: 60px 0;
    }
    
    .mission, .vision, .values {
        padding: 30px 20px;
    }
    
    .mission h3, .vision h3, .values h3 {
        font-size: 1.5rem;
    }
    
    .mission p, .vision p, .values p {
        font-size: 1rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Page Styles */
.product-categories {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #0066cc;
    color: white;
}

.products-grid {
    padding: 80px 0;
    background: white;
}

.product-category {
    margin-bottom: 80px;
}

.product-category h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 50px;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

/* Carousel Image Styles */
.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-image img:hover {
    transform: scale(1.02);
}

/* Hero Banner Specific Styles */
.carousel-slide .carousel-image img[src*="hero_banner"] {
    filter: brightness(1.1) contrast(1.05);
    animation: bannerGlow 8s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% {
        filter: brightness(1.1) contrast(1.05);
    }
    50% {
        filter: brightness(1.15) contrast(1.1) saturate(1.1);
    }
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 30px;
}

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

.product-code {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 5px 12px;
    background: #e3f2fd;
    color: #0066cc;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.custom-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.solution-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.solution-icon {
    margin-bottom: 30px;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.product-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 25px;
}

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

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .products-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .custom-solutions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .product-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category h2 {
        font-size: 2rem;
    }
    
    .product-features h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}