/* Optimized Mega Menu CSS */

/* Base Mega Menu Styles */
.simplified-mega-menu {
  position: relative;
}

.simplified-mega-panel {
  position: absolute;
  top: 100%;
  left: 70%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 95vw;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  margin-top: 15px;
}

.simplified-mega-menu:hover .simplified-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.simplified-mega-container {
  padding: 0;
}

.simplified-mega-layout {
  display: flex;
  min-height: 150px;
  max-height: 300px;
}

/* Categories Column (Left) */
.categories-column {
  width: 200px;
  background: linear-gradient(135deg, #1050cf 0%, #004080 100%);
  border-radius: 12px 0 0 12px;
  padding: 0;
}

.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.category-item:hover a,
.category-item.active a {
  background: rgba(52, 152, 219, 0.2);
  color: #ffffff;
  padding-left: 25px;
}

/* Content Columns (Middle + Right) */
.content-columns {
  flex: 1;
  display: flex;
  background: #ffffff;
  border-radius: 0 12px 12px 0;
}

/* Subcategories Column (Middle) */
.subcategories-column {
  width: 300px;
  border-right: 1px solid #e9ecef;
  padding: 0;
}

.subcategories-content {
  height: 100%;
  overflow-y: auto;
}

.subcategories-group {
  display: none;
}

.subcategories-group.active {
  display: block;
}

.subcategories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-item {
  border-bottom: 1px solid #f1f2f6;
}

.subcategory-item a {
  display: block;
  padding: 12px 20px;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.subcategory-item:hover a,
.subcategory-item.active a {
  background: #e8f4fd;
  color: #3498db;
  padding-left: 25px;
  border-left: 3px solid #3498db;
}

/* Products Column (Right) */
.products-column {
  flex: 1;
  padding: 0;
}

.products-content {
  height: 100%;
  overflow-y: auto;
  padding: 10px 0;
}

.products-group {
  display: none;
}

.products-group.active {
  display: block;
}

.products-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-item {
  margin-bottom: 2px;
}

.product-item a {
  display: block;
  padding: 10px 20px;
  color: #495057;
  text-decoration: none;
  border-radius: 6px;
  margin: 0 10px;
  transition: all 0.3s ease;
  font-size: 12px;
  text-transform: uppercase;
}

.product-item:hover a {
  background: #f8f9fa;
  color: #3498db;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

/* Custom Scrollbar */
.subcategories-content::-webkit-scrollbar,
.products-content::-webkit-scrollbar {
  width: 6px;
}

.subcategories-content::-webkit-scrollbar-track,
.products-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.subcategories-content::-webkit-scrollbar-thumb,
.products-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

/* Sticky Header Mega Menu Fix */
.sticky-header .simplified-mega-menu {
  position: relative;
}

.sticky-header .simplified-mega-panel {
  position: absolute;
  top: 100%;
  left: -40%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 95vw;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 99999; /* Higher z-index for sticky header */
  margin-top: 15px;
}

.sticky-header .simplified-mega-menu:hover .simplified-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Menu Styles */
.mobile-products-menu {
  /* border-bottom: 1px solid #f0f0f0; */
  margin-bottom: 20px;
}

.mobile-products-toggle {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  transition: all 0.3s ease;
}

.mobile-products-toggle:hover {
  background: #f8f9fa;
  color: #3498db;
  padding-left: 25px;
}

.dropdown-icon {
  margin-left: auto;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.mobile-products-menu.active .dropdown-icon {
  transform: rotate(45deg);
}

.mobile-products-submenu {
  display: none;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.mobile-products-menu.active .mobile-products-submenu {
  display: block;
  animation: slideDown 0.4s ease;
}

.mobile-category {
  border-bottom: 1px solid #e9ecef;
}

.mobile-category-title {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #ecf0f1;
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
  gap: 12px;
  transition: all 0.3s ease;
}

.mobile-category-title:hover {
  background: #d5dbdb;
  padding-left: 25px;
}

.category-toggle {
  margin-left: auto;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-category.active .category-toggle {
  transform: rotate(45deg);
}

.mobile-subcategory {
  display: none;
  background: #ffffff;
}

.mobile-category.active .mobile-subcategory {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-subcategory-item {
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 50px;
  color: #5a6c7d;
  text-decoration: none;
  font-size: 14px;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f8f9fa;
}

.mobile-subcategory-item:hover {
  background: #f8f9fa;
  color: #3498db;
  padding-left: 55px;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .simplified-mega-panel,
  .sticky-header .simplified-mega-panel {
    width: 900px;
  }
}

@media (max-width: 991px) {
  .simplified-mega-panel,
  .sticky-header .simplified-mega-panel {
    left: -10%;
  }
}

@media (max-width: 820px) {
  .simplified-mega-panel,
  .sticky-header .simplified-mega-panel {
    width: 90vw;
    left: 0;
    transform: none;
    border-radius: 0;
    margin-top: 0;
  }

  .simplified-mega-layout {
    flex-direction: column;
    min-height: auto;
    max-height: 80vh;
  }

  .categories-column {
    width: 100%;
    border-radius: 0;
  }

  .content-columns {
    flex-direction: column;
    border-radius: 0;
  }

  .subcategories-column {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
}

@media (max-width: 576px) {
  .mobile-products-toggle {
    font-size: 15px;
    padding: 12px 15px;
  }

  .mobile-subcategory-item {
    padding: 10px 15px 10px 40px;
    font-size: 13px;
  }
}

/* Mobile Menu Visibility */
.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}

.mobile-products-menu.active .mobile-products-submenu {
  display: block;
}

.mobile-category.active .mobile-subcategory {
  display: block;
}

/* Loading States */
.simplified-mega-panel.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
  .simplified-mega-panel,
  .mobile-products-menu {
    display: none !important;
  }
}

.mobile-navigation li {
  padding-left: 20px;
}

/* Enhanced Products Styling */
/* Modern Product Styling - Simple & Clean */

/* Container Improvements */
.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Grid Styling */
.row.m-b-100 {
    margin-bottom: 60px;
    gap: 0px;
}

.row.m-b-100 .image-column {
  margin-bottom: 40px;
}

/* Product Card - Simple Modern Style */
.image-column .basic-details {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.image-column .basic-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-block-two .inner-box {
    transition: transform 0.3s ease;
    height: 300px;
}
.services-block-two .inner-box:hover {
    transform: translateY(-5px);
}
.section-heading {
    font-weight: 600;
    font-size: 2.2rem;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.service-text {
    font-size: 0.95rem;
    color: #666;
}
.icon-box .icon {
    font-size: 2rem;
}

.icon-bar i {
  font-size: 1.2rem !important;
  padding-left: 5px;
}

.services-block-two .inner-box:hover > .service-title,
.services-block-two .inner-box:hover > .service-text,
.services-block-two .inner-box:hover > .icon {
  color: white !important;
}

/* Product Image */
.prdBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prdBox:hover img {
    transform: scale(1.05);
}

/* Product Title */
.prdBox h4 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* Product Details Section */
.ProductBox .ProductInfo {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.product-details .basic-details {
  margin: 0% !important;
}

/* Image Carousel */
.carousel-outer {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.image-carousel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Product Info Column */
.info-column {
    padding: 30px;
}

.details-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Modern Tabs */
.ProductTab {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
}

.ProductTab .nav-item {
    margin-right: 10px;
}

.ProductTab .nav-link {
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 500;
    color: #6c757d;
    background: #f8f9fa;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.ProductTab .nav-link.active,
.ProductTab .nav-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Tab Content */
.tab-content {
    padding: 20px;
}

.tab-pane .text {
    line-height: 1.7;
    color: #495057;
    font-size: 16px;
}

/* Filter Tabs - OurProducts */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-tabs li {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
}

.filter-tabs li:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.filter-tabs li.active {
    background: #007bff;
    border-color: #007bff;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Services Block - Product Cards */
.services-block {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.services-block .inner-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.services-block .inner-box:hover {
    border: solid 3px #0074D9 !important;
} 

.services-block .inner-box .image .overlay-box{
	border: none;

}

.services-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


.services-block .image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.services-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-block:hover .image img {
    transform: scale(1.05);
}

/* Overlay */
.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 154, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.services-block:hover .overlay-box {
    opacity: 1;
}

.overlay-inner .content {
    text-align: center;
    color: white;
    height: 100%;
    width: 100%;
    padding: 0px;
}

.overlay-inner .icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.overlay-inner .text {
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Modern Button */
.theme-btn {
    background: #ffffff;
    color: #007bff;
    border: 2px solid rgba(0, 123, 255, 0.9);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.theme-btn:hover {
    background: transparent;
    color: #ffffff !important;
    transform: translateY(-2px);
    border: none;
    outline: none;
}

.theme-btn .txt:hover {
    color: #ffffff !important;
}
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

/* For showing 2 slides at once on larger screens */
@media (min-width: 768px) {
    .carousel-slide {
        min-width: 50%;
    }
}

.services-block {
    width: 100%;
    margin-bottom: 20px;
}

.inner-box {
    /* background: #fff; */
    border-radius: 8px;
    /* overflow: hidden; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-to-action-section-three a {
  color: var(--main-color)  ;
}
.call-to-action-section-three .btn-column .inner-column .theme-btn:hover {
  color: blue !important;
}

.content a {
  color: #000;
}

.btn-style-one, .btn-style-two {
  color: black;
}
.btn-style-one:hover, .btn-style-two:hover {
  color: black;
}

.inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.inner-box:hover .image img {
    transform: scale(1.05);
}

.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-box:hover .overlay-box {
    opacity: 1;
}

.overlay-inner {
    text-align: center;
}

.lower-box {
    padding: 20px;
    text-align: center;
}

.lower-box h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.lower-box h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lower-box h3 a:hover {
    color: #007bff;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #007bff;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 767px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .image {
        height: 200px;
    }
    
    .lower-box {
        padding: 15px;
    }
    
    .lower-box h3 {
        font-size: 16px;
    }
}

/* Smooth animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide {
    animation: slideIn 0.5s ease-out;
}

/* Auto-play progress indicator (optional) */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #007bff;
    transition: width 0.1s linear;
    z-index: 5;
}

/* Lower Box */
.lower-box {
    padding: 25px;
    text-align: center;
}

.lower-box h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lower-box h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lower-box h3 a:hover {
    color: #007bff;
}

/* What We Do Section */
.what-we-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.separate {
    width: 60px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
    margin-bottom: 25px;
}

/* Services Block Two */
.services-block-two .inner-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.services-block-two .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-block-two .icon-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.services-block-two h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-block-two h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-block-two h3 a:hover {
    color: #007bff;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* Fix text overflow issues */
.prdBox h4,
.product-title,
.lower-box h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* For multi-line text truncation */
.text.CondenseText,
.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 4.2em; /* 3 lines * 1.4 line-height */
}

/* Product card improvements */
.prdBox {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
    margin-bottom: 0px !important;
}

.prdBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.prdBox img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.prdBox h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
    padding: 0 5px;
}

/* Tab styling */
.ProductTab .nav-link {
    border-radius: 20px;
    padding: 8px 20px;
    margin-right: 10px;
    border: 2px solid #e9ecef;
    color: #666;
    font-weight: 500;
}

.ProductTab .nav-link.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.text {
  color: black;
}

.services-block-two .inner-box h3 a {
  text-transform: uppercase !important;
}
.details-header h2 {
  text-transform: uppercase !important;
}
/* Responsive fixes */
@media (max-width: 768px) {
    .prdBox h4 {
        font-size: 14px;
    }
    
    .text.CondenseText {
        -webkit-line-clamp: 2;
        max-height: 2.8em;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .details-header h2 {
        font-size: 24px;
    }
    
    .info-column {
        padding: 25px;
    }

    #totop {
      bottom: 50px;
    }
    
    .image-carousel img {
        height: 300px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-tabs li {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .sec-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .prdBox img {
        height: 200px;
    }
    
    .services-block .image {
        height: 200px;
    }
    
    .ProductTab .nav-link {
        padding: 8px 16px;
        font-size: 14px;
    }
}

