   :root {
            --primary: #ffffff;
            --secondary: #000000;
            --accent: #795548;
            --light-accent: #a98274;
            --dark-accent: #5d4037;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
        }

         .team-member {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            padding: 25px;
            border: solid 1px var(--light-gray);
            width: 100%;
            height: fit-content;
            margin: 20px 20px 20px 0;
            background-color: var(--primary);
            border-radius: 20px 20px 20px 0;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: large;
            font-weight: bold;
        }

            .team-photo {
            width: 180px;
            height: 200px;
            margin-right: 20px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .employee-description {
            flex: 1;
            min-width: 250px;
            padding: 10px 15px;
            margin: 0;
            line-height: 1.6;
            color: var(--dark-gray);
            font-weight: normal;
            text-align: left;
            border-left: 2px solid var(--light-accent);
        }

        
        .team-member h3 {
            flex: 0 0 100%;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .team-member p:not(.employee-description) {
            flex: 0 0 100%;
            color: var(--accent);
            font-size: 0.9em;
        }

          /* Responsive adjustments */
        @media (max-width: 768px) {
            .team-member {
                flex-direction: column;
            }
            
            .team-photo {
                width: 100%;
                height: 250px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .employee-description {
                border-left: none;
                border-top: 2px solid var(--light-accent);
                padding: 15px 0 0 0;
                min-width: 100%;
            }
        }

          #team-title {
            margin-top: 20px;   
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
         
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--secondary);
            line-height: 1.6;
            background-color: var(--primary);
            background-image: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f0f0f0"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23e0e0e0" stroke-width="1"/></svg>');
            background-size: 200px;
        }

         h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--secondary);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            font-size: 32px;
            color: var(--accent);
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--accent);
        }

          .logo-text span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }

         /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.postimg.cc/gjLrbVNG/josh-beech-t-XJh-AFVOHVk-unsplash.jpg');
            background-size: cover;
            background-position: center;
            color: var(--primary);
            text-align: center;
            padding: 150px 0;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light-gray);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--primary);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .btn:hover {
            background-color: var(--dark-accent);
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }

           .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        /* Projects Section */
        .projects {
            background-color: var(--light-gray);
        }

        .project-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

  .filter-btn {
            padding: 8px 20px;
            background: var(--primary);
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .project-content {
            padding: 25px;
        }

        .project-category {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(121, 85, 72, 0.1);
            color: var(--accent);
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .project-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }
        
        
        .project-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .project-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .project-link:hover {
            color: var(--dark-accent);
        }

        .project-link:hover i {
            transform: translateX(5px);
        }

        /* Products Section */
        .products {
            background-color: var(--primary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--primary);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .product-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

           .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--accent);
        }
        
        /* NEW: Product Price Tag */
        .product-price {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: var(--dark-accent);
            background: rgba(121, 85, 72, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 15px;
            transition: all 0.3s;
        }
        
        .product-card:hover .product-price {
            background: rgba(121, 85, 72, 0.2);
        }

        .price-disclaimer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background-color: #f8f8f8;
            border-left: 4px solid var(--accent);
            font-style: italic;
            color: var(--dark-gray);
        }
        
        /* Window Size Selector */
        .size-selector {
            margin: 15px 0;
            background: rgba(121, 85, 72, 0.05);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s;
        }
        
        .product-card:hover .size-selector {
            background: rgba(121, 85, 72, 0.1);
        }
        
        .size-selector label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .size-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .size-select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(121, 85, 72, 0.1);
        }
        
        .custom-size-note {
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px dashed #ddd;
            text-align: center;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .quote-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .quote-link:hover {
            color: var(--dark-accent);
            text-decoration: underline;
        }
        
        .dynamic-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }
        
        .price-label {
            font-weight: 500;
        }

        /* Video Gallery Section */
        .video-gallery-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }

          .video-gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .video-gallery-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .video-gallery-title h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }

        .video-gallery-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        .video-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .video-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail-container {
            position: relative;
            padding-top: 56.25%; /* 16:9 aspect ratio */
            overflow: hidden;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 24px;
            opacity: 0;
            transition: all 0.3s;
            cursor: pointer;
        }

        .video-card:hover .play-button {
            opacity: 1;
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }

        .video-info p {
            color: #555;
            margin-bottom: 15px;
        }

        /* About Section */
        .about {
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+tp://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23f0f0f0"/><path d="M0,0 L200,200 M200,0 L0,200" stroke="%23e0e0e0" stroke-width="1"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .about-text {
            flex: 1;
        }

        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border: 8px solid var(--primary);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--accent);
            color: var(--primary);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-item h3 {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            font-size: 24px;
            color: var(--accent);
            min-width: 40px;
            text-align: center;
        }

        .contact-details h3 {
            margin-bottom: 5px;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: var(--light-gray);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
 .form-group label {
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(121, 85, 72, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Form Status Messages */
        .form-status {
            padding: 15px;
            border-radius: 4px;
            margin-top: 15px;
            display: none;
            text-align: center;
        }

        .form-status.success {
            background-color: #d4edda;
            color: 155724;
            display: block;
        }

        .form-status.error {
            background-color: #f8d7da;
            color: #721c24;
            display: block;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--primary);
            padding: 60px 0 30px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-about p {
            margin-bottom: 20px;
            color: #ccc;
        }
        
         .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--primary);
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-links h3,
        .footer-newsletter h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-newsletter h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--accent);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: 'Roboto', sans-serif;
        }

        .newsletter-form button {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-form button:hover {
            background-color: var(--dark-accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
                   nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 15px 0;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }

            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-outline {
                margin-left: 0;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .product-price {
                font-size: 18px;
            }
        }