/* Custom Styles for Universal FSW New Pages */

/* Product Categories */
.product-categories {
    margin-bottom: 30px;
}
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.category-tabs li {
    padding: 12px 30px;
    background: #f5f5f5;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}
.category-tabs li:hover,
.category-tabs li.active {
    background: #ff5e14;
    color: #fff;
}

/* Sub Categories */
.sub-category-wrapper {
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}
.sub-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.sub-label {
    font-weight: 600;
    color: #333;
}
.sub-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.sub-category-tabs li {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.sub-category-tabs li:hover,
.sub-category-tabs li.active {
    background: #ff5e14;
    border-color: #ff5e14;
    color: #fff;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-card .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.product-card .view-btn {
    padding: 10px 25px;
    background: #ff5e14;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.product-card .view-btn:hover {
    background: #e54e00;
}
.product-card .product-info {
    padding: 20px;
}
.product-card .product-category {
    font-size: 12px;
    color: #ff5e14;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
}
.product-card h3 a {
    color: #06163a;
    text-decoration: none;
    transition: color 0.3s ease;
}
.product-card h3 a:hover {
    color: #ff5e14;
}
.product-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Product Detail */
.product_gallery .main_image {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}
.product_gallery .main_image img {
    width: 100%;
    height: auto;
}
.product_gallery .thumbnail_images {
    display: flex;
    gap: 10px;
}
.product_gallery .thumb {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}
.product_gallery .thumb.active,
.product_gallery .thumb:hover {
    opacity: 1;
    border-color: #ff5e14;
}
.product_gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_details_info .product-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #ff5e14;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.product_details_info h1 {
    font-size: 28px;
    color: #06163a;
    margin-bottom: 15px;
}
.product_details_info .product-rating {
    margin-bottom: 20px;
}
.product_details_info .product-rating i {
    color: #ffc107;
}
.product_details_info .product-rating span {
    color: #666;
    margin-left: 10px;
    font-size: 14px;
}
.product_details_info .product-short-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}
.product_details_info .product-features-list h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.product_details_info .product-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.product_details_info .product-features-list li {
    padding: 8px 0;
    color: #555;
}
.product_details_info .product-features-list li i {
    color: #ff5e14;
    margin-right: 10px;
}
.product-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.product-meta {
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.product-meta .meta-item {
    margin-bottom: 10px;
}
.product-meta .meta-item span {
    color: #999;
}
.product-meta .meta-item a {
    color: #06163a;
    margin-left: 5px;
}

/* Product Tabs */
.product-tabs .nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.product-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: #666;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.product-tabs .nav-tabs .nav-link.active {
    color: #ff5e14;
    border-bottom-color: #ff5e14;
    background: none;
}
.tab-content-inner h3 {
    margin-bottom: 20px;
}
.specifications-table {
    width: 100%;
}
.specifications-table tr:nth-child(even) {
    background: #f9f9f9;
}
.specifications-table th,
.specifications-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.specifications-table th {
    width: 40%;
    font-weight: 600;
    color: #333;
}
.applications-grid {
    margin-top: 20px;
}
.application-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.application-item i {
    font-size: 36px;
    color: #ff5e14;
    margin-bottom: 15px;
}
.application-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.application-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Solution Card */
.solution-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.solution-card .solution-image {
    height: 200px;
    overflow: hidden;
}
.solution-card .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.solution-card:hover .solution-image img {
    transform: scale(1.1);
}
.solution-card .solution-content {
    padding: 25px;
}
.solution-card .solution-content h3 {
    color: #06163a;
    margin-bottom: 10px;
    font-size: 20px;
}
.solution-card .solution-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.solution-card .learn-more {
    color: #ff5e14;
    font-weight: 500;
}
.solution-card .learn-more i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}
.solution-card:hover .learn-more i {
    margin-left: 10px;
}

/* Insight Card */
.insight-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.insight-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.insight-card:hover .insight-card-overlay {
    opacity: 1;
}
.insight-card-overlay .view-all {
    color: #fff;
    font-weight: 500;
}
.insight-card-content {
    padding: 25px;
}
.insight-card-content .icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.insight-card-content .icon-wrapper i {
    font-size: 24px;
    color: #fff;
}
.insight-card-content h3 {
    color: #06163a;
    margin-bottom: 10px;
}
.insight-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.insight-card-content .card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

/* Resource Card */
.resource-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.resource-card .resource-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.resource-card .resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resource-card .resource-type {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #ff5e14;
    color: #fff;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.resource-card .resource-content {
    padding: 20px;
}
.resource-card .resource-date {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}
.resource-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.resource-card h4 a {
    color: #06163a;
    text-decoration: none;
}
.resource-card h4 a:hover {
    color: #ff5e14;
}
.resource-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.resource-card .resource-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
.resource-card .resource-tags span {
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 11px;
    color: #666;
}
.resource-card .read-more {
    color: #ff5e14;
    font-size: 14px;
    font-weight: 500;
}

