   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            scroll-behavior: smooth;
            --primary: #ccccc0;
            --secondary: #363636;
            --accent: #EC5F44;
            --light-bg: #f1efe8;
            --white: #ffffff;
            --gray-light: #f8f8f8;
            --gray-medium: #e0e0e0;
            --text-dark: #333333;
            --text-light: #666666;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            scroll-behavior: smooth;
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-menu a.active {
            color: var(--accent);
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary);
        }

        /* Hero Slider Styles */
        .hero {
            position: relative;
            height: 50vh;
            min-height: 500px;
            overflow: hidden;
            background-color: var(--primary);
        }

        .slider {
            height: 100%;
            position: relative;
        }

        .slider_1 {
            background-image:url('images/slide_3.jpg');
            background-size: cover;
        }
        .slider_2 {
            background-image:url('images/slide_1.jpg');
            background-size: cover;
        }
        .slider_3 {
            background-image:url('images/slide_2.jpg');
            background-size: cover;
        }

        .slides {
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            color: var(--secondary);
        }

        .slide h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .slide p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        .slide .price {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .slide-image {
            width: 300px;
            height: 200px;
            background-color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--white);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .slider-arrow {
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--secondary);
            transition: background-color 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .cta-button {
            background-color: var(--accent);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            background-color: #d44a32;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        /* Products Section Styles */
        .products-section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 3rem;
            color: var(--secondary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .product-image {
            width: 100%;
            height: 200px;
            
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-light);
      
        }

        .product-image_1 {
            padding:20px;
            background-image:url('images/citradent_thumb.jpg');
            background-size:cover;
        }

       .product-image_2 {
            background-image:url('images/bogen_thumb.jpg');
            background-size:cover;
        }
        .product-image_3 {
            background-image:url('images/scanner_thumb.jpg');
            background-size:cover;
        }
           .product-image_4 {
            background-image:url('images/bundle1.jpg');
            background-size:cover;
        }
           .product-image_5 {
            background-image:url('images/bundle2.jpg');
            background-size:cover;
        }
           .product-image_6 {
            background-image:url('images/scanner2.jpg');
            background-size:cover;
        }


        .product-content {
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .product-description {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .product-features {
            margin-bottom: 1.5rem;
        }

        .product-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }

        .product-feature::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .product-actions {
            display: flex;
            gap: 0.8rem;
        }

        .btn {
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #d44a32;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-title {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .close-modal:hover {
            color: var(--accent);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--gray-medium);
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .form-hint {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .form-check input {
            margin-top: 0.2rem;
        }

        .form-check label {
            font-size: 0.95rem;
        }

        .form-check a {
            color: var(--accent);
            text-decoration: none;
        }

        .form-check a:hover {
            text-decoration: underline;
        }

        .error-message {
            color: var(--accent);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .success-message {
            background-color: #e8f5e8;
            border: 1px solid #4caf50;
            color: #2e7d32;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .honeypot-field {
            display: none;
        }

        /* Footer Styles */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .slide h1 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                height: 60vh;
            }
            
            .slider-arrows {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 10px;
            margin-bottom: 2rem;
            margin-top: 2rem;
            margin-left: auto;
            margin-right: auto;
                max-width: 400px;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .slide h1 {
                font-size: 1.8rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-1 {
            margin-top: 1rem;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mb-1 {
            margin-bottom: 1rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .hidden {
            display: none;
        }