.hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero1.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .product-overlay {
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .mobile-menu {
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
        }
        
        .mobile-menu.open {
            max-height: 1000px;
        }
        
        .catalog-card {
            transition: all 0.3s ease;
        }
        
        .catalog-card:hover {
            transform: translateY(-5px);
        }
        
        .bg-amber-600 {
            --tw-bg-opacity: 1;
            background-color: rgb(232 193 34);
        }
        
        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }
        
        .blog-image {
            transition: transform 0.3s ease;
        }
		
		.bg-amber-AB {
			--tw-bg-opacity: 1;
			background-color: rgb(232 193 34 / var(--tw-bg-opacity, 1));
		}
		
		.h-48-img {
			height: 25rem;
		}
		
		
		
	.slider-container {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
    }

    .slider-wrapper {
      display: flex;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 20px;
      max-width: 800px;
    }

    .slide-content h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      margin-bottom: 1rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      animation: fadeInUp 0.8s ease;
    }

    .slide-content p {
      font-size: clamp(1rem, 2vw, 1.5rem);
      margin-bottom: 2rem;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .cta-button {
      display: inline-block;
      padding: 15px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeInUp 0.8s ease 0.4s backwards;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

    .cta-button:active {
      transform: translateY(-1px);
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
      z-index: 1;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      border: none;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .nav-btn:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-50%) scale(1.1);
    }

    .nav-btn:active {
      transform: translateY(-50%) scale(0.95);
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    .dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .dot.active {
      background: white;
      width: 40px;
      border-radius: 6px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .prev {
        left: 10px;
      }

      .next {
        right: 10px;
      }

      .slide-content {
        padding: 15px;
      }

      .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
      }

      .dots {
        bottom: 20px;
      }

      .dot {
        width: 10px;
        height: 10px;
      }

      .dot.active {
        width: 30px;
      }
    }

    @media (max-width: 480px) {
      .slider-container {
        height: 80vh;
      }
	  
	  
	  
	  
	  /* Basic Reset & Typography */
    .nakhtal-section * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    /* Section Styling */
    .nakhtal-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .nakhtal-section h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .nakhtal-section .intro-text {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* Grid Layout */
    .sofa-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Card Styling */
    .sofa-card {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        text-align: left;
    }

    .sofa-card:hover {
        transform: translateY(-5px);
    }

    .sofa-card h3 {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 10px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
        display: inline-block;
    }

    .sofa-card p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .application-tag {
        display: inline-block;
        background-color: #e8f4f8;
        color: #0277bd;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 10px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .nakhtal-section h2 { font-size: 2rem; }
    }