/* Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Rubik', sans-serif;
      background-color: #0a0a0a;
      color: #fff;
      line-height: 1.6;
      scroll-behavior: smooth;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    section {
      padding: 80px 0;
    }
    
    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .btn {
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(to right, #A3E635, #65a30d);
      color: #000;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(163, 230, 53, 0.3);
    }
    
    .text-center {
      text-align: center;
    }
    
    .mb-40 {
      margin-bottom: 40px;
    }
    
    /* Header */
    header {
      padding: 20px 0;
      background-color: rgba(10, 10, 10, 0.95);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #A3E635;
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .nav-links a:hover {
      color: #A3E635;
    }
    
    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 50%, rgba(163, 230, 53, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(163, 230, 53, 0.05) 0%, transparent 50%);
      z-index: -1;
    }
    
    .hero-content {
      max-width: 650px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }
    
    .hero p {
      font-size: 1.2rem;
      color: #ccc;
      margin-bottom: 30px;
    }
    
    .hero-highlight {
      color: #A3E635;
    }
    
    .stats {
      display: flex;
      gap: 30px;
      margin: 40px 0;
    }
    
    .stat-item {
      display: flex;
      flex-direction: column;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #A3E635;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: #999;
    }
    
    
    
    
    /*Marquee Start*/
/* Marquee container with premium gradient */
.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #A3E635, #65a30d);
  padding: 13px 0;
  position: relative;
}

/* Inner scrolling track */
.marquee-inner {
  display: inline-block;
  animation: scroll 18s linear infinite;
  white-space: nowrap;
}

/* Premium text styling */
.marquee-inner span {
  display: inline-block;
  margin: 0 70px;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Smooth marquee animation */
@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hover pause for user focus */
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-inner span {
    font-size: 22px;
    margin: 0 40px;
  }
  
  .hero-flex{
      flex-direction: column;
  }
}
@media (max-width: 480px) {
  .marquee-inner span {
    font-size: 16px;
    margin: 0 24px;
  }
}
/*Marquee End*/



 .testimonials-section {
            padding: 100px 0;
            background-color: #111;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        

        
        .section-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: linear-gradient(145deg, #1a1a1a, #151515);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .stars {
            display: flex;
            margin-bottom: 20px;
        }
        
        .star {
            color: #FBBF24;
            margin-right: 3px;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #e0e0e0;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text::before {
            content: """;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            left: -10px;
            top: -20px;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background: linear-gradient(135deg, #4A90E2, #7B68EE);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-location {
            font-size: 0.9rem;
            color: #999;
            display: flex;
            align-items: center;
        }
        
        .author-location i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        .review-source {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .source-badge {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .source-badge i {
            color: #4A90E2;
            margin-right: 5px;
        }
        
        .review-date {
            font-size: 0.9rem;
            color: #999;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .testimonials-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .testimonial-card {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .testimonials-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .testimonial-text {
                font-size: 1rem;
                padding-left: 15px;
            }
            
            .testimonial-text::before {
                font-size: 3rem;
                left: -8px;
                top: -15px;
            }
        }
        
        /* Animation for cards */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .testimonial-card {
            animation: fadeIn 0.6s ease forwards;
        }
        
        .testimonial-card:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .testimonial-card:nth-child(3) {
            animation-delay: 0.2s;
        }
    


    
    /* Products Section */
    .products {
      background-color: #111;
    }
    
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .section-subtitle {
      color: #ccc;
      text-align: center;
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .product-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .product-card {
      background: linear-gradient(145deg, #1a1a1a, #151515);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }
    
    .product-card:hover {
      transform: translateY(-10px);
    }
    
    .product-icon {
      font-size: 2.5rem;
      color: #A3E635;
      margin-bottom: 20px;
    }
    
    .product-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    
    .product-features {
      list-style: none;
      margin: 20px 0;
    }
    
    .product-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .product-features li::before {
      content: '✓';
      color: #A3E635;
      font-weight: bold;
      margin-right: 10px;
    }
    
    .product-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: #A3E635;
      margin: 20px 0;
    }
    
    /* Features Section */
    .features {
      background-color: #0a0a0a;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .feature-item {
      background-color: #111;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
    }
    
    .feature-icon {
      font-size: 2.5rem;
      color: #A3E635;
      margin-bottom: 20px;
    }
    
    .feature-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    
    
    
    /* Footer */
    footer {
      background-color: #111;
      padding: 60px 0 30px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #A3E635;
      margin-bottom: 20px;
    }
    
    .footer-links h4 {
      margin-bottom: 20px;
      font-size: 1.2rem;
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: #A3E635;
    }
    
    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
      }
      
      .nav-links {
        margin-top: 20px;
      }
      
      .nav-links li {
        margin-left: 15px;
        margin-right: 15px;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .stats {
        flex-direction: column;
        gap: 20px;
      }
      
      section {
        padding: 60px 0;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
     /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: #111;
            border-radius: 16px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }
        
       
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .faq-item {
            background: linear-gradient(145deg, #1a1a1a, #151515);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item.active {
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
            border-color: rgba(74, 144, 226, 0.3);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .faq-icon {
            color: #4A90E2;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #ccc;
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .category-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .category-btn.active, .category-btn:hover {
            background: linear-gradient(90deg, #4A90E2, #7B68EE);
            color: white;
            border-color: transparent;
        }
        
        .contact-prompt {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, #1a1a1a, #151515);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .contact-prompt h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .contact-prompt p {
            color: #ccc;
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-btn {
            display: inline-block;
            background: linear-gradient(90deg, #4A90E2, #7B68EE);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .faq-categories {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }