<?php
// style.css
/*
Theme Name: innovativeworkholding
Theme URI: https://www.innovativeworkholding.com
Author: SKP
Author URI: https://www.innovativeworkholding.com
Description: A professional theme for precision measurement instruments company
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout, custom-menu, featured-images, theme-options
*/

/* Import CSS from your existing design */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

	/* General Styles */
    body {

    margin: 0;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Orange Bar */
.top-bar {
    background-color: #6e0000;
    color: white;
    font-size: 14px;
    padding: 18px 0;
}
.top-bar-content { display: flex; justify-content: space-between; }

/* Main Header */
.main-header { background: white; padding: 5px 0; border-bottom: 1px solid #eee; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 80px; }
.network-links { display: flex; gap: 30px; }
.icon-link { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: bold; color: #333; }
.icon { color: #E65100; font-size: 18px; }

/* Navigation Bar */
.nav-bar { background-color: #8D8D8D; color: white; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; }
.nav-links li a { 
    display: block; padding: 15px 20px; color: white; 
    text-decoration: none; font-size: 14px; font-weight: 500;
}
.nav-links li a:hover { background-color: #757575; }
.search-icon { cursor: pointer; padding: 0 10px; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .top-bar-content, .header-flex, .nav-flex { 
        flex-direction: column; text-align: center; gap: 10px; 
    }
    .nav-links { flex-direction: column; width: 100%; }
    .nav-links li { border-bottom: 1px solid #999; }
    .network-links { justify-content: center; }
}


/* Footer Background Color */
.footer-section {
  background-color: #333333; /* Matches the grey in your image */
  font-family: 'Arial', sans-serif;
}

/* Link Styling */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #f8f9fa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff8c00; /* Orange Hover */
}

/* Icon Colors */
.text-orange {
  color: #ff8c00;
}

/* Social Media Circles */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
}

.icon-link p {
    margin: 0;
}
:root {
  --brand-orange: #f39223;
  --footer-grey: #808285;
}

.text-orange { color: var(--brand-orange); }
.btn-orange { background-color: var(--brand-orange); border: none; }
.bg-grey { background-color: var(--footer-grey); }

/* About Image Overlap Effect */
.about-img-wrapper { position: relative; padding-bottom: 50px; }
.main-img { width: 80%; }
.overlay-img {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 10%;
  border: 5px solid #fff;
}


   /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: 20px;
            font-weight: bold;
            color: #990000;
            margin-bottom: 15px;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .read-more-btn {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }
        
        .read-more-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
            color: white;
        }
        
        .read-more-btn i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn:hover i {
            transform: translateX(3px);
        }
        

         /* Vision Section - RED & GRAY THEME */
        .vision-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            text-align: center;
        }
        
        .vision-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 30px;
        }
        
        .vision-content {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            background: linear-gradient(135deg, #cc0000, #990000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            color: #666;
            font-weight: 500;
        }


          /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .partner-card {
            background: white;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .partner-logo {
            font-size: 32px;
            font-weight: bold;
            color: #990000;
        }
        
        /* Vision Section Styling */
        .vision-sections {
            background:  #1e2129 !important; 
            color: #ffffff;
            padding: 100px 0;
        }
        .vision-sections .tagline-badge {
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px;
            padding: 4px 15px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .vision-sections .vision-title {
            font-weight: 700;
            line-height: 1.3;
            max-width: 500px;
        }
        .vision-img {
            border-radius: 8px;
            width: 100%;
            height: auto;
        }
        .copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 14px;
}
 /* Breadcrumb */
        .breadcrumb-nav {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 14px;
        }
        
        .breadcrumb-item {
            color: #666;
        }
        
        .breadcrumb-item.active {
            color: #990000;
            font-weight: 500;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: #999;
            content: ">";
        }


         
        /* Category Sidebar */
        .category-sidebar {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            position: sticky;
            top: 100px;
        }
        
        .category-title {
            font-size: 20px;
            font-weight: bold;
            color: #990000;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f5f5f5;
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 10px;
            font-size: 18px;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-item {
            margin-bottom: 8px;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .category-item:hover {
            background-color: #fff5f5;
            transform: translateX(5px);
        }
        
        .category-item.active {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
        }
        
        .category-name {
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        
        .category-name i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: #cc0000;
        }
        
        .category-item.active .category-name i {
            color: white;
        }
        
        .category-count {
            background-color: #f5f5f5;
            color: #666;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            min-width: 35px;
            text-align: center;
        }
        
        .category-item.active .category-count {
            background-color: rgba(255,255,255,0.2);
            color: white;
        }
        
        /* Filter Section */
        .filter-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .filter-group {
            margin-bottom: 25px;
        }
        
        .filter-group:last-child {
            margin-bottom: 0;
        }
        
        .filter-group-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .price-range {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .price-input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .price-input:focus {
            outline: none;
            border-color: #cc0000;
        }
        
        .filter-checkbox {
            margin-bottom: 10px;
        }
        
        .filter-checkbox label {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: color 0.3s;
            font-size: 14px;
        }
        
        .filter-checkbox label:hover {
            color: #cc0000;
        }
        
        .filter-checkbox input[type="checkbox"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            accent-color: #cc0000;
        }
        
        /* Product Listing Section */
        .product-section {
            padding: 30px 0 60px;
        }
        
        /* View Options */
        .view-options {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .results-count {
            color: #666;
            font-size: 16px;
        }
        
        .results-count strong {
            color: #990000;
        }
        
        .view-controls {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .view-btn {
            background: #f5f5f5;
            border: 1px solid #ddd;
            padding: 8px 12px;
            border-radius: 5px;
            color: #666;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .view-btn:hover {
            background: #e0e0e0;
        }
        
        .view-btn.active {
            background: #cc0000;
            color: white;
            border-color: #cc0000;
        }
        
        .sort-select {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: white;
            color: #333;
            cursor: pointer;
            font-size: 14px;
        }
        
        .sort-select:focus {
            outline: none;
            border-color: #cc0000;
        }
        
        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .product-model {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .product-features {
            margin-bottom: 15px;
        }
        
        .feature-tag {
            display: inline-block;
            background: #f5f5f5;
            color: #666;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-top: 15px;
            border-top: 1px solid #f5f5f5;
        }
        
        .product-price {
            font-size: 20px;
            font-weight: bold;
            color: #990000;
        }
        
        .product-rating {
            color: #666;
            font-size: 14px;
        }
        
        .product-rating i {
            color: #ffa500;
            margin-right: 2px;
        }
        
        .product-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
            flex: 1;
            text-align: center;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
            color: white;
        }
        
        .btn-secondary {
            background: #f5f5f5;
            color: #666;
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
        }
        
        .btn-secondary:hover {
            background: #e0e0e0;
            color: #333;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .page-link {
            color: #666;
            padding: 10px 15px;
            margin: 0 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .page-link:hover {
            background: #f5f5f5;
            color: #333;
        }
        
        .page-item.active .page-link {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border-color: #cc0000;
        }

         /* Product Detail Section */
        .product-detail {
            padding: 40px 0;
            background: white;
        }
        
        /* Product Image Gallery */
        .product-gallery {
            position: relative;
            margin-bottom: 30px;
        }
        
        .main-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: #f8f9fa;
            cursor: zoom-in;
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .main-image-container:hover .main-image {
            transform: scale(1.1);
        }
        
        .zoom-lens {
            position: absolute;
            border: 2px solid #cc0000;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: none;
            pointer-events: none;
            box-shadow: 0 0 0 1000px rgba(0,0,0,0.5);
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            opacity: 0.7;
        }
        
        .thumbnail:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .thumbnail.active {
            border-color: #cc0000;
            opacity: 1;
        }
        
        /* Product Info */
        .product-info {
            padding: 0 20px;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .product-model {
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .product-status {
            display: inline-block;
            background: #28a745;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .inquiry-btn {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .inquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(204, 0, 0, 0.3);
            color: white;
        }
        
        /* Product Features */
        .product-features {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .features-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #555;
        }
        
        .feature-item i {
            color: #cc0000;
            margin-right: 10px;
            width: 20px;
        }
        
        /* Tabs Section */
        .tabs-section {
            margin-top: 40px;
        }
        
        .nav-tabs {
            border-bottom: 2px solid #e0e0e0;
        }
        
        .nav-tabs .nav-link {
            color: #666;
          
            padding: 12px 25px;
            font-weight: 500;
            transition: all 0.3s;
            border-radius: 8px 8px 0 0;
        }
        
        .nav-tabs .nav-link:hover {
            color: #cc0000;
            background: rgba(204, 0, 0, 0.05);
        }
        
        .nav-tabs .nav-link.active {
            color: #cc0000 !important;
            background: white;
        
            border-bottom: 3px solid #cc0000;
        }
        
        .tab-content {
            padding: 30px 0;
        }
        
        /* Description Tab */
        .description-content {
            line-height: 1.8;
            color: #555;
        }
        
        .description-content h3 {
            color: #333;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .description-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .description-content li {
            margin-bottom: 8px;
        }
        
        /* Specifications Tab */
        .specifications-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .specifications-table th {
            background: #f8f9fa;
            color: #333;
            font-weight: 600;
            text-align: left;
            padding: 15px;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .specifications-table td {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
            color: #555;
        }
        
        .specifications-table tr:last-child td {
            border-bottom: none;
        }
        
        .specifications-table tr:hover {
            background: #f8f9fa;
        }
        
        /* Applications Tab */
        .application-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .application-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #cc0000;
        }
        
        .application-card h4 {
            color: #990000;
            margin-bottom: 10px;
        }
        
        .application-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Downloads Tab */
        .download-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        
        .download-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .download-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        
        .download-item i {
            color: #cc0000;
            margin-right: 15px;
            font-size: 20px;
        }
        
        .download-item span {
            color: #333;
            font-weight: 500;
        }
        
        /* Related Products */
        .related-products {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #e0e0e0;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #cc0000, #990000);
        }
        
        .related-product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }
        
        .related-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .related-product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .related-product-content {
            padding: 20px;
        }
        
        .related-product-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .related-product-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .view-product-btn {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        
        .view-product-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
            color: white;
        }
        
/* Search icon */
.mmm-search-icon > a:before {
  content: "\f179";
  font-family: dashicons;
  font-size: 18px;
}

/* Hide text */
.mmm-search-icon > a {
  text-indent: -9999px;
}

/* Search box */
.mmm-search-box {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.mmm-search-icon.active .mmm-search-box {
  opacity: 1;
  visibility: visible;
}

.mmm-search-box input {
  width: 220px;
  padding: 8px 10px;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.badge {
    width: fit-content;
}


 /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(153, 0, 0, 0.8), rgba(153, 0, 0, 0.8)), url('https://picsum.photos/seed/contact-hero/1920/400.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .contact-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Info Section */
        .contact-info-section {
            padding: 60px 0;
            background: white;
        }
        
        .contact-info-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-left: 4px solid #cc0000;
        }
        
        .contact-info-icon {
            font-size: 40px;
            color: #cc0000;
            margin-bottom: 20px;
        }
        
        .contact-info-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        
        .contact-info-text {
            color: #666;
            line-height: 1.6;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            height: 500px;
            position: relative;
        }
        
        .map-container {
            height: 100%;
            width: 100%;
        }
        
        .map-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 10;
            max-width: 300px;
        }
        
        .map-overlay h4 {
            color: #990000;
            margin-bottom: 15px;
        }
        
        .map-overlay p {
            margin-bottom: 10px;
            color: #555;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .contact-form-container {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #cc0000, #990000);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: #333;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: #cc0000;
            box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
            outline: none;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #cc0000, #990000);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(204, 0, 0, 0.3);
            color: white;
        }
        
        .form-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Company Info Section */
        .company-info-section {
            padding: 60px 0;
            background: white;
        }
        
        .company-info-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid #cc0000;
        }
        
        .company-info-card h3 {
            color: #990000;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .company-info-card p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .company-info-card ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
        
        .company-info-card li {
            color: #555;
            margin-bottom: 8px;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 4px solid #f8f9fa;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .team-member h4 {
            color: #333;
            margin-bottom: 5px;
        }
        
        .team-member p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .team-member .social-links {
            margin-top: 10px;
        }
        
        .team-member .social-links a {
            color: #666;
            font-size: 18px;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .team-member .social-links a:hover {
            color: #cc0000;
            transform: translateY(-3px);
        }
        nav.breadcrumb-nav a {
    text-decoration: none;
    color: #6e0000;
}