/* Video Card */
.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.video-card .video-thumbnail {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
}
.video-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}
.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-card .play-button i {
    color: #fff;
    font-size: 18px;
    margin-left: 3px;
}
.video-card:hover .play-button {
    background: #ff5e14;
    transform: translate(-50%, -50%) scale(1.1);
}
.video-card .video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}
.video-card .video-content {
    padding: 20px;
}
.video-card .video-category {
    font-size: 11px;
    color: #ff5e14;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.video-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.video-card h4 a {
    color: #06163a;
    text-decoration: none;
}
.video-card h4 a:hover {
    color: #ff5e14;
}
.video-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.video-card .video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.news-card.featured {
    height: 100%;
}
.news-card.featured .news-image {
    height: 280px;
}
.news-card .news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-image img {
    transform: scale(1.1);
}
.news-card .news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #ff5e14;
    color: #fff;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.news-card .news-content {
    padding: 25px;
}
.news-card .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}
.news-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.news-card h3 a {
    color: #06163a;
    text-decoration: none;
}
.news-card h3 a:hover {
    color: #ff5e14;
}
.news-card.featured h2 {
    font-size: 24px;
}
.news-card.featured h2 a {
    color: #06163a;
    text-decoration: none;
}
.news-card.featured h2 a:hover {
    color: #ff5e14;
}
.news-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.news-card .read-more {
    color: #ff5e14;
    font-size: 14px;
    font-weight: 500;
}

/* Service Card 02 */
.service-card-02 {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.service-card-02:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.service-card-02 .service-icon {
    width: 70px;
    height: 70px;
    background: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card-02 .service-icon i {
    font-size: 28px;
    color: #fff;
}
.service-card-02 h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #06163a;
}
.service-card-02 p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}
.service-card-02 .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card-02 .service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}
.service-card-02 .service-features li i {
    color: #ff5e14;
    margin-right: 10px;
}

/* Process Step */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #eee;
}
.process-step:last-child::after {
    display: none;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #ff5e14;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #06163a;
}
.process-step p {
    font-size: 14px;
    color: #666;
}

/* Why Choose List */
.why-choose-list .why-item {
    display: flex;
    margin-bottom: 25px;
}
.why-choose-list .why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.why-choose-list .why-icon i {
    color: #fff;
    font-size: 20px;
}
.why-choose-list .why-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #06163a;
}
.why-choose-list .why-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Benefits List */
.benefits-list .benefit-item {
    display: flex;
    margin-bottom: 20px;
}
.benefits-list .benefit-icon {
    margin-right: 15px;
}
.benefits-list .benefit-icon i {
    font-size: 24px;
    color: #ff5e14;
}
.benefits-list .benefit-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #06163a;
}
.benefits-list .benefit-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Section Header Flex */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section-header-flex .view-all-link {
    color: #ff5e14;
    font-weight: 500;
}

/* Filter Styles */
.resource-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}
.resource-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.resource-filters .filter-group label {
    font-weight: 500;
    white-space: nowrap;
}
.resource-filters .filter-select {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
    min-width: 150px;
}
.resource-filters .filter-search {
    display: flex;
    margin-left: auto;
}
.resource-filters .filter-search input {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px 0 0 25px;
    min-width: 200px;
}
.resource-filters .filter-search button {
    padding: 10px 20px;
    background: #ff5e14;
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}
.pagination {
    display: inline-flex;
    padding-left: 0;
    list-style: none;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.pagination li {
    margin: 0;
}
.pagination li a {
    display: block;
    padding: 12px 18px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination li.active a,
.pagination li a:hover {
    background: #ff5e14;
    color: #fff;
}
.pagination li.disabled a {
    color: #ccc;
    cursor: not-allowed;
}

/* Article/News Detail */
.article-detail,
.news-detail {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.article-header,
.news-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}
.article-detail .article-type,
.news-detail .news-category-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #ff5e14;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.article-detail h1,
.news-detail h1 {
    font-size: 28px;
    color: #06163a;
    margin-bottom: 15px;
}
.article-meta,
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #999;
}
.article-featured-image,
.news-featured-image {
    height: 400px;
    overflow: hidden;
}
.article-featured-image img,
.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-content,
.news-content {
    padding: 30px;
}
.article-content h2,
.news-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #06163a;
}
.article-content h3,
.news-content h3 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #06163a;
}
.article-content h4,
.news-content h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #06163a;
}
.article-content p,
.news-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.article-content .lead,
.news-content .lead {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}
.article-content ul,
.article-content ol,
.news-content ul,
.news-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.article-content li,
.news-content li {
    margin-bottom: 8px;
    color: #555;
}
.article-content .article-image,
.news-content .news-image {
    margin: 30px 0;
}
.article-content .article-image img,
.news-content .news-image img {
    width: 100%;
    border-radius: 8px;
}
.article-content .article-image .caption,
.news-content .news-image .caption {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}
.article-content blockquote,
.news-content blockquote {
    padding: 20px 30px;
    background: #f9f9f9;
    border-left: 4px solid #ff5e14;
    margin: 30px 0;
    font-style: italic;
    font-size: 16px;
}
.article-content blockquote cite,
.news-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    color: #ff5e14;
}
.article-tags,
.news-tags {
    padding: 20px 30px;
    border-top: 1px solid #eee;
}
.article-tags .tag-label,
.news-tags .tag-label {
    font-weight: 600;
    margin-right: 10px;
}
.article-tags .tag,
.news-tags .tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.article-tags .tag:hover,
.news-tags .tag:hover {
    background: #ff5e14;
    color: #fff;
}
.article-share,
.news-share {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}
.article-share .share-label,
.news-share .share-label {
    font-weight: 500;
}
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-buttons .share-btn {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}
.share-buttons .share-btn:hover {
    background: #ff5e14;
    color: #fff;
}

