/* Header Base */
.navbar {
  background-color: #000000;
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Logo Text */
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1d4ed8;
  margin-right: 40px;
  flex-shrink: 0;
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
}

.nav-menu a:hover {
  color: #1d4ed8;
}

/* Get Started Button */
.btn-started {
  background-color: #1d4ed8;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-started:hover {
  background-color: #2563eb;
}

/* Header */
    header {
      background-color: #000;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
      position: relative;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: bold;
      color: #1d4ed8;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: white;
    }

    #menu-toggle {
      display: none;
    }

    .nav-menu {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-menu li a {
      color: white;
      font-weight: 500;
      padding: 10px 15px;
    }

    .btn-started {
      background: #1d4ed8;
      color: white;
      padding: 8px 16px;
      border-radius: 5px;
      font-weight: 500;
    }

    .mobile-btn { display: none; }

    /* Dropdown Menu */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #1e293b;
      min-width: 220px;
      display: none;
      flex-direction: column;
      z-index: 999;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .dropdown:hover .dropdown-menu {
      display: flex;
    }

    .dropdown-menu li {
      position: relative;
    }

    .dropdown-menu a {
      color: white;
      padding: 12px 20px;
      display: block;
      font-weight: 500;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #2563eb;
    }

    .submenu:hover .dropdown-submenu {
      display: block;
    }

    .dropdown-submenu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #1e293b;
      min-width: 200px;
      z-index: 999;
    }

    .dropdown-submenu a {
      padding: 10px 18px;
    }

    .dropdown > a::after,
    .submenu > a::after {
      content: ' ▸';
      float: right;
      font-size: 12px;
    }

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #0d6efd;
}

