 /* Base font settings */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-weight: 400;
            color: #333;
            background-color: #f9f9f9;
            line-height: 1.6;
        }

        /* Typography System */
        h1, .display-1, .display-2, .display-3, .display-4 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h2, h3, h4, .section-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        h5, h6, .card-title, .product-title, .machine-title {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            line-height: 1.4;
        }

        p, .lead, .product-description, .machine-description, .review-text {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.6;
        }

        .navbar-brand {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            letter-spacing: -0.02em;
        }

        .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            letter-spacing: 0.01em;
        }

        .btn {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .stats-number {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .stats-text, .product-badge {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        .feature-box h3, .service-feature-content h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .feature-box p, .service-feature-content p {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }

        .footer h5 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .footer-links, .contact-info {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }

        /* Specific element styling */
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-section .lead {
            font-size: 1.3rem;
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
        }

        .feature-box h3 {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .product-title, .machine-title {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .navbar-brand span {
            color: var(--accent);
        }

        :root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --light: #f8f9fa;
            --dark: #212529;
            --accent: #ff6b00;
            --accent-light: #ff983d;
            --accent-rgb: 255, 107, 0;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background-color: white !important;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('@imgs/hero.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
		
		.heroabout-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('@imgs/about.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }

        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
            color: var(--dark);
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }

        .section-title.center {
            text-align: center;
        }

        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .feature-box {
            padding: 30px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--accent);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            padding: 12px 30px;
            border-radius: 30px;
        }

        .btn-primary:hover {
            background-color: #e55a00;
            border-color: #e55a00;
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            border-color: white;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
        }

        .btn-outline-primary:hover {
            background-color: white;
            color: var(--primary);
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 15px 0;
            border-left: 4px solid var(--accent);
        }

        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.2rem;
        }

        .stats-number {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .stats-text {
            font-size: 1.1rem;
            color: var(--secondary);
        }

        .nav-link {
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover:after {
            width: 100%;
        }
		
		.card-title {
            color: var(--primary);
        }

        .highlight {
            color: var(--accent);
        }

        .quote-form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .service-list {
            list-style: none;
            padding: 0;
        }

        .service-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list i {
            color: var(--accent);
            margin-right: 10px;
        }

        .customer-review-section {
            padding: 80px 0;
            background-color: white;
        }

        .news-section {
            padding: 80px 0;
            background-color: var(--light);
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
        }

        .news-bullet {
            color: var(--accent);
            margin-right: 10px;
        }

        .page-section {
            padding: 80px 0;
        }
		
		 /* Enhanced Product Cards */
        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
            background: white;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .product-image {
           /* height: 200px;*/
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 25px;
        }

        .product-description {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .product-badges {
            margin-bottom: 15px;
        }

        .product-badge {
            display: inline-block;
            background: rgba(13, 110, 253, 0.1);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
        }

        /* Enhanced Machine Cards */
        .machine-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            height: 100%;
            background: white;
        }

        .machine-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .machine-image {
            /*height: 200px;*/
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .machine-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .machine-card:hover .machine-image img {
            transform: scale(1.05);
        }

        .machine-content {
            padding: 25px;
        }

        .machine-description {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .machine-specs {
            margin-bottom: 15px;
        }

        .machine-specs ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .machine-specs li {
            margin-bottom: 5px;
            color: var(--secondary);
        }

        /* Machine Detail Page Styles - Enhanced */
        .machine-detail-section {
            padding: 80px 0;
            background: white;
        }

        .machine-detail-header {
            background: linear-gradient(135deg, var(--accent), #e55a00);
            color: white;
            padding: 60px 0;
            margin-bottom: 50px;
            text-align: center;
        }

        .machine-detail-image {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }

        .machine-detail-image:hover {
            transform: translateY(-5px);
        }

        .machine-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Enhanced Specs Card */
        .specs-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            /* height: 100%; */
            border-top: 5px solid var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .specs-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), #ff983d);
        }

        .specs-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .specs-card h4 {
            color: var(--dark);
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }

        .specs-card h4 i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.6rem;
        }

        .specs-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.1);
        }

        .specs-table th {
            background: linear-gradient(135deg, var(--accent), #e55a00);
            color: white;
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
            width: 35%;
        }

        .specs-table td {
            padding: 16px 20px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            font-weight: 500;
            color: var(--dark);
        }

        .specs-table tr:last-child td {
            border-bottom: none;
        }

        .specs-table tr:hover td {
            background-color: #e9ecef;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: flex-start;
            transition: background-color 0.3s ease;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li:hover {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding-left: 10px;
            padding-right: 10px;
        }

        .feature-list i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.3rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .feature-list span {
            color: var(--dark);
            font-weight: 500;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 30px;
            background: rgba(var(--accent-rgb), 0.1);
        }

        .back-button:hover {
            color: white;
            background: var(--accent);
            transform: translateX(-5px);
        }

        .machine-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .machine-stat {
            background: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--accent);
            transition: transform 0.3s ease;
        }

        .machine-stat:hover {
            transform: translateY(-5px);
        }

        .machine-stat i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .machine-stat h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .machine-stat p {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }

        /* Customer Service Section */
        .customer-service-section {
            padding: 80px 0;
            background: white;
        }

        .service-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-left: 5px solid #ff6b00;
        }

        .service-card:nth-child(2) {
            border-left-color: #3498db;
        }

        .service-card:nth-child(3) {
            border-left-color: #2ecc71;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-card-header {
            background: linear-gradient(135deg, #ff6b00, #e55a00);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .service-card:nth-child(2) .service-card-header {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .service-card:nth-child(3) .service-card-header {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        .service-card-header h3 {
            font-size: 1.5rem;
            margin: 0;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
        }

        .service-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 107, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .service-icon i {
            font-size: 1.5rem;
            color: #ff6b00;
        }

        .service-card:nth-child(2) .service-icon {
            background: rgba(52, 152, 219, 0.1);
        }

        .service-card:nth-child(2) .service-icon i {
            color: #3498db;
        }

        .service-card:nth-child(3) .service-icon {
            background: rgba(46, 204, 113, 0.1);
        }

        .service-card:nth-child(3) .service-icon i {
            color: #2ecc71;
        }

        .service-feature-content p {
            color: #7f8c8d;
            margin: 0;
        }

        .service-card-footer {
            padding: 20px;
            background: #f8f9fa;
            text-align: center;
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: #ff6b00;
        }

        .contact-info a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ff6b00;
        }

        .service-hours {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .service-hours h4 {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .service-hours p {
            color: #7f8c8d;
            margin: 0;
        }

        .customer-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            margin: 10px;
        }

        .footer {
            background: linear-gradient(135deg, #1a2a3a 0%, #0d1723 100%);
            color: white;
            padding: 70px 0 0;
            margin-top: auto;
        }

        .footer h5 {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            color: white;
            font-size: 1.3rem;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), #3498db);
            border-radius: 3px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            margin-top: 50px;
            text-align: center;
        }

        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #e55a00);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #e55a00, var(--accent));
            transform: translateY(-5px);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 60px;
            height: 60px;
            z-index: 1000;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-link:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-link i {
            font-size: 28px;
            color: white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }

            100% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
        }

        /* Page specific styles */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .service-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .hero-section h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .customer-service-section {
                padding: 60px 0;
            }

            .service-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .machine-detail-image {
                height: 300px;
            }

            .machine-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .customer-service-section {
                padding: 50px 0;
            }

            .service-card-body {
                padding: 20px;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .hero-section .lead {
                font-size: 1.1rem;
            }
            
            .machine-detail-image {
                height: 250px;
            }

            .machine-stats {
                grid-template-columns: 1fr;
            }

            .specs-table th,
            .specs-table td {
                padding: 12px 15px;
            }
        }
		
		#btn-back-to-top {
			position: fixed;
			bottom: 40px;
			right: 40px;
			display: none;
			z-index: 99;
			}