/* Author Box */
.author-box {
    display: flex;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 30px;
}
.author-box .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.author-box .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-box .author-info h4 {
    margin-bottom: 5px;
    color: #06163a;
}
.author-box .author-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Related Items */
.related-articles,
.related-videos,
.related-news {
    margin-top: 40px;
}
.related-articles h3,
.related-videos h3,
.related-news h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Sidebar Widgets */
.article-sidebar,
.video-sidebar,
.news-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}
.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff5e14;
    color: #06163a;
}
.sidebar-widget .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget .category-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.sidebar-widget .category-list li:last-child {
    border-bottom: none;
}
.sidebar-widget .category-list li a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}
.sidebar-widget .category-list li a:hover {
    color: #ff5e14;
}
.sidebar-widget .category-list li span {
    color: #999;
}
.sidebar-widget .search-form {
    display: flex;
}
.sidebar-widget .search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}
.sidebar-widget .search-form button {
    padding: 10px 15px;
    background: #ff5e14;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.sidebar-widget.cta-widget {
    background: #06163a;
    color: #fff;
}
.sidebar-widget.cta-widget h4 {
    color: #fff;
    border-bottom-color: #ff5e14;
}
.sidebar-widget.cta-widget p {
    color: #ccc;
}
.popular-posts .popular-item,
.recent-posts .recent-item {
    display: flex;
    margin-bottom: 15px;
}
.popular-posts .popular-item:last-child,
.recent-posts .recent-item:last-child {
    margin-bottom: 0;
}
.popular-posts .popular-item img,
.recent-posts .recent-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}
.popular-posts .popular-content h5,
.recent-posts .recent-content h5 {
    font-size: 14px;
    margin-bottom: 3px;
}
.popular-posts .popular-content h5 a,
.recent-posts .recent-content h5 a {
    color: #06163a;
    text-decoration: none;
}
.popular-posts .popular-content h5 a:hover,
.recent-posts .recent-content h5 a:hover {
    color: #ff5e14;
}
.popular-posts .popular-content span,
.recent-posts .recent-content span {
    font-size: 12px;
    color: #999;
}

/* Video Detail */
.video-detail {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.video-player {
    position: relative;
}
.video-player .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}
.video-player .video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-player .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.video-player .play-btn-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 94, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-player .play-btn-large i {
    color: #fff;
    font-size: 30px;
    margin-left: 5px;
}
.video-player .play-btn-large:hover {
    background: #ff5e14;
    transform: scale(1.1);
}
.video-info {
    padding: 30px;
    border-bottom: 1px solid #eee;
}
.video-info h1 {
    font-size: 24px;
    color: #06163a;
    margin-bottom: 15px;
}
.video-meta-detail {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
}
.video-description {
    padding: 30px;
}
.video-description h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #06163a;
}
.video-description h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #06163a;
}
.video-description ul {
    padding-left: 20px;
}
.video-description li {
    margin-bottom: 8px;
    color: #555;
}
.video-chapters {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}
.chapter-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.chapter-item:last-child {
    border-bottom: none;
}
.chapter-time {
    font-weight: 600;
    color: #ff5e14;
    margin-right: 15px;
    min-width: 50px;
}
.video-actions {
    display: flex;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}
.video-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.video-actions .action-btn:hover {
    background: #ff5e14;
    color: #fff;
}

