   :root {
      --primary-color: #3b82f6;
      --primary-dark: #1d4ed8;
      --secondary-color: #f43f5e;
      --accent-color: #8b5cf6;
      --text-color: #1e293b;
      --light-bg: #f8fafc;
      --dark-bg: #0f172a;
      --white: #ffffff;
      --border-color: #e2e8f0;
    }
h3,p{
     margin-left:10px;
}
   
    body {
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden;
      background-color: var(--light-bg);
      padding: 0;
        margin: 0;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
     
    }
   
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
      color: white;
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }
    
    .hero:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.3;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 30px;
      margin-bottom: 20px;
      font-weight: 800;
      text-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background: linear-gradient(45deg, #fff, #f0f9ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
     
    }
    
    .hero p {
      font-size: 22px;
      max-width: 800px;
      margin: 0 0 40px;
      opacity: 0.9;
    }
    
    .btn-primary {
      background: var(--secondary-color);
      color: white;
      padding: 16px 36px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 18px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.5s;
    }
    
    .btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(244, 63, 94, 0.4);
    }
    
    .btn-primary:hover:after {
      transform: scale(15);
      opacity: 0;
    }
    
    /* Stats Counter Section */
    .stats {
      margin-top: -50px;
      position: relative;
      z-index: 10;
      padding-bottom: 60px;
    }
    
    .stats-grid {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .stat-card {
      padding: 30px;
      border-radius: 16px;
      background-color: var(--white);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
      transition: all 0.4s ease;
      width: 220px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .stat-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }
    
    .stat-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
      font-size: 48px;
      font-weight: 800;
      background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
      margin-bottom: 10px;
      display: block;
      transition: all 0.3s ease;
    }
    
    .stat-card:hover .stat-number {
      transform: scale(1.1);
    }
    
    .stat-text {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-color);
    }
    
    /* How It Works Section */
    .section-title {
      font-size: 42px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      color: var(--dark-bg);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 2px;
    }
    
    .how-it-works {
      padding: 80px 0 100px;
      position: relative;
    }
    
    .process-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 0;
    }
    
    .process-line {
      position: absolute;
      top: 50%;
      left: 50px;
      right: 50px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      transform: translateY(-50%);
      border-radius: 4px;
      z-index: 1;
    }
    
    .process-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }
    
    .process-step {
      text-align: center;
      width: 160px;
      transform: translateY(0);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .process-step:hover {
      transform: translateY(-15px);
    }
    
    .step-icon {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background-color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 20px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 3;
      transition: all 0.3s ease;
    }
    
    .process-step:hover .step-icon {
      transform: scale(1.1);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .step-number {
      position: absolute;
      
      width: 30px;
      height: 30px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      border: 2px solid white;
    }
    
    .step-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--primary-dark);
    }
    
    .step-desc {
      font-size: 14px;
      color: #64748b;
      line-height: 1.4;
    }
    
    /* Benefits Section */
    .benefits {
      padding: 100px 0;
      background-color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .benefits:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
      border-radius: 50%;
      transform: translate(200px, -200px);
    }
    
    .benefits:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(139, 92, 246, 0.1));
      border-radius: 50%;
      transform: translate(-150px, 150px);
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 2;
    }
    
    .benefit-card {
      background-color: var(--white);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: 100%;
    }
    
    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .benefit-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    
    .benefit-card:hover:before {
      transform: scaleX(1);
    }
    
    .benefit-icon {
      font-size: 36px;
      margin-bottom: 20px;
      background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .benefit-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--dark-bg);
    }
    
    .benefit-desc {
      font-size: 15px;
      color: #64748b;
      line-height: 1.6;
    }
    
    /* Categories Section */

    .categories-grid{
        place-content: center;
    display: flex
;
    flex-wrap: wrap;
    gap: 10px;
    }
   
    .return_to_top{
        text-align-last: center;
    background-color: black;
    height: 40px;
    align-content: center;
}
.return_to_top a{
        color: white;
    font-weight: bold;
    text-decoration: none;
}
    .category-slider {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
      padding: 20px 0;
    }
    
    .category-track {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      padding: 10px;
    }
    
    .category-card {
      min-width: 200px;
      width: 200px;
      background-color: var(--white);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
      transition: all 0.4s ease;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    
    .category-card:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      background: linear-gradient(0deg, rgba(59, 130, 246, 0.05), transparent);
      transition: height 0.4s ease;
    }
    
    .category-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    }
    
    .category-card:hover:before {
      height: 100%;
    }
    
    .category-icon {
      font-size: 40px;
      margin-bottom: 20px;
      background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: all 0.3s ease;
    }
    
    .category-card:hover .category-icon {
      transform: scale(1.2);
    }
    
    .category-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--dark-bg);
    }
    
    .category-count {
      font-size: 14px;
      color: #64748b;
      font-weight: 500;
      padding: 4px 10px;
      background-color: rgba(59, 130, 246, 0.1);
      border-radius: 20px;
      display: inline-block;
    }
    
    /* Why Sell With Us Section */
    .why-sell {
      padding: 100px 0;
      background-color: var(--dark-bg);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .why-sell:before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(139, 92, 246, 0.1);
    }
    
    .why-sell:after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
    }
    
    .why-sell .section-title {
      color: var(--white);
    }
    
    .features-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 2;
    }
    
    .feature-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 16px;
      padding: 40px 30px;
      transition: all 0.4s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.1);
    }
    
    .feature-icon {
      font-size: 40px;
      margin-bottom: 20px;
      color: var(--secondary-color);
      background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .feature-title {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
    }
    
    .feature-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .feature-list li:before {
      content: '✓';
      color: var(--secondary-color);
      font-weight: bold;
      margin-right: 10px;
    }
    
    /* CTA Section */
    .cta {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .cta:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .cta h2 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .cta p {
      font-size: 20px;
      margin-bottom: 40px;
      opacity: 0.9;
    }
    
    .btn-cta {
      background-color: var(--white);
      color: var(--primary-dark);
      font-weight: 600;
      padding: 18px 40px;
      border-radius: 30px;
      font-size: 18px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .btn-cta:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .faq, .shipping {
            text-align: left;
            max-width: 800px;
            margin: auto;
        }
        .faq h3 {
            color: #2575fc;
            cursor: pointer;
        }
        .faq p {
            display: none;
            padding-left: 10px;
        }
    /* Animation for floating effect */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: float 4s ease-in-out infinite;
    }
    
    /* Glow effect for stats */
    @keyframes glow {
      0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
      50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.6); }
      100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .process-line {
        display: none;
      }
      
      .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
      }
      
      .process-step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
      }
      
      .hero h1 {
        font-size: 42px;
      }
      
      .category-slider {
        padding: 0;
      }
      
      .feature-card {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 768px) {
         .mob-elt-marg34{
     
  }
      .stats-grid {
        justify-content: center;
      }
      
      .stat-card {
        width: calc(50% - 20px);
        min-width: 180px;
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .hero p {
        font-size: 18px;
      }
      
      .section-title {
        font-size: 32px;
      }
      
      .cta h2 {
        font-size: 36px;
      }
    }
    
    @media (max-width: 576px) {
         .mob-elt-marg34{
     
  }
      .stat-card {
        width: 100%;
      }
      
      .hero {
        padding: 80px 0 100px;
      }
      .step-card{
           margin-left:10px;
      }
      .hero h1 {
        font-size: 30px;
        margin-left:10px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .btn-primary, .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
      }
    }