/* ---------------------------------------------
   Reset & Base Styles
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
    
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  html {
    scroll-behavior: smooth;
  }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.450), rgba(71, 71, 71, 0.45));
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.450), rgba(0, 0, 0, 0.450));
}


  
/* ---------------------------------------------
   Header Section
--------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999999;
  background-color: transparent; /* Transparent initially */
  padding: 0.5rem 0;
  transition: background-color 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(31, 31, 31, 0.9); /* Semi-transparent when scrolled */
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  max-width: 150px;
  height: auto;
  margin: 0.4rem 0;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* Hamburger Button */
.nav-toggle {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

/* Hamburger lines */
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  display: block;
  background-color: #ffffff;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}

/* Top Line */
.nav-toggle .hamburger::before {
  top: -8px;
}

/* Bottom Line */
.nav-toggle .hamburger::after {
  top: 8px;
}

/* When nav is open, transform hamburger into X */
.nav-toggle.active .hamburger {
  background-color: transparent; /* Hide middle line */
}
.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}
  
  /* Navigation */
  .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.2rem 0;
  }
  .nav-links li a,
  .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link {
    position: relative;
  display: inline-block;
  }
  .nav-link::after {
    content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0%;
  background-color: #ffffff;
  transition: width 0.3s ease;
  transform-origin: left;
  }
  .nav-link:hover {
    color: #ffffff;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* ---------------------------------------------
     Hero Section
  --------------------------------------------- */
  #hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
  }
  
  #tsparticles {
    position: absolute;
    width: 100%; /* Ensure it doesn't overflow */
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    z-index: -1;
  }
  
  .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-out;
  }
  
  /* Button */
  .btn {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: 2px solid #1e1e1e;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease-out;
  }
  
  .btn:hover {
    background-color: #1e1e1e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  
  /* Hero - Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    .hero-subtitle {
      font-size: 1rem;
    }
  }
  
  /* Hero - Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    .hero-subtitle {
      font-size: 1rem;
    }
  }
  
  /* ---------------------------------------------
     Animations
  --------------------------------------------- */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
/* ---------------------------------------------
   Services Section
--------------------------------------------- */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  text-align: center;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

/* Carousel Container */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* 5 slides (3 actual + 2 clones) */
}

.service-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Icon */
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #f5f5f5;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

/* Animated Dotted Ring */
.icon-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dotted #352f2b;
  z-index: 0;
  transition: transform 0.6s linear;
  transform-origin: center;
}

.service-card:hover .icon-box::before {
  animation: rotate-dots 10s linear infinite, pulse-ring 4.5s ease-in-out infinite;
}

@keyframes rotate-dots {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dots Pagination */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}
  
  /* ---------------------------------------------
     Products Section
  --------------------------------------------- */
  .products-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    text-align: center;
    position: relative;
  }
  
  .section-description {
    max-width: 700px;
    margin: -20px auto 50px;
    font-size: 1.1rem;
    color: #555;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-6px);
  }
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .product-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
  }
  .product-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Product Buttons */
  .btn-product {
    background-color: transparent;
    color: #1e1e1e;
    padding: 12px 24px;
    border: 2px solid #1e1e1e;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease-out;
  }
  
  .btn-product:hover {
    background-color: #1e1e1e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

/* View All Button */
.view-all-container {
  margin-top: 40px;
}

.btn-view-all {
  background-color: transparent;
  color: #1e1e1e;
  padding: 12px 24px;
  border: 2px solid #1e1e1e;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease-out;
}

.btn-view-all:hover {
  background-color: #1e1e1e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

  /* Clients Section */
    .clients-section,
    .client-section {
    padding: 20px 20px;
    background-color: #ffffff00;
    text-align: center;
    position: relative;
    }

    .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    }

    .client-section h2 {
    font-size: 2rem;
    }

    .client-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    }

    .client-track {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: max-content;
    }

    .client-card {
    background: transparent;
    border-radius: 12px;
    min-width: 250px;
    text-align: center;
    flex-shrink: 0;
    }

    .client-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    }

    @keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }

    /* Footer */
    .site-footer {
    background-color: #1e1e1e;
    color: #f1f1f1;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column h4 {
      color: #ffffff;
      margin-bottom: 12px;
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    .footer-column p,
    .footer-column ul li,
    .footer-column a {
      font-size: 0.875rem;
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-column ul li {
      margin-bottom: 8px;
    }
    
    .footer-column a:hover {
      color: #ffffff;
    }
    
    .social-icons a {
      margin-right: 15px;
      display: inline-block;
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .social-icons img {
      width: 32px;
  height: 32px;
  margin: 0 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
    }
    
    .social-icons a:hover img {
      transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      font-size: 0.75rem;
      color: #9ca3af;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-family: 'Poppins', sans-serif;
    }

    /* Contact Modal */
    .contact-modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 15, 15, 0.6);
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease-out;
    }
    
    .contact-modal.show {
      display: flex;
    }
    
    .contact-modal .modal-content {
      background: rgba(255, 255, 255, 0.9);
      color: #1e1e1e;
      padding: 30px 20px;
      border-radius: 16px;
      text-align: center;
      width: 90%;
      max-width: 420px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.4s ease;
      transform: translateY(0);
    }
    
    .contact-buttons {
      margin-top: 25px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    
    .contact-option {
      padding: 14px;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none !important;
      color: #fff;
      font-size: 1rem;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .contact-option:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      opacity: 0.95;
    }
    
    .contact-option.whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .contact-option.email {
      background: linear-gradient(135deg, #007bff, #0056b3);
    }
    
    .close-btn {
      margin-top: 25px;
      background: transparent;
      color: #1e1e1e;
      border: 2px solid #1e1e1e;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .close-btn:hover {
      background-color: #1e1e1e;
      color: #fff;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from {
        background: rgba(15, 15, 15, 0);
      }
      to {
        background: rgba(15, 15, 15, 0.6);
      }
    }
    
    @keyframes slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