/* Video List Small */
.video-list-small .video-item-small {
    display: flex;
    margin-bottom: 15px;
}
.video-item-small .video-thumb {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}
.video-item-small .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-item-small .video-thumb .duration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    padding: 2px 5px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 3px;
    font-size: 10px;
}
.video-item-small .video-info-small h5 {
    font-size: 14px;
    margin-bottom: 5px;
}
.video-item-small .video-info-small h5 a {
    color: #06163a;
    text-decoration: none;
}
.video-item-small .video-info-small h5 a:hover {
    color: #ff5e14;
}
.video-item-small .video-info-small span {
    font-size: 12px;
    color: #999;
}

/* News Sidebar Mini */
.news-sidebar-mini {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.sidebar-news-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-news-item:first-child {
    padding-top: 0;
}
.sidebar-news-item .news-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.sidebar-news-item h4 {
    font-size: 14px;
    margin: 0;
}
.sidebar-news-item h4 a {
    color: #06163a;
    text-decoration: none;
}
.sidebar-news-item h4 a:hover {
    color: #ff5e14;
}

/* Responsive */
@media (max-width: 992px) {
    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .category-tabs li {
        text-align: center;
    }
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .resource-filters {
        flex-direction: column;
    }
    .resource-filters .filter-search {
        margin-left: 0;
        width: 100%;
    }
    .resource-filters .filter-search input {
        width: 100%;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }
    .product-action-buttons {
        flex-direction: column;
    }
    .video-actions {
        flex-wrap: wrap;
    }
}

/* Homepage Featured Products - Mini Card Style */
.product-card-mini {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.product-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.product-image-mini {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.product-image-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card-mini:hover .product-image-mini img {
    transform: scale(1.1);
}
.product-overlay-mini {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card-mini:hover .product-overlay-mini {
    opacity: 1;
}
.view-btn-mini {
    padding: 8px 20px;
    background: #ff5e14;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: background 0.3s ease;
}
.view-btn-mini:hover {
    background: #e54e00;
    color: #fff;
}
.product-info-mini {
    padding: 20px;
}
.product-category-mini {
    font-size: 11px;
    color: #ff5e14;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}
.product-info-mini h3 {
    font-size: 16px;
    margin: 0 0 8px;
}
.product-info-mini h3 a {
    color: #06163a;
    text-decoration: none;
    transition: color 0.3s ease;
}
.product-info-mini h3 a:hover {
    color: #ff5e14;
}
.product-info-mini p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* World Map Section */
.worldMapSection {
    padding: 60px 0 80px;
    background: #f8f9fa;
}
.worldMapSection .sub_title {
    color: #ff5e14;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.worldMapSection .sec_title {
    margin-bottom: 20px;
}
.world-map-desc {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.world-map-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 1000px;
}

/* Navigation Dropdown */
.mainmenu ul li {
    position: relative;
}
.mainmenu ul li ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 15px 0;
    border-top: 3px solid #ff5e14;
}
.mainmenu ul li:hover > ul.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mainmenu ul li ul.dropdown li {
    display: block;
    margin: 0;
    padding: 0;
}
.mainmenu ul li ul.dropdown li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.mainmenu ul li ul.dropdown li a:hover {
    background: #f5f5f5;
    color: #ff5e14;
    padding-left: 25px;
}
.mainmenu ul li a i.fa-angle-down {
    margin-left: 5px;
    font-size: 12px;
}

/* Solution Detail Page Styles */
/* Industry Overview */
.solution-overview {
    background: #06163a;
    padding: 40px 0;
}
.solution-overview .overview-header h3 {
    color: #ea253f;
    font-size: 24px;
    margin-bottom: 20px;
}
.solution-overview .overview-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Challenge & Solution Boxes */
.challenge-solution-row {
    padding: 50px 0;
}
.challenge-box,
.solution-box {
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}
.challenge-box {
    background: #fff5f5;
    border: 2px solid #ea253f;
}
.solution-box {
    background: #f5fff5;
    border: 2px solid #28a745;
}
.challenge-box h4,
.solution-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.challenge-box h4 i {
    color: #ea253f;
}
.solution-box h4 i {
    color: #28a745;
}
.challenge-box p,
.solution-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Applications Grid */
.applications-grid {
    margin-top: 30px;
}
.applications-grid > [class*="col-"] {
    margin-bottom: 30px;
    display: flex;
}
.application-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.application-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #ea253f;
}
.application-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.app-number {
    background: #ea253f;
    color: #fff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.application-header h4 {
    font-size: 15px;
    color: #06163a;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}
.toggle-icon {
    color: #ea253f;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: right;
}
.application-card.active .toggle-icon {
    transform: rotate(180deg);
}
.application-content {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
}
.application-card.active .application-content {
    display: block;
}
.application-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Services Grid */
.services-grid {
    margin-top: 30px;
}
.services-grid > [class*="col-"] {
    margin-bottom: 30px;
}
.service-card-alt {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}
.service-card-alt:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #ea253f;
}
.service-number {
    background: #ea253f;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}
.service-card-alt h4 {
    font-size: 18px;
    color: #06163a;
    margin-bottom: 12px;
}
.service-card-alt p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Grid */
.why-choose-grid {
    margin-top: 30px;
}
.why-choose-grid > [class*="col-"] {
    margin-bottom: 30px;
}
.why-choose-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
}
.why-choose-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #ea253f;
}
.why-choose-item i {
    color: #ea253f;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}
.why-choose-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Services Page - Lynjoon Style */
/* Extended Page Banner */
.page_banner_extended {
    padding: 110px 0 120px;
}
.banner_sub_title {
    font-size: 14px;
    color: #ff5e14;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.banner_desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-top: 30px;
}

/* Values Section */
.values-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.values-img-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}
.values-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.values-img-item:hover img {
    transform: scale(1.1);
}
.values-image-wrapper {
    position: relative;
}
.values-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.values-content {
    padding: 30px 0;
}
.values-list .value-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.values-list .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.values-list .value-icon i {
    color: #fff;
    font-size: 20px;
}
.values-list .value-text h4 {
    font-size: 16px;
    color: #06163a;
    margin: 0;
}

/* Client Logos */
.clientLogoSection {
    padding: 60px 0;
    background: #fff;
}
.client-logos-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.client-logo-item {
    flex: 1;
    max-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.client-logo-item:hover {
    opacity: 1;
}
.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Service Horizontal Card */
.service-horizontal-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.service-h-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}
.service-h-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-horizontal-card:hover .service-h-image img {
    transform: scale(1.1);
}
.service-h-content {
    padding: 20px;
}
.service-h-content h3 {
    font-size: 18px;
    color: #06163a;
    margin-bottom: 10px;
}
.service-h-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.service-link {
    color: #ff5e14;
    font-size: 13px;
    font-weight: 500;
}
.service-link i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}
.service-horizontal-card:hover .service-link i {
    margin-left: 10px;
}

/* Who We Are Section */
.who-we-image {
    border-radius: 8px;
    overflow: hidden;
}
.who-we-image img {
    width: 100%;
    height: auto;
}

/* Solution Stats Card */
.solution-stats-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}
.solution-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.stats-icon {
    width: 60px;
    height: 60px;
    background: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-icon i {
    font-size: 24px;
    color: #fff;
}
.stats-number {
    display: flex;
    flex-direction: column;
}
.stats-number .number-value {
    font-size: 28px;
    font-weight: 700;
    color: #06163a;
}
.stats-number .number-unit {
    font-size: 14px;
    color: #999;
}
.solution-stats-card h3 {
    font-size: 20px;
    color: #06163a;
    margin-bottom: 20px;
}
.stats-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.stats-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}
.stats-list li:last-child {
    border-bottom: none;
}
.stats-list li i {
    color: #ff5e14;
    margin-right: 10px;
}
.stats-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff5e14;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.stats-btn:hover {
    background: #e54e00;
    color: #fff;
}

