:root {
            --primary-color: #d9534f;
            --secondary-color: #f0ad4e;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
            --success-color: #5cb85c;
            --brass-color: #CD9B1D;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--dark-color);
            color: #fff;
            padding: 8px 0;
            font-size: 14px;
        }

        .logo-container img {
            height: 100px; /* Adjust the height as needed */
            max-height: 120px; /* Optional: Set a maximum height */
            transition: transform 0.3s ease; /* Optional: Add a hover effect */
        }

        .logo-container img:hover {
            transform: scale(1.05); /* Slightly enlarge on hover */
        }

        .navbar {
            padding: 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fff;
            animation: slideDown 0.5s;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .navbar-nav .nav-item {
            padding: 0 10px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--brass-color);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            border-radius: 5px;
        }

        .dropdown-item {
            padding: 8px 15px;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #f5f5f5;
            color: var(--brass-color);
        }

        /* Remove the circular underlines from dropdown toggles */
        .dropdown-toggle::after {
            display: none !important;
        }

        /* Optional: If you want to keep some indication of dropdown items but without circles */
        .dropdown-toggle {
            padding-right: 1rem !important;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 400px;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 5%;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            max-width: 600px;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 5px;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        .btn-hero {
            background-color: var(--brass-color);
            color: #fff;
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            background-color: #b38a1d;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Style for VIEW DETAILS Button */
        .btn-explore {
            margin-top: auto;
            display: inline-block;
            width: 100%;
            padding: 10px 20px;
            font-size: 16px;
            text-align: center;
            background-color: #007BFF;
            color: #fff;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-explore:hover {
            background-color: #0056b3; /* Darker shade on hover */
            transform: scale(1.05); /* Slight zoom effect */
        }

        .btn-explore:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(205, 155, 29, 0.5); /* Focus ring */
        }

        /* Company Highlights */
        .company-highlights {
            padding: 50px 0;
            background-color: #f9f9f9;
        }

        .highlight-icon {
            color: var(--brass-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .highlight-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--brass-color);
        }

        .section-padding {
            padding: 70px 0;
        }

        .section-bg-light {
            background-color: #f8f9fa;
        }

        /* Product Cards */
        .product-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: 0 8px 32px rgba(205,155,29,0.15), 0 1.5px 6px rgba(0,0,0,0.08);
            transform: translateY(-6px) scale(1.02);
            border-color: var(--brass-color);
        }

        .product-img-container {
            height: 220px;
            background: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img {
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.4s;
        }

        .product-card:hover .product-img {
            transform: scale(1.08) rotate(-2deg);
        }

        .product-details {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-details p {
            flex-grow: 1;
            margin-bottom: 15px;
        }

        .product-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .btn-explore, .btn-submit {
            background: var(--brass-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 10px 28px;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 2px 8px rgba(205,155,29,0.08);
            transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .btn-explore:hover, .btn-submit:hover {
            background: #b88a1a;
            color: #fff;
            box-shadow: 0 6px 24px rgba(205,155,29,0.18);
            transform: translateY(-2px) scale(1.04);
        }

        /* Product Detail Page */
        .product-detail-img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-detail-title {
            color: var(--brass-color);
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 18px;
            border-left: 5px solid var(--brass-color);
            padding-left: 18px;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #fffbe7 60%, transparent 100%);
        }

        .product-specs {
            background: #f8f6f2;
            border-radius: 6px;
            padding: 18px 20px;
            margin-top: 18px;
            box-shadow: 0 1px 6px rgba(205,155,29,0.06);
        }

        .spec-title {
            color: var(--brass-color);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .spec-item {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .spec-label {
            font-weight: 600;
            min-width: 120px;
            color: #222;
        }

        .product-description {
            font-size: 1.08rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .table-specs {
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            background: #fff;
            box-shadow: 0 1px 4px rgba(0,0,0,0.03);
            margin-bottom: 18px;
        }

        .table-specs td, .table-specs th {
            border: 1px solid #e0e0e0;
            padding: 10px 8px;
            background: #faf9f7;
            font-size: 1rem;
            transition: background 0.2s;
        }

        .table-specs tr:hover td {
            background: #fffbe7;
        }

        /* Company Profile */
        .company-profile {
            background-color: #fff;
        }

        .company-image {
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .company-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .company-image:hover img {
            transform: scale(1.05);
        }

        .company-content {
            padding: 20px 0;
        }

        .company-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* Quality Section */
        .quality-certifications {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .certification-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
        }

        .certification-icon {
            font-size: 24px;
            min-width: 40px;
            color: var(--brass-color);
        }

        .certification-item h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .certification-item p {
            margin: 5px 0 0 0;
            font-size: 14px;
            color: #666;
        }

        /* Contact Section */
        .contact-form-container,
        .contact-info,
        .map-container,
        .info-card,
        .faq-section {
            transition: transform 0.3s ease;
        }

        .contact-form-container:hover,
        .contact-info:hover,
        .map-container:hover,
        .info-card:hover,
        .faq-section:hover {
            transform: translateY(-5px);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            background: var(--brass-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-info-item h5 {
            color: var(--brass-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .social-links {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--brass-color);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #8b6b1a;
            color: white;
            transform: translateY(-3px);
        }

        .info-card {
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-icon {
            font-size: 2rem;
            color: var(--brass-color);
            margin-bottom: 1rem;
        }

        .info-card h4 {
            color: var(--brass-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--brass-color);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--brass-color);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CD9B1D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .btn-submit {
            background-color: var(--brass-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #8b6b1a;
            color: white;
            transform: translateY(-2px);
        }

        .form-control:focus {
            border-color: var(--brass-color);
            box-shadow: 0 0 0 0.2rem rgba(205, 155, 29, 0.25);
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 70px 0 20px;
        }

        .footer-title {
            color: var(--brass-color);
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--brass-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--brass-color);
            text-decoration: none;
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
        }

        .social-links {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: #fff;
            background-color: #444;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--brass-color);
            transform: translateY(-3px);
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 999;
            background: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 2px solid #000;
        }

        .whatsapp-button i {
            font-size: 35px;
            color: #000;
        }

        /* Contact Button */
        .contact-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 2px solid #000;
        }

        .contact-button i {
            font-size: 35px;
            color: #000;
        }

        /* WhatsApp & Contact Button Hover Effects */
        .whatsapp-button:hover, .contact-button:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            background: #000;
        }

        .whatsapp-button:hover i, .contact-button:hover i {
            color: #fff;
        }

        /* Parent container for the cards */
        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px; /* Space between cards */
            justify-content: center; /* Center align the cards */
        }

        /* Individual card styling */
        .card {
            flex: 1 1 calc(25% - 20px); /* Each card takes up 25% of the row, minus the gap */
            max-width: 300px; /* Set a maximum width for consistency */
            min-width: 250px; /* Set a minimum width for responsiveness */
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Hover effect for cards */
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        /* Icon styling */
        .card-icon {
            font-size: 40px;
            color: var(--brass-color);
            margin-bottom: 15px;
        }

        /* Title styling */
        .card-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        /* Description styling */
        .card-description {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .card {
                flex: 1 1 calc(50% - 20px); /* Two cards per row on smaller screens */
            }
        }

        @media (max-width: 576px) {
            .card {
                flex: 1 1 100%; /* One card per row on very small screens */
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-section {
                height: 60vh;
            }
            
            .section-padding {
                padding: 50px 0;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-content {
                padding: 20px;
            }
            
            .hero-section {
                height: 50vh;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .product-img-container {
                height: 120px;
            }
            
            .contact-info {
                margin-top: 30px;
            }
            
            .contact-info-item {
                margin-bottom: 1rem;
            }
            
            .info-card {
                margin-bottom: 1rem;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .hero-section {
                height: 40vh;
                min-height: 300px;
            }
            
            .section-padding {
                padding: 30px 0;
            }
            
            .navbar-brand img {
                max-height: 40px;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
                bottom: 90px;
                right: 20px;
            }
            
            .whatsapp-button i {
                font-size: 30px;
            }
            
            .contact-button {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .contact-button i {
                font-size: 30px;
            }
        }

        /* Page transition effects */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Breadcrumb styling */
        .breadcrumb {
            background: #fffbe7;
            border-radius: 4px;
            padding: 8px 18px;
            margin-bottom: 18px;
            font-size: 1.01rem;
        }

        .breadcrumb-item a {
            color: var(--brass-color);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--brass-color);
            font-weight: 600;
        }

        /* Back button */
        .back-button {
            display: inline-block;
            margin-bottom: 18px;
            color: var(--brass-color);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .back-button:hover {
            color: #b88a1d;
            text-decoration: underline;
        }

        /* Quality Page Specific Styles */
        .quality-page-header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://pixabay.com/get/gd22583f91bccc3fb7287dfe81f649b62234c4c107753bf6b0a3ec9a00221d094cbc757991a4a33feb6acb03caac16e584fa246b692dcb0901d252e411e6a8b81_1280.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            margin-bottom: 50px;
        }

        .quality-logo {
            width: 150px;
            height: 150px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .quality-certifications {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .certification-item {
            flex: 1 1 calc(50% - 20px);
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            min-width: 250px;
        }

        .certification-icon {
            font-size: 24px;
            min-width: 40px;
            color: var(--brass-color);
        }

        .certification-item h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .certification-item p {
            margin: 5px 0 0 0;
            font-size: 14px;
            color: #666;
        }

        .quality-process {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--brass-color);
            z-index: 1;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--brass-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .quality-testing-equipment {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            margin-top: 50px;
        }

        .equipment-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .equipment-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .equipment-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        /* Product Carousel Styles */
        #productCarousel {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            background-color: #f8f9fa;
        }

        #productCarousel .carousel-inner {
            background-color: #f8f9fa;
            padding: 30px;
        }

        #productCarousel .product-detail-img {
            height: 600px;
            object-fit: contain;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        #productCarousel .carousel-item:hover .product-detail-img {
            transform: scale(1.02);
        }

        #productCarousel .carousel-control-prev,
        #productCarousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(205, 155, 29, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 30px;
            opacity: 1;
            transition: all 0.3s ease;
        }

        #productCarousel .carousel-control-prev:hover,
        #productCarousel .carousel-control-next:hover {
            background-color: var(--brass-color);
            transform: translateY(-50%) scale(1.1);
        }

        #productCarousel .carousel-control-prev {
            left: 0;
        }

        #productCarousel .carousel-control-next {
            right: 0;
        }

        #productCarousel .carousel-indicators {
            margin-bottom: 15px;
        }

        #productCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background-color: var(--brass-color);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        #productCarousel .carousel-indicators button.active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Navbar Hover Effects */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--brass-color);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        /* Product Card Hover Effects */
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-img-container {
            overflow: hidden;
        }

        .product-img {
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        /* Button Hover Effects */
        .btn-hero, .btn-explore, .btn-submit {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-hero:before, .btn-explore:before, .btn-submit:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-hero:hover:before, .btn-explore:hover:before, .btn-submit:hover:before {
            width: 300px;
            height: 300px;
        }

        /* Social Links Hover Effects */
        .social-links li a {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .social-links li a:hover {
            transform: translateY(-3px);
        }

        .social-links li a:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .social-links li a:hover:after {
            transform: scale(1);
        }

        /* Contact Info Item Hover Effects */
        .contact-info-item {
            transition: transform 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(10px);
        }

        /* Expertise Card Hover Effects */
        .expertise-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .expertise-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .expertise-icon {
            transition: transform 0.3s ease;
        }

        .expertise-card:hover .expertise-icon {
            transform: rotateY(180deg);
        }

        /* Value Card Hover Effects */
        .value-card {
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .value-card:hover {
            background: var(--brass-color);
            color: white;
            transform: translateY(-5px);
        }

        .value-card:hover .value-icon {
            color: white;
        }

        /* Ensure all cards have the same height */
        .value-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 100%; /* Make all cards the same height */
            padding: 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        /* Add hover effect for better interactivity */
        .value-card:hover {
            transform: translateY(-5px);
        }

        /* Ensure icons and text are aligned consistently */
        .value-icon {
            font-size: 40px;
            color: #333;
            margin-bottom: 15px;
        }

        .value-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }

        .value-card p {
            font-size: 14px;
            color: #666;
            text-align: center;
            margin: 0;
        }

        /* Footer Link Hover Effects */
        .footer-links a {
            position: relative;
            padding-left: 15px;
            transition: padding-left 0.3s ease;
        }

        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            padding-left: 20px;
        }

        .footer-links a:hover:before {
            opacity: 1;
        }

        /* Logo Hover Effect */
        .logo-container svg {
            transition: transform 0.3s ease;
        }

        .logo-container:hover svg {
            transform: scale(1.05);
        }

        /* Center text on the banner image */
        .banner-image {
            position: relative;
        }

        .banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-40%, -40%);
            color: white;
            font-size: 2.5rem;
            font-weight: lighter;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            text-align: center;
        }

        /* Quality Section Styling */
        #quality .section-title span {
            display: inline-block;
            width: 50px;
            height: 4px;
            background: var(--brass-color);
            margin-left: 10px;
            vertical-align: middle;
        }

        #quality .quality-assurance-text {
            font-size: 1.1rem;
            max-width: 700px;
        }

        #quality .quality-certifications {
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        #quality .certification-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        #quality .certification-item:hover {
            background-color: #f9f9f9;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        #quality .certification-icon {
            background: var(--brass-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        #quality .certification-item:hover .certification-icon {
            transform: scale(1.1);
        }

        #quality .certification-item h4 {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
            color: #333;
        }

        #quality .certification-item p {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        #quality .quality-process h3,
        #quality .quality-testing-equipment h3 {
            font-weight: 700;
        }

        #quality .process-step p {
            font-size: 0.98rem;
        }

        #quality .equipment-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            list-style: none;
            padding: 0;
        }

        #quality .equipment-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            width: 180px; /* Adjust width as needed */
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        #quality .equipment-item:hover {
            box-shadow: 0 8px 32px rgba(205,155,29,0.15), 0 1.5px 6px rgba(0,0,0,0.08);
            transform: translateY(-6px);
            border-color: var(--brass-color);
        }

        #quality .equipment-item i {
            font-size: 2rem;
            color: var(--brass-color);
            margin-bottom: 10px;
        }

        #quality .equipment-item br {
            display: none; /* Hide the <br> tag */
        }

        #quality .equipment-item h5 {
            font-size: 1rem;
            margin: 0;
            color: #555;
        }