 
        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-color);
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Updated Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1753521924424-044b2240be4f?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .hero-tagline {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }
        
        .hero-tagline span {
            font-size: 1.1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .hero-tagline i {
            color: var(--accent-color);
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* New Services Section */
        .new-services {
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
        }
        .service-item {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
            border-top: 4px solid var(--primary-color);
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-item-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-item h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-item p {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        
        .service-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features li i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        /* Gallery Section */
        .gallery-item {
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        
        .gallery-item img {
            transition: var(--transition);
            width: 100%;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            margin-bottom: 30px;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        /* Why Choose Us Section */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Testimonials Section */
        .testimonial-slider {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-form {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #ccc;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 10px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .hero-tagline {
                flex-direction: column;
                gap: 15px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .contact-form {
                margin-bottom: 30px;
            }
        }
        
        /* Text Animation */
        .animated-text {
            overflow: hidden;
            border-right: 2px solid white;
            white-space: nowrap;
            margin: 0 auto;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: white }
        }
        
        /* Fade-in animation for hero elements */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1.5s ease forwards;
        }
        
        .fade-in.delay-1 {
            animation-delay: 0.5s;
        }
        
        .fade-in.delay-2 {
            animation-delay: 1s;
        }
        
        .fade-in.delay-3 {
            animation-delay: 1.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
    







       
        
        /* Services Page Hero Section */
        .services-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1753521924424-044b2240be4f?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
        }
        
        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .services-hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .services-hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .services-hero .location i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* Services Overview Section */
        .services-overview {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .services-intro {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
        }
        
        .services-intro h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .services-intro p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .clients-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .client-badge {
            background: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .client-badge i {
            color: var(--primary-color);
            margin-right: 8px;
        }
        
        /* Services Grid Section */
        .services-grid {
            padding: 100px 0;
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .service-category h3 {
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .service-category h3:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-item-detailed {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-item-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-img {
            height: 250px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-item-detailed:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-icon-large {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-content h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-features-detailed {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .service-features-detailed li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features-detailed li i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .service-cta {
            margin-top: 25px;
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1758&q=80') no-repeat center center/cover;
        }
        
        .process-section h2 {
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary-color);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .services-cta {
            padding: 100px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .services-cta h2 {
            margin-bottom: 30px;
            color: white;
        }
        
        .services-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-color);
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-light:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .services-hero {
                padding: 120px 0 80px;
            }
            
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-hero .tagline {
                font-size: 1.2rem;
            }
            
            .clients-list {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .services-overview{
                padding: 2% !important;
                margin-top: 4% !important;
            }
            .services-grid{
                padding: 2% !important;
            }
            .service-item-detailed{
                max-height: 94%;
            }
            .process-section{
                padding-top: 1rem !important;
            }
        }
 

        .sofa-img{
            min-height: 65vh;
        }

        @media (max-width: 576px) {
            .sofa-img{
                height: auto;
                min-height: 30vh;
            }
            #specialized-services .container{
                margin-top: -70px;
            }
            .services-hero .container{
                margin-top: -90px;
            }
        }
       