/* More Card */
.more-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.more-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.more-image {
    height: 160px;
    overflow: hidden;
}
.more-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.more-card:hover .more-image img {
    transform: scale(1.1);
}
.more-content {
    padding: 20px;
}
.more-content h3 {
    font-size: 18px;
    color: #06163a;
    margin-bottom: 10px;
}
.more-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Services Page */
@media (max-width: 992px) {
    .values-images-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 30px;
    }
    .client-logos-wrapper {
        gap: 10px;
        flex-wrap: wrap;
    }
    .client-logo-item {
        max-width: 100px;
        height: 50px;
    }
    .solution-stats-card {
        padding: 25px;
    }
    .stats-number .number-value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .client-logos-wrapper {
        gap: 8px;
        flex-wrap: wrap;
    }
    .client-logo-item {
        max-width: 80px;
        height: 40px;
    }
    .more-card-full {
        flex-direction: column;
    }
    .more-full-image {
        width: 100%;
        min-width: 100%;
        height: 150px;
    }
    .service-h-image {
        height: 120px;
    }
}

/* ========================================
   Automotive Solution Page Styles
   ======================================== */

/* Overview Section - Left/Right Layout with Background */
.solution-overview {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 100%);
    padding: 60px 0;
}
.overview-row {
    align-items: center;
}
.overview-left h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}
.overview-left p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}
.overview-left .ind_btn.id_dark2 {
    margin-bottom: 0;
}
.overview-right {
    position: relative;
}
.overview-slider {
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}
.slider-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-controls button:hover {
    background: #fff;
    color: #333;
    transform: scale(1.1);
}
.slider-dots {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}
.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Challenge & Solution - New Layout with Background */
.challenge-solution-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}
.challenge-solution-row {
    margin-top: 40px;
}
.challenge-content {
    padding: 40px 0;
}
.challenge-content h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}
.challenge-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}
.solution-wrapper {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.solution-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-content {
    padding: 40px;
}
.solution-content h3 {
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 700;
}
.solution-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

/* Application Section - Dark Background with Left/Right Layout */
.application-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%), url('../images/solutions/automotive.png') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}
.application-row {
    align-items: center;
    margin-bottom: 0;
}
.application-left {
    padding: 60px 0;
}
.application-left .sub_title {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.application-left .sec_title {
    font-size: 68px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}
.application-left .sec_title span {
    color: #e74c3c;
    display: block;
    margin-top: 15px;
}
.application-right {
    padding: 30px 0 30px 40px;
}
.application-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.application-list {
    padding: 25px 0;
}
.application-list li {
    color: #fff;
    font-size: 20px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.application-list li i {
    color: #e74c3c;
    margin-right: 15px;
    font-size: 14px;
}
/* Application Products Section - Outside dark background */
.application-products-section {
    background: #fff;
    padding: 60px 0;
}
/* Application Products Row */
.application-products-row {
    margin-top: 0;
}
.app-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.app-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.app-product-image {
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}
.app-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.app-product-card:hover .app-product-image img {
    transform: scale(1.1);
}
.app-product-info {
    padding: 20px;
    text-align: center;
}
.app-product-info h5 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Our Services Section - Left/Right Layout with Background */
.our-services-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}
.services-row {
    align-items: flex-start;
}
.services-left {
    padding: 40px 0;
}
.services-left .sub_title {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.services-left .sec_title {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.services-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.services-left .ind_btn.id_dark2 {
    margin-bottom: 0;
}
.services-right {
    padding: 40px 0;
}
.service-card-vertical {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}
.service-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.service-card-image {
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card-vertical:hover .service-card-image img {
    transform: scale(1.1);
}
.service-card-content {
    padding: 25px;
}
.service-card-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}
/* Highlighted Service Card - Different Background */
.service-card-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border: 2px solid #3498db;
}
.service-card-highlight:hover {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

/* Why Choose Us Section - 2x2 Grid with Logo */
.why-choose-section {
    background: linear-gradient(to bottom, #ffffff 0%, #e8f4f8 100%);
    padding: 60px 0;
}
.why-choose-grid {
    margin-top: 40px;
}
.why-choose-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.why-choose-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.why-choose-logo {
    flex-shrink: 0;
    margin-right: 20px;
}
.why-choose-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.why-choose-logo i {
    font-size: 32px;
    color: #e74c3c;
}
.why-choose-content {
    flex: 1;
}
.why-choose-content h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}
.why-choose-content p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Responsive for Automotive Page */
@media (max-width: 992px) {
    .overview-row {
        flex-direction: column;
    }
    .overview-left, .overview-right {
        width: 100%;
    }
    .overview-right {
        margin-top: 30px;
    }
    .challenge-solution-row {
        flex-direction: column;
    }
    .challenge-content, .solution-wrapper {
        width: 100%;
    }
    .application-row {
        flex-direction: column;
    }
    .application-left, .application-right {
        width: 100%;
    }
    .services-row {
        flex-direction: column;
    }
    .services-left, .services-right {
        width: 100%;
    }
    .app-product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .overview-left h3, .challenge-content h3, .solution-content h3 {
        font-size: 28px;
    }
    .application-left .sec_title {
        font-size: 32px;
    }
    .application-list li {
        font-size: 16px;
    }
    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }
    .why-choose-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .slider-wrapper {
        height: 250px;
    }
    .solution-image {
        height: 200px;
    }
}

/* ========================================
   FSW Processing Services Hero Section
   ======================================== */
.fsw-hero-section {
    padding: 80px 0;
    background: #fff;
}
.fsw-hero-content {
    padding: 40px 30px;
    background: #fff;
}
.fsw-hero-content .sub_title {
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}
.fsw-hero-content .sec_title {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}
.fsw-hero-image {
    height: 600px;
    overflow: hidden;
}
.fsw-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   End-to-End Service Section
   ======================================== */
.end-to-end-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.end-to-end-cards {
    margin-top: 40px;
}
.end-to-end-row {
    display: flex;
    width: 100%;
    gap: 0;
}
.end-to-end-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    flex: 1;
    min-width: 0;
}
.end-to-end-card .card-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.end-to-end-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.end-to-end-card:hover .card-image img {
    transform: scale(1.1);
}
.end-to-end-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 100%;
}
.end-to-end-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c41e3a 0%, #ff5e14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(196, 30, 58, 0.4);
}
.end-to-end-card .card-icon i {
    font-size: 22px;
    color: #fff;
}
.end-to-end-card h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Core Services Section
   ======================================== */
