.service-parts .stats-section {
            /* background-color: white; */
            padding: 0 0 70px 0;
            /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
        }
        
        .service-parts .stat-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-parts .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .service-parts .stat-icon {
            font-size: 3rem;
            color: #204194;
            margin-bottom: 10px;
        }
        
        .service-parts .stat-number {
            font-size: 45px;
            font-weight: 800;
            color: #204194;
            margin-bottom: 10px;
        }
        
        .service-parts .stat-text {
            font-weight: 600;
            color: var(--text-color);
        }
        
        /* Content Cards */
        .service-parts .content-card {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #204194, #204194);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }
        
        .card-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .card-text {
            color: var(--text-color);
            line-height: 1.7;
        }
        
        /* Ethos Section */
        .ethos-section {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .ethos-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .ethos-quote {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin: 30px 0;
            position: relative;
            z-index: 1;
        }
        
        /* Protection Line Section */
        .protection-section {
            background-color: white;
            position: relative;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 15px;
            background-color: #e8eaf6;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(10px);
            background-color: #d1d9ff;
        }
        
        .feature-icon {
            min-width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #204194, #204194);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
        }
        
        .feature-text {
            font-weight: 600;
            color: var(--text-color);
        }
        
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* .footer {
            padding: 2rem 1rem;
            background-color: #ffffff;
        } */
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .ethos-quote {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

        .service-parts .section {
            padding: 80px 0;
        }
        
        .service-parts .section-title {
            font-weight: 800;
            color: #204194;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            font-size:2rem;
        }
        
        .service-parts .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }

        /* --------lynx----------- */

        .lynx-cont {
            max-width: 600px;
            width: 100%;
            margin-top: 40px;
        }
        
        .lynx-list {
            list-style: none;
            padding: 0;
            margin: 0;
            /* border-radius: 10px; */
            overflow: hidden;
            /* box-shadow: 0 5px 15px rgba(10, 42, 90, 0.1); */
        }
        
        .lynx-list li {
            padding: 18px 25px;
            /* background-color: white; */
            border-left: 4px solid #0a2a5a;
            margin-bottom: 1px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .lynx-list li:before {
            content: "▶";
            color: #0a2a5a;
            margin-right: 15px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .lynx-list li:hover {
            /* background-color: #f0f5ff; */
            padding-left: 30px;
            border-left-width: 6px;
        }
        
        .lynx-list li:hover:before {
            transform: translateX(5px);
        }
        
        .lynx-list li:last-child {
            margin-bottom: 0;
        }
        
        /* .lynx-list li:nth-child(even) {
            background-color: #f9fafc;
        }
        
        .lynx-list li:nth-child(even):hover {
            background-color: #f0f5ff;
        }
         */
        .list-header {
            background-color: #0a2a5a;
            color: white;
            padding: 15px 25px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .lynx-truck-bg {
            background-size: cover;
            padding: 150px;
            background-repeat: no-repeat;
            background-position: center center;
        }

        .api-section {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .api-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .yt-card {
           
            
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            
            margin-bottom: 30px;
            transition: all 0.4s ease;
           
        }
        
        .yt-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .yt-sec h4{
          
          color: #204194;
        }

        .lynx-img-card {
            background-color: white;
            /* border-radius: 20px; */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            /* margin-bottom: 30px; */
            transition: all 0.4s ease;
            height: 100%;
        }

        .lynx-img-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .lynx-img-card .cont {
            padding: 0 10px;
            text-align: center;
        }

        .lynx-img-card .cont p {
            
            margin: 0;
            color: black;
        }

        .lynx-img-card .cont h6 {
            color: #204194;
            font-weight: 600;
        }

        .lynx-img-card .img-card {
            text-align: center;
            margin-bottom: 15px;
        }

        .lynx-img-card .img-card img {
            width: 80px;
        }
        
        
        section.operation-sec h4 {
    text-align: center;
    color: #071e6d;
    font-weight: 600;
    margin-bottom: 30px;
}

.c-form label{
    width:100%;
}
.page-template-contact .contact-section1, .page-template-contact .contact-section2{
    display:none;
}




/* Parts Card Styles */
.parts-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.parts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.parts-img-container {
    /* height: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 15px;
}

.parts-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.parts-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: white;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section title styling */
/* .section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
} */

/* Subsection styling */
h3 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

section.section.parts-section h3 {
    font-size: 26px;
    color: #204194;
}

h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parts-img-container {
        /* height: 120px; */
        padding: 5px;
    }
    
    .parts-name {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (min-width: 1024px) {
    .contact-us{
        display:none;
    }
}