/* 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 */
/* Values Section */
.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: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.client-logo-item {
    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) {
    .client-logos-wrapper {
        gap: 20px;
    }
    .client-logo-item {
        width: 100px;
        height: 50px;
    }
    .solution-stats-card {
        padding: 25px;
    }
    .stats-number .number-value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .client-logos-wrapper {
        gap: 15px;
    }
    .client-logo-item {
        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;
    }
}

/* Contact Section Styles for Beijing Seventh Cloud Space Design Institute */
.contact-info-box {
    margin-top: 40px;
    padding: 30px 0;
}
.contact-item {
    text-align: center;
    padding: 25px 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.contact-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.contact-item i {
    font-size: 42px;
    color: #ff5e14;
    margin-bottom: 20px;
    display: block;
}
.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #06163a;
    margin-bottom: 12px;
}
.contact-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.contact-item a {
    color: #ff5e14;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item a:hover {
    color: #e04d00;
    text-decoration: underline;
}

/* Team Section Enhancements */
.teamSection .icon_box_02 {
    padding: 30px 25px;
    margin-bottom: 30px;
}
.teamSection .icon_box_02 i {
    color: #ff5e14;
}

/* Case Study Section Chinese Labels */
.casestudysection .filterMenu li {
    font-size: 14px;
}

/* Service Slider Enhancements */
.serviceSlider .icon_box_03 {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 10px;
}
.serviceSlider .icon_box_03:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}
.serviceSlider .icon_box_03 i {
    color: #ff5e14;
}
.serviceSlider .icon_box_03 h3 a {
    color: #06163a;
}
.serviceSlider .icon_box_03 h3 a:hover {
    color: #ff5e14;
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-item {
        padding: 20px 15px;
    }
    .contact-item i {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-info-box {
        margin-top: 20px;
        padding: 20px 0;
    }
    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    .contact-item i {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .contact-item h4 {
        font-size: 16px;
    }
}