/* Button */
.btn-primary {
  background-color: #0d6efd;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0847c4;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #0070f3;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #00c6ff; /* sky blue on hover */
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00c6ff;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


.btn {
  background: #0070f3;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background: url('ecommerce-pattern.png') repeat;
  background-color: #f0f8ff;
  padding: 100px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  font-size: 2.8rem;
  color: #111827;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #1d4ed8;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #2563eb;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}







/* Features */
.features {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature i {
  color: #0070f3;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background-color: #f1f1f1;
  padding: 60px 0;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Media Queries */
@media (min-width: 768px) {
  .testimonial-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.expertise {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.expertise h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
}

.expertise-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.expertise-box {
  background: linear-gradient(to bottom right, #00c6ff, #e0f7ff);
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.expertise-box:hover {
  transform: translateY(-10px);
}

.expertise-box h3 {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.expertise-box .subtitle {
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.expertise-box .divider {
  width: 40px;
  height: 4px;
  background: white;
  margin: 0 auto 15px;
}

.expertise-box p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
.expertise {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.expertise h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
}

.expertise-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.expertise-box {
  background: linear-gradient(to bottom right, #00A6FF, #e5f7ff);
  color: #111;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.expertise-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  font-size: 2.5rem;
  color: #fff;
  background-color: #111;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.expertise-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.expertise-box .subtitle {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.expertise-box .divider {
  width: 40px;
  height: 4px;
  background: #111;
  margin: 0 auto 15px;
}

.expertise-box p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .expertise-container {
    flex-direction: column;
    align-items: center;
  }

  .expertise-box {
    margin-bottom: 20px;
  }
}


.marketplaces-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.marketplaces-content .text {
  flex: 1;
  max-width: 600px;
}

.marketplaces-content .text h5 {
  font-size: 16px;
  color: #007bff;
  margin-bottom: 10px;
}

.marketplaces-content .text h5 span {
  color: #000;
  font-weight: bold;
}

.marketplaces-content .text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 20px;
}

.marketplaces-content .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.marketplaces-content .btn-explore {
  background-color: #007bff;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
}

.marketplaces-content .image {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.marketplaces-content .image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .marketplaces-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .marketplaces-content .text,
  .marketplaces-content .image {
    max-width: 100%;
  }

  .marketplaces-content .image img {
    width: 90%;
    max-width: 300px;
    height: auto;
  }

  .marketplaces-content .text h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .marketplaces-content .text p {
    padding: 0 10px;
  }
}

.seller-section {
  padding: 100px 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seller-section .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.seller-section .text-content {
  flex: 1 1 500px;
}

.seller-section .image-content {
  flex: 1 1 500px;
  text-align: center;
}

.seller-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.sub-heading {
  font-weight: bold;
  color: #007bff;
  font-size: 14px;
}

.category {
  font-size: 18px;
  color: #1b1b1b;
  margin: 5px 0 20px;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 20px;
}

.description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.buttons .btn {
  text-decoration: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #007bff;
  color: white;
}

.btn.primary:hover {
  background-color: #0056b3;
}

.btn.secondary {
  background-color: #004bb4;
  color: white;
}

.btn.secondary:hover {
  background-color: #003b8a;
}

.small-note {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}
.why-sell-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-sell-section .section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1b1b1b;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  flex: 1 1 300x;
  background: #e0e0e0;
  border-radius: 30px;
  padding: 30px 25px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:nth-child(1),
.card:nth-child(3) {
  background-color: #007bff;
  color: white;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}
.how-we-do-it {
  background: #00aaff;
  color: #fff;
  padding: 80px 20px;
}

.how-we-do-it .section-title {
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.text-block {
  background: transparent;
  padding: 20px;
}

.text-block h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
}

.text-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.text-block p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

.image-block img {
  width: 80%;
  border-radius: 6px;
  object-fit: cover;
}

.text-block.full {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .grid-box {
    grid-template-columns: 1fr;
  }
}

  .container {
    max-width: 1200px;
    margin: auto;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    text-align: center;
  }
  .card img {
    width: 80%;
    height: 140px;
    object-fit: cover;
  }
  .card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
  }
  .card p {
    font-size: 14px;
    color: #555;
  }
  .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0056ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  .btn:hover {
    background-color: #003bcc;
  }
  /* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(white-space: );
}

/* Navbar */
.navbar {
  background-color: none;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav-menu li a:hover {
  color: #00aaff;
}
footer {
      background-color: #020202;
      color: white;
      padding: 40px 20px;
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: auto;
      gap: 20px;
      align-items: flex-start;
    }
    .footer-video {
      flex: 1;
      max-width: 300px;
    }
    .footer-info {
      flex: 2;
    }
    .footer-info h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .footer-info p {
      font-size: 1rem;
      line-height: 1.6;
    }
    .quick-links {
      flex: 1;
    }
    .quick-links h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .quick-links ul {
      list-style: none;
      padding: 0;
    }
    .quick-links ul li {
      margin-bottom: 8px;
    }
    .quick-links ul li a {
      color: white;
      text-decoration: none;
    }
    .quick-links ul li a:hover {
      text-decoration: underline;
    }
    video {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
      header h1 {
        font-size: 2.5rem;
        padding: 0 10px;
      }
      .footer-content {
        flex-direction: column;
        align-items: center;
      }
      .footer-video, .footer-info, .quick-links {
        max-width: 100%;
        flex: unset;
        text-align: center;
      }
    }
  #whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    display: inline-block;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  #whatsapp-float:hover {
    transform: scale(1.1);
  }

  #whatsapp-float img {
    width: 40px;
    height: 40px;
  }
  /* Make header black */
.navbar {
  background-color: #000 !important;
}
 /* Responsive */
    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }

      .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        margin-top: 60px;
      }

      #menu-toggle:checked ~ .hamburger + .nav-menu {
        display: flex;
      }

      .nav-menu li {
        padding: 10px 20px;
        border-bottom: 1px solid #333;
      }

      .desktop-btn {
        display: none;
      }

      .mobile-btn {
        display: block;
        margin-top: 10px;
      }

      .btn-started {
        width: 90%;
        margin: 10px auto;
        text-align: center;
      }

      .dropdown-menu,
      .dropdown-submenu {
        position: static;
        background: #111;
      }
    }


  

</style>
