
/* house of threading section */

        /* Dark & Golden Color Palette */
        :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --accent-dark: #0f0f0f;
            --golden: #d4af37;
            --golden-light: #f4e7b1;
            --golden-dark: #b8941f;
            --white: #ffffff;
            --light-gray: #f8f8f8;
            --dark-gray: #666666;
            --shadow: rgba(212, 175, 55, 0.3);
            --shadow-dark: rgba(0, 0, 0, 0.5);
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            animation: fadeInLeft 1s ease;
        }

        .logo i {
            font-size: 2.5rem;
            color: var(--golden);
            margin-right: 15px;
            animation: pulse 2s infinite;
        }

        .logo h1 {
            color: var(--golden);
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            animation: fadeInRight 1s ease;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 16px;
            border-radius: 25px;
        }

        nav ul li a:hover {
            color: var(--golden);
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        nav ul li a.active {
            color: var(--golden);
            background-color: rgba(212, 175, 55, 0.2);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--golden);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%), 
                        radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero h2 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--golden), var(--golden-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: slideInFromLeft 1s ease 0.7s both;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            animation: slideInFromRight 1s ease 0.9s both;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
            color: var(--primary-dark);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            animation: bounceIn 1s ease 1.1s both;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, var(--golden-light) 0%, var(--golden) 100%);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            color: var(--golden);
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            font-size: 3rem;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            font-size: 2rem;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
            font-size: 2.5rem;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--golden);
            margin-bottom: 20px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--golden) 0%, var(--golden-light) 100%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary-dark) 100%);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--golden) 0%, var(--golden-light) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--golden);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--golden);
            margin-bottom: 25px;
            animation: pulse 2s infinite;
        }

        .service-card h3 {
            font-size: 1.8rem;
            color: var(--golden);
            margin-bottom: 15px;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--golden);
            margin-bottom: 20px;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--primary-dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            animation: slideInFromLeft 0.8s ease;
        }

        .about-text h3 {
            font-size: 2.5rem;
            color: var(--golden);
            margin-bottom: 25px;
        }

        .about-text p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            animation: slideInFromRight 0.8s ease;
        }

        .about-image-container {
            background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
            border-radius: 20px;
            padding: 20px;
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image-container:hover {
            transform: rotate(0deg);
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            display: block;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            animation: fadeInUp 0.8s ease;
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--golden);
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        .feature-item h4 {
            font-size: 1.5rem;
            color: var(--golden);
            margin-bottom: 15px;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--primary-dark);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-item {
            padding: 40px;
            animation: fadeIn 0.8s ease;
        }

        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .testimonial-author {
            color: var(--golden);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .stars {
            margin: 20px 0;
        }

        .stars i {
            color: var(--golden);
            font-size: 1.5rem;
            margin: 0 2px;
            animation: twinkle 2s infinite alternate;
        }

        .stars i:nth-child(2) { animation-delay: 0.2s; }
        .stars i:nth-child(3) { animation-delay: 0.4s; }
        .stars i:nth-child(4) { animation-delay: 0.6s; }
        .stars i:nth-child(5) { animation-delay: 0.8s; }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--golden-dark) 0%, var(--golden) 100%);
            text-align: center;
            color: var(--primary-dark);
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn {
            background: var(--primary-dark);
            color: var(--golden);
            border: 2px solid var(--primary-dark);
        }

        .cta .btn:hover {
            background: transparent;
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* Footer */
        footer {
            background: var(--accent-dark);
            padding: 60px 0 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: var(--golden);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--golden);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: var(--golden);
            font-size: 1.5rem;
            padding: 10px;
            border: 1px solid var(--golden);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--golden);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes twinkle {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 20px 0;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 0;
                text-align: center;
            }

            nav ul li a {
                display: block;
                padding: 15px;
            }

            .hero h2 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta h2 {
                font-size: 2rem;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
    