      @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');
    .container {
      max-width: 800px;
      text-align: center;
    }   

  .fa-navicon:before,.fa-reorder:before,.fa-bars:before {
    content: "\f0c9"
}
    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
       background-image: linear-gradient(45deg, #ffffff, #ffffff, #ffffff); 
      background-color: #ffffff;
      background-size: 100%;
      background-clip: text;
      -webkit-background-clip: text;
      /* -webkit-text-fill-color: transparent; */
    }
     
    .typewriter-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      margin: 2rem 0;
    }
    
    .typewriter {
      font-size: 2rem;
      font-weight: bold;
      position: relative;
      display: inline-block;
    }
    
    .typewriter-text {
      display: inline-block;
    }
    
    .cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background-color: #000000;
      margin-left: 5px;
      animation: blink 1s step-end infinite;
    }
    
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }
          :root {
            --primary-brown: #8B5A2B;
            --light-brown: #D2B48C;
            --dark-brown: #5D4037;
            --cream-white: #F5F5F0;
            --text-color: #333;
        }


      

        body {
            /* background-color: var(--cream-white); */
            color: var(--text-color);
            overflow-x: hidden;
        }
        .ShopName{
            color: #ffffff;
            font-size: 25px;
            font-weight:900;
        }
        /* Header Styles */
        header {
            background-color: var(--primary-brown);
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        header.hide {
            transform: translateY(-100%);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2.1rem;
            font-weight: 700;
            letter-spacing: 2px;
            animation: fadeIn 1.5s ease;
        }
        
        .logo span {
            color: var(--light-brown);
        }
        .Since{
            font-weight: 500;
            font-size: 15px;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        nav ul li a:hover {
            color: var(--light-brown);
        }

        nav ul li::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--light-brown);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 140vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('image/background.jpg');
            
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 2rem;
            animation: fadeIn 1s ease;
           
        }
   

        .hero-content {
            max-width: 800px;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 1s ease 0.5s forwards;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        /* Marquee Testimonials */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1200px;
}

.marquee {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 12); /* Double the items for seamless loop */
}

.testimonial-item {
    min-width: 350px;
    margin: 0 1rem;
    background: var(--cream-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--light-brown);
}

.testimonial-content h4 {
    color: var(--primary-brown);
    margin-top: 0.5rem;
}

.testimonial-content span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 6)); } /* Move by half the content */
}
 

@media (max-width: 768px) {
    .testimonial-item {
        min-width: 300px;
    }
}
        .hero p {
            margin-top: 2rem;
            font-size: 1rem;
            margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
        }

        .btn-12 {
            display: inline-block;
            background-color: var(--light-brown);
            color: var(--dark-brown);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-12:hover {
            background-color: var(--dark-brown);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Mid Section - Services */
        .services {
            padding: 5rem 2rem;
            background-color: white;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('background.jpg');
            background-size: cover;
            background-attachment: fixed;
            opacity: 0.1;
            z-index: 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            transform: scale(0.9);
            opacity: 0;
            animation: scaleUp 1s ease 0.5s forwards;
        }

        .section-title p {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 1s ease 0.7s forwards;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background-color: var(--cream-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            transform: translateY(50px);
            opacity: 0;
        }

        .service-card:nth-child(1) {
            animation: slideUp 1s ease 0.9s forwards;
        }
        .service-card:nth-child(2) {
            animation: slideUp 1s ease 1.1s forwards;
        }
        .service-card:nth-child(3) {
            animation: slideUp 1s ease 1.3s forwards;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-brown);
        }

        .service-content p {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 0%;
            background-color: #D2B48C;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 3rem auto 0;
             text-decoration: none;
        }
        
        .portfolio-grid a{
             text-decoration: none;
        }
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.5s ease;
             text-decoration: none;
        }

        .portfolio-item.animate {
            transform: scale(1);
            opacity: 1;
        }
        .portfolio-h2{
            text-decoration: none;
            text-align: center;
            justify-content: center;
            font-weight: 700;
            color: #5D4037;
        }
        .portfolio-h2 a{
            text-decoration: none;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 90, 43, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            color: white;
            padding: 1rem;
            text-align: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        .footer-container a{
            text-decoration: underline none;
        }
        .portfolio-overlay h3 {
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }

        .portfolio-overlay p {
            font-family: 'Montserrat', sans-serif;
            transform: translateY(20px);
            transition: transform 0.5s ease 0.1s;
        }

        .portfolio-item:hover .portfolio-overlay h3,
        .portfolio-item:hover .portfolio-overlay p {
            transform: translateY(0);
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 2rem;
            background-color: white;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .testimonial-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background-color: var(--cream-white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 1s ease, transform 1s ease;
            transform: translateX(100%);
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-slide.prev {
            transform: translateX(-100%);
        }

        .testimonial-slide.next {
            transform: translateX(100%);
        }

        .testimonial-slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--light-brown);
        }

        .testimonial-slide p {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-slide h4 {
            color: var(--primary-brown);
            font-weight: 600;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-brown);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

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

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background-color: var(--cream-white);
        }

        .contact-container {
            max-width: 1000px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-info {
            transform: translateX(-50px);
            opacity: 0;
            animation: slideRight 1s ease 0.5s forwards;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--primary-brown);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-brown);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1rem;
            color: var(--dark-brown);
            font-size: 1.2rem;
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .contact-text p {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            color: var(--text-color);
        }

        .contact-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateX(50px);
            opacity: 0;
            animation: slideLeft 1s ease 0.5s forwards;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-brown);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-brown);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-col {
            transform: translateY(30px);
            opacity: 0;
        }

        .footer-col:nth-child(1) {
            animation: slideUp 1s ease 0.3s forwards;
        }
        .footer-col:nth-child(2) {
            animation: slideUp 1s ease 0.5s forwards;
        }
        .footer-col:nth-child(3) {
            animation: slideUp 1s ease 0.7s forwards;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--light-brown);
        }

        .footer-col p {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            transition: color 0.3s ease;
            display: block;
        }

        .footer-links a:hover {
            color: var(--light-brown);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--light-brown);
            color: var(--dark-brown);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeIn 1s ease 1s forwards;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                transform: translateY(50px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideRight {
            from { 
                transform: translateX(-50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideLeft {
            from { 
                transform: translateX(50px);
                opacity: 0;
            }
            to { 
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes scaleUp {
            from { 
                transform: scale(0.9);
                opacity: 0;
            }
            to { 
                transform: scale(1);
                opacity: 1;
            }
        }
      
        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                font-size: 1.5rem;
            }

            nav {
                position: fixed;
                top: 0px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 10px);
                background-color: var(--dark-brown);
                transition: left 0.3s ease;
                padding: 2rem;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 1rem 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

             .hero p {
                font-size: 1rem;
            } 

            .section-title h2 {
                font-size: 2rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }
       
        .social-links{
            text-decoration: none;
        }
        .back-button {
            display: inline-block;
            padding: 10px 15px;
            background-color: #D2B48C;
            border-radius: 5px;
            text-decoration: none;
            color: white;
            font-family: Arial, sans-serif;
            
            border: 1px solid white;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        /* Arrow styling */
        .back-button::before {
            content: "";
            display: inline-block;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #ffffff;
            margin-right: 8px;
            margin-top: 0px;
            transition: all 0.3s ease;
        }

        /* Hover effects */
        .back-button:hover {
            background-color: white;
            color: #D2B48C;
            transform: translateX(-5px);
        }

        .back-button:hover::before {
            border-right-color: #D2B48C;
            transform: scale(1.2);
        }
          
    
    