html {
  width: 100%;
  overflow-x: hidden;
}
/* banner */
.banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(22, 22, 22, 0.8), rgba(19, 44, 79, 0.9)),
    url("/img/MARKETPLACE.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  padding-bottom: 30px;
}
:root {
  --font-main: 'Poppins', sans-serif;
  --card-color-1: var(--primary);
  --card-color-2: var(--accent);
  --card-color-3: white;
  --card-color-4: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent) 100%
  );
}
/* PRODUCT PAGE SPECIFIC STYLES */
section {
  padding: 60px 10%;
  font-family: var(--font-main);
}

/* Features */
.features-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.feature {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(255, 107, 53, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
}

.feature p {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

/* Product Showcase Styles */
.product-showcase {
  padding: 5rem 1rem;
  background: #f8f9fa;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-header h2 {
  font-size: 2.4rem;
  color: #2c599d;
  margin-bottom: 0.5rem;
}

.showcase-header .subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

/* Product Visuals */
.product-visuals {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.main-visual img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  
  
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.thumbnail-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.thumbnail-grid img:hover {
  transform: scale(1.03);
}

/* Value Propositions */
.value-propositions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.proposition-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.proposition-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(44, 89, 157, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 1.8rem;
  color: #2c599d;
}

.proposition-card h3 {
  color: #2c599d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.proposition-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Market Focus */
.market-focus {
  text-align: center;
}

.market-focus h3 {
  font-size: 1.8rem;
  color: #ff6b35;
  margin-bottom: 2rem;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.market-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.focus-statement {
  font-style: italic;
  color: #2c599d;
  font-size: 1.3rem;
  margin: 2rem auto 3rem;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
  background: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .value-propositions {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-visual img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .value-propositions {
    grid-template-columns: 1fr;
  }

  .thumbnail-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .main-visual img {
    height: 250px;
  }

  .thumbnail-grid img,
  .market-grid img {
    height: 150px;
  }

  .showcase-header h2 {
    font-size: 2rem;
  }
}
/* Pricing Section with Alternating Colors */
.pricing-section {
  padding: 4rem 1rem;
  text-align: center;
  background: white;
}

.pricing-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

/* Alternating card colors */
.pricing-card:nth-child(odd) {
  background: var(--primary);
  color: white;
}

.pricing-card:nth-child(even) {
  background: var(--light);
  color: var(--dark);
}

.pricing-card:nth-child(4n + 1) {
  background: var(--accent);
  color: white;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card:nth-child(even) ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

.pricing-card:nth-child(odd) ul li:before,
.pricing-card:nth-child(4n + 1) ul li:before {
  color: white;
}

.pricing-card:nth-child(even) ul li:before {
  color: var(--accent);
}

.price-small {
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
  margin-top: -0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .banner-content {
    padding-top: 10rem;
  }

  .product-img img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .banner-content {
    padding-top: 8rem;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

  .product-img,
  .product-text {
    flex: 1 1 100%;
  }

  .product-section:nth-child(odd) .product-img,
  .product-section:nth-child(even) .product-img {
    order: 1;
  }

  .product-text {
    order: 2;
  }

  .pricing-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .banner-content {
    padding-top: 6rem;
  }

  .features-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
  }

  .product-text h2 {
    font-size: 1.6rem;
  }
}