.core-services-section {
    padding: 80px 0;
    background: #fff;
}
.core-services-content {
    padding: 40px 30px;
    background: #fff;
}
.core-services-content .sec_title {
    font-size: 36px;
    line-height: 1.3;
}
.core-services-image {
    height: 500px;
    overflow: hidden;
    background: #1a1a2e;
}
.core-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.core-service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #eee;
}
.core-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #c41e3a;
}
.core-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.core-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.core-service-card:hover .core-card-image img {
    transform: scale(1.1);
}
.core-card-icon-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c41e3a 0%, #ff5e14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(196, 30, 58, 0.4);
}
.core-card-icon-overlay i {
    font-size: 20px;
    color: #fff;
}
.core-card-content {
    padding: 25px 20px;
}
.core-service-card h4 {
    font-size: 17px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.core-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* ========================================
   Factory Section
   ======================================== */
.factory-section {
    padding: 80px 0;
    background: #fff;
}
.factory-gallery {
    margin-top: 40px;
}
.factory-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    cursor: pointer;
}
.factory-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.factory-item:hover img {
    transform: scale(1.1);
}
.factory-item.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.factory-item.featured:hover {
    transform: scale(1.08);
}
.factory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.factory-item:hover .factory-overlay {
    opacity: 1;
}
.factory-overlay h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 10px;
}
.lightbox-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #c41e3a;
    transition: all 0.3s ease;
}
.lightbox-link:hover {
    background: #c41e3a;
    color: #fff;
}

