* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;

      
    }

    :root {
            --primary: #0a4d2e;
            --primary-light: #0d6b3f;
            --accent: #10b981;
            --accent-light: #34d399;
            --dark: #0f172a;
            --darker: #020617;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-900: #0f172a;
            --white: #ffffff;
            --gold: #fbbf24;
        }

    
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #10b981;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* Navigation - Modern Glassmorphism */
    nav {
      background: rgba(255, 255, 255, 0.8);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(16, 185, 129, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    nav.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 85px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      font-size: 1.375rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #059669;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo:hover {
      transform: translateY(-2px);
      color: #10b981;
    }

    .logo-img {
      width: 65px;
      height: 65px;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
      transition: filter 0.3s;
    }

    .logo:hover .logo-img {
      filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
    }

    .nav-links {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .nav-link {
      position: relative;
      font-size: 0.9375rem;
      font-weight: 500;
      color: #475569;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0.5rem 0;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2.5px;
      background: linear-gradient(90deg, #10b981, #059669);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }

    .nav-link:hover {
      color: #059669;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Hero Section - Enhanced Modern Design */
    .hero {
      margin-top: 85px;
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('viabg.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%),
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.06) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 150px;
      background: linear-gradient(to top, #ffffff, transparent);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 1000px;
      padding: 0 2rem;
      animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-title {
      font-size: 5.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: #ffffff;
      margin-bottom: 1.75rem;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
      background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
      letter-spacing: -0.01em;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Section Styles - Modernized */
    section {
      padding: 8rem 0;
      position: relative;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.5rem;
      background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
      color: #059669;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(5, 150, 105, 0.15);
      box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
    }

    .section-title {
      font-size: 3.75rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: #0f172a;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-description {
      font-size: 1.25rem;
      line-height: 1.75;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
      font-weight: 400;
    }

    /* About Section - Card Design */
    #about {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .about-content {
      max-width: 1000px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 32px;
      padding: 4.5rem;
      border: 1px solid rgba(16, 185, 129, 0.1);
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(16, 185, 129, 0.05);
      position: relative;
      overflow: hidden;
    }

    .about-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #10b981, #059669, #10b981);
      background-size: 200% 100%;
    }

    .about-text {
      font-size: 1.125rem;
      line-height: 2;
      color: #334155;
      margin-bottom: 1.5rem;
      font-weight: 400;
    }

    .about-text:last-child {
      margin-bottom: 0;
      color: #64748b;
    }

    /* Services Section - Modern Gradient Cards */
    #services {
      padding: 8rem 1rem;
      min-height: 100vh;
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    }

    .carousel-container {
      position: relative;
      margin-bottom: 3rem;
    }

    .carousel-wrapper {
      overflow: hidden;
      border-radius: 2rem;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    }

    .carousel-track {
      display: flex;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide {
      min-width: 100%;
      padding: 5rem 2rem;
      border-radius: 2rem;
      position: relative;
      overflow: hidden;
    }

    .carousel-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .slide-content {
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .slide-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 2rem;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .carousel-slide:hover .slide-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .slide-icon svg {
      width: 52px;
      height: 52px;
    }

    .slide-cat {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .slide-title {
      font-size: 2.75rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.75rem;
      line-height: 1.2;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }

    .slide-description {
      font-size: 1.1875rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      max-width: 650px;
      margin: 0 auto;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced Gradient Backgrounds */
    .slide-1 { 
      background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    }
    .slide-2 { 
      background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
    }
    .slide-3 { 
      background: linear-gradient(135deg, #34d399 0%, #6ee7b7 50%, #a7f3d0 100%);
    }
    .slide-4 { 
      background: linear-gradient(135deg, #6ee7b7 0%, #a7f3d0 50%, #d1fae5 100%);
    }

    .icon-emerald { color: #ffffff; filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)); }
    .icon-blue { color: #ffffff; filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)); }
    .icon-purple { color: #ffffff; filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)); }
    .icon-orange { color: #0f172a; filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.3)); }

    .slide-4 .slide-cat,
    .slide-4 .slide-title,
    .slide-4 .slide-description {
      color: #0f172a;
      text-shadow: 0 1px 10px rgba(255, 255, 255, 0.3);
    }

    /* Navigation Arrows - Modern */
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .carousel-nav:hover {
      background: #10b981;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    }

    .carousel-nav svg {
      width: 26px;
      height: 26px;
      color: #059669;
      transition: color 0.3s;
    }

    .carousel-nav:hover svg {
      color: #ffffff;
    }

    .carousel-prev { left: 1.5rem; }
    .carousel-next { right: 1.5rem; }

    /* Dots Navigation - Enhanced */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.875rem;
      margin-top: 3.5rem;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #cbd5e1;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .dot.active {
      width: 56px;
      border-radius: 6px;
      background: linear-gradient(90deg, #10b981, #059669);
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    }

    .dot:hover:not(.active) {
      background: #94a3b8;
      transform: scale(1.2);
    }

    /* Products Section - Masonry Gallery */
    #products {
      padding: 8rem 0;
      background: #ffffff;
    }

    #products .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    .products-section-header {
      margin-bottom: 5rem;
      text-align: center;
    }

    .products-section-header h1 {
      font-size: 3.75rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .products-section-header p {
      font-size: 1.25rem;
      color: #64748b;
      font-weight: 400;
    }

    .products-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.products-gallery-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 16px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.products-gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(99, 102, 241, 0.1);
}

.products-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1) saturate(1.1);
}

.products-gallery-item:hover .products-gallery-image {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.2) contrast(1.05);
}

.products-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 1.5rem 1.5rem;
}

.products-gallery-item:hover .products-gallery-overlay {
  opacity: 1;
}

.products-gallery-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.products-gallery-item:hover .products-gallery-overlay::before {
  opacity: 1;
}

.products-gallery-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.products-gallery-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 1px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.products-gallery-item:hover .products-gallery-title {
  transform: translateY(0);
  opacity: 1;
}

.products-gallery-item:hover .products-gallery-title::after {
  transform: translateX(-50%) scaleX(1);
}

/* Add subtle loading animation */
.products-gallery-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.products-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.products-gallery-item:nth-child(2) { animation-delay: 0.15s; }
.products-gallery-item:nth-child(3) { animation-delay: 0.2s; }
.products-gallery-item:nth-child(4) { animation-delay: 0.25s; }
.products-gallery-item:nth-child(5) { animation-delay: 0.3s; }
.products-gallery-item:nth-child(6) { animation-delay: 0.35s; }
.products-gallery-item:nth-child(7) { animation-delay: 0.4s; }
.products-gallery-item:nth-child(8) { animation-delay: 0.45s; }
.products-gallery-item:nth-child(9) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .products-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .products-gallery-item:nth-child(9) {
    display: none;
  }
}

@media (max-width: 640px) {
  .products-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
  }
  
  .products-gallery-item:nth-child(n+7) {
    display: none;
  }
  
  .products-gallery-title {
    font-size: 1.125rem;
  }
}

/* Add subtle glow effect on hover */
.products-gallery-item::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(8px);
}

.products-gallery-item:hover::after {
  opacity: 0.3;
}



    /* Contact Section - UNCHANGED */
    #contact {
      background: #0a0a0a;
      color: #ffffff;
    }

    #contact .section-label {
      background: rgba(5, 150, 105, 0.2);
      color: #10b981;
    }

    #contact .section-title {
      color: #ffffff;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .info-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .info-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(5, 150, 105, 0.3);
      transform: translateY(-4px);
    }

    .info-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: rgba(5, 150, 105, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
      flex-shrink: 0;
    }

    .info-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }

    .info-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 0;
      line-height: 1.3;
    }

    .info-text {
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin: 0;
    }

    .contact-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-form-container {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      font-size: 0.9375rem;
      color: #ffffff;
      font-family: inherit;
      transition: all 0.3s;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(5, 150, 105, 0.5);
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-button {
      background: #10b981;
      color: #ffffff;
      border: none;
      border-radius: 12px;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      font-family: inherit;
    }

    .form-button:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }

    .map-container-contact {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 500px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .map-container-contact iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* Footer */
    footer {
      background: #0a0a0a;
      color: #a3a3a3;
      padding: 3rem 0;
      text-align: center;
    }

    .footer-text {
      font-size: 0.9375rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }

    /* Mobile Menu */
    .mobile-menu-button {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .mobile-menu-button span {
      width: 26px;
      height: 2.5px;
      background: #059669;
      transition: all 0.3s;
      border-radius: 2px;
    }

    .mobile-menu-button.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-button.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .nav-container {
        max-width: 100%;
        padding: 0 2rem;
      }

      .container {
        max-width: 100%;
        padding: 0 2rem;
      }

      .hero-title {
        font-size: 4.5rem;
      }

      .section-title {
        font-size: 3.25rem;
      }

      .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .map-container-contact {
        min-height: 450px;
      }

      .products-gallery-grid {
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        padding: 0 1.5rem;
        height: 75px;
      }

      .mobile-menu-button {
        display: flex;
      }

      .nav-links
 {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        text-align: center;
      }


      .logo {
        font-size: 1.25rem;
      }

      .logo-img {
        width: 50px;
        height: 50px;
      }

      .hero {
        margin-top: 75px;
        min-height: 70vh;
        padding: 5rem 0;
      }

      .hero-title {
        font-size: 3rem;
        line-height: 1.1;
      }

      .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
      }

      .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
      }

      .section-description {
        font-size: 1.0625rem;
      }

      .section-label {
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
      }

      .container {
        padding: 0 1.5rem;
      }

      section {
        padding: 5rem 0;
      }

      .about-content {
        padding: 2.5rem 2rem;
        border-radius: 24px;
      }

      .about-text {
        font-size: 1.0625rem;
        line-height: 1.8;
      }

      .slide-title {
        font-size: 2rem;
      }

      .carousel-slide {
        padding: 3.5rem 1.5rem;
      }

      .carousel-nav {
        width: 48px;
        height: 48px;
      }

      .carousel-prev {
        left: 0.75rem;
      }

      .carousel-next {
        right: 0.75rem;
      }

      .products-section-header h1 {
        font-size: 2.5rem;
      }

      .products-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }

      .products-gallery-item.products-wide {
        grid-column: span 1;
      }

      .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .info-card {
        padding: 1.5rem;
      }

      .info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
      }

      .info-title {
        font-size: 0.9375rem;
      }

      .info-text {
        font-size: 0.875rem;
      }

      .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .contact-form-container {
        padding: 2rem 1.5rem;
      }

      .form-input,
      .form-textarea {
        font-size: 1rem;
        padding: 0.875rem 1rem;
      }

      .map-container-contact {
        min-height: 350px;
        border-radius: 16px;
      }

      .section-header {
        margin-bottom: 3.5rem;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 0 1rem;
      }

      .container {
        padding: 0 1rem;
      }

      .hero-title {
        font-size: 2.25rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .section-description {
        font-size: 0.9375rem;
      }

      .about-content {
        padding: 2rem 1.5rem;
      }

      .contact-form-container {
        padding: 1.5rem 1rem;
      }

      .info-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
      }

      .info-content {
        text-align: center;
      }
    }

    @media (min-width: 1440px) {
      .nav-container {
        max-width: 1600px;
      }

      .container {
        max-width: 1600px;
      }

      .hero-title {
        font-size: 6rem;
      }

      .hero-subtitle {
        font-size: 1.75rem;
      }

      .section-title {
        font-size: 4.25rem;
      }
    }s {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

            /* Categories Section */
       /* Categories Section */
        .categories {
            padding: 100px 5%;
            background: var(--gray-50);
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .tab-btn {
            padding: 12px 28px;
            background: var(--white);
            border: 2px solid var(--gray-200);
            color: var(--gray-700);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .tab-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .tab-btn.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: auto;
            }
        }

        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }
        }

        @media (max-width: 640px) {
            .category-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
        }

        .category-item {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            cursor: pointer;
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .category-item i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.25rem;
            transition: transform 0.3s ease;
        }

        .category-item:hover i {
            transform: scale(1.1);
        }

        .category-item h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .category-item p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }