:where([class^="ri-"])::before {
            content: "\f3c2";
        }

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        .nav-link.active {
            color: #e9b949 !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e9b949;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
        }

        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://readdy.ai/api/search-image?query=premium%2520modern%2520wooden%2520furniture%2520workshop%2520with%2520natural%2520light%2520streaming%2520in%252C%2520showcasing%2520fine%2520woodworking%2520craftsmanship%252C%2520with%2520elegant%2520wooden%2520pieces%2520in%2520progress%252C%2520tools%2520neatly%2520arranged%252C%2520warm%2520wood%2520tones%2520throughout&width=1920&height=1080&seq=1&orientation=landscape');
            background-size: cover;
            background-position: center;
        }

        .header {
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header.scrolled .nav-link {
            color: #1f2937;
        }

        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .custom-checkbox {
            position: relative;
            padding-left: 30px;
            cursor: pointer;
            user-select: none;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 2px solid #3b5d50;
            border-radius: 4px;
        }

        .custom-checkbox input:checked~.checkmark {
            background-color: #3b5d50;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .custom-checkbox input:checked~.checkmark:after {
            display: block;
        }

        .custom-checkbox .checkmark:after {
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