/* ========================================
   Beyond Manufacturing Section
   ======================================== */
.beyond-manufacturing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}
.beyond-title {
    font-size: 42px !important;
    letter-spacing: 2px;
    line-height: 1.3;
}
.beyond-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.beyond-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.beyond-image {
    height: 280px;
    overflow: hidden;
}
.beyond-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.beyond-card:hover .beyond-image img {
    transform: scale(1.1);
}
.beyond-content {
    padding: 35px;
}
.beyond-content h4 {
    font-size: 22px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 15px;
}
.beyond-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1199px) {
    .fsw-hero-content {
        padding: 30px 25px;
    }
    .fsw-hero-content .sec_title {
        font-size: 36px;
    }
    .core-services-content {
        padding: 30px 25px;
    }
    .core-services-content .sec_title {
        font-size: 30px;
    }
    .end-to-end-card {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .fsw-hero-section .row {
        flex-direction: column;
    }
    .fsw-hero-content {
        padding: 40px 20px;
    }
    .fsw-hero-image {
        height: 400px;
        margin-top: 30px;
    }
    .core-services-section .row {
        flex-direction: column;
    }
    .core-services-content {
        padding: 40px 20px;
        order: 2;
    }
    .core-services-image {
        height: 350px;
        order: 1;
    }
    .end-to-end-section {
        padding: 60px 0;
    }
    .end-to-end-row {
        flex-wrap: wrap;
    }
    .end-to-end-card {
        flex: 0 0 50%;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .fsw-hero-section {
        padding: 50px 0;
    }
    .fsw-hero-content {
        padding: 30px 20px;
    }
    .fsw-hero-content .sec_title {
        font-size: 28px;
    }
    .core-services-section {
        padding: 50px 0;
    }
    .core-services-content {
        padding: 30px 20px;
    }
    .core-services-content .sec_title {
        font-size: 26px;
    }
    .beyond-title {
        font-size: 28px !important;
        letter-spacing: 1px;
    }
    .end-to-end-row {
        flex-direction: column;
    }
    .end-to-end-card {
        flex: 0 0 100%;
        height: 300px;
        margin-bottom: 15px;
    }
    .end-to-end-card .card-icon {
        width: 40px;
        height: 40px;
    }
    .end-to-end-card .card-icon i {
        font-size: 18px;
    }
    .end-to-end-card h4 {
        font-size: 13px;
    }
    .factory-item.featured {
        transform: none;
    }
    .factory-item.featured:hover {
        transform: none;
    }
}

/* ========================================
   About Us - Founded Section
   ======================================== */
.founded-section {
    padding: 80px 0;
    background: #fff;
}
.founded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.founded-col-left .founded-title {
    font-size: 64px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}
.founded-text-content {
    /* 无高度限制，全部展现 */
}
.founded-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.founded-col-middle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-item i {
    font-size: 20px;
    color: #c41e3a;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}
.contact-item span {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}
.contact-item h5 {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 600;
    margin: 0;
}
.founded-col-right .founded-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.founded-col-right .founded-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(196, 30, 58, 0.95) 0%, rgba(196, 30, 58, 0.8) 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.image-caption span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.image-caption .view-more {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c41e3a;
    transition: all 0.3s ease;
}
.image-caption .view-more:hover {
    background: #1a1a2e;
    color: #fff;
}

/* ========================================
   Team Banner Section
   ======================================== */
.team-banner-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about/11.jpg') center center / cover no-repeat;
    position: relative;
}
.banner-title {
    font-size: 72px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: 5px;
}

/* ========================================
   Our Team Section
   ======================================== */
.our-team-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.team-image-large {
    overflow: hidden;
    border-radius: 8px;
}
.team-image-large img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.our-team-section:hover .team-image-large img {
    transform: scale(1.05);
}
.team-content .team-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}
.team-content .first-word-large {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-right: 8px;
    line-height: 1.8;  /* 统一行距 */
}

/* ========================================
   The Team Section
   ======================================== */
.the-team-section {
    padding: 80px 0;
    background: #fff;
}
.the-team-content .team-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}
.the-team-content .first-word-large {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-right: 8px;
    line-height: 1.8;  /* 统一行距 */
}
.team-members-slider {
    position: relative;
}
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}
.nav-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c41e3a;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: #c41e3a;
    color: #fff;
}
.team-members-grid {
    display: flex;
    gap: 20px;
}
.team-member {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}
.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-member:hover img {
    transform: scale(1.1);
}

/* ========================================
   Founder Section
   ======================================== */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}
.founder-section .container {
    max-width: 1200px;
}
.founder-image-wrapper {
    position: relative;
    overflow: hidden;
}
.founder-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.founder-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(196, 30, 58, 0.95) 0%, rgba(196, 30, 58, 0.8) 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.founder-caption span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.founder-caption .view-more {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c41e3a;
    transition: all 0.3s ease;
}
.founder-caption .view-more:hover {
    background: #1a1a2e;
    color: #fff;
}
.founder-content .sub-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.founder-content .founder-name {
    font-size: 48px;
    color: #fff;
    margin-bottom: 25px;
}
.founder-content .founder-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========================================
   End-to-End Service Section
   ======================================== */
.end-to-end-service-section {
    padding: 80px 0;
    background: #fff;
}
.end-to-end-service-section .sec_title {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 50px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.service-item:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e3a 0%, #ff5e14 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.service-icon i {
    font-size: 22px;
    color: #fff;
}
.service-item h4 {
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.service-side-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.service-side-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.end-to-end-service-section:hover .service-side-image img {
    transform: scale(1.05);
}
.view-service-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 25px;
    border-radius: 8px;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.view-service-btn:hover {
    background: #c41e3a;
    color: #fff;
}

/* ========================================
   About Us Responsive
   ======================================== */
@media (max-width: 1199px) {
    .founded-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .founded-col-left .founded-title {
        font-size: 48px;
    }
    .banner-title {
        font-size: 60px;
    }
    .team-content .first-word-large,
    .the-team-content .first-word-large {
        font-size: 36px;
    }
    .founder-content .founder-name {
        font-size: 40px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .founded-grid {
        grid-template-columns: 1fr;
    }
    .founded-col-right {
        margin-top: 30px;
    }
    .our-team-section .row.align-items-center,
    .the-team-section .row.align-items-center,
    .founder-section .row.align-items-center {
        flex-direction: column;
    }
    .team-image-large,
    .founder-image-wrapper {
        margin-top: 40px;
    }
    .team-image-large img {
        height: 300px;
    }
    .team-members-grid {
        flex-direction: column;
    }
    .team-member img {
        height: 250px;
    }
    .end-to-end-service-section .row.align-items-center {
        flex-direction: column;
    }
    .service-side-image {
        margin-top: 40px;
    }
    .service-side-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .founded-section,
    .our-team-section,
    .the-team-section,
    .founder-section,
    .end-to-end-service-section {
        padding: 50px 0;
    }
    .founded-col-left .founded-title {
        font-size: 36px;
    }
    .founded-text {
        font-size: 14px;
    }
    .contact-box {
        margin-top: 20px;
    }
    .banner-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
    .team-content .first-word-large,
    .the-team-content .first-word-large {
        font-size: 28px;
    }
    .team-content .team-intro-text,
    .the-team-content .team-intro-text {
        font-size: 15px;
    }
    .founder-content .founder-name {
        font-size: 32px;
    }
    .end-to-end-service-section .sec_title {
        font-size: 32px;
    }
    .service-item {
        padding: 25px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}