* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.header {
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4%;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo { height: 20px; }

.left-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.location-box, .search-box {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 6px 10px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.location-box i { color: #0078ff; margin-right: 6px; }
.location-box input {
  width: 180px;
  padding: 8px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #fff;

}

.location-box, .search-box {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.search-box {
  border: 1px solid #ddd;
  width: 300px;
  overflow: hidden;
}
.search-box input { flex: 1; padding: 8px 10px; font-size: 14px; }
.search-box button { background: #ff6600; border: none; padding: 8px 12px; color: #fff; cursor: pointer; }

.right-section { display: flex; align-items: center; gap: 15px; }
.list-btn, .signin-btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.list-btn { background: linear-gradient(90deg, #007bff, #0056d2); color: #fff; border: none; }
.signin-btn { border: 1px solid #0078ff; color: #0078ff; background: #fff; }

.hamburger { display: none; font-size: 20px; cursor: pointer; }

.bottom-row { background: #f8f9fc; position: relative; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 30px; list-style: none; padding: 10px; flex-wrap: wrap; }
.nav-links li a { text-decoration: none; color: #333; font-size: 14px; font-weight: 500; transition: 0.3s; display:flex; align-items:center; }
.nav-links li a:hover { color: #0078ff; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  display: none;
  justify-content: space-around;
  padding: 25px 5%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  animation: dropdown 0.4s ease;
  flex-wrap: wrap;
  z-index: 998;
}
.mega-menu.show { display: flex; }

.mega-column { width: 20%; margin-bottom: 15px; }
.mega-column h4 { color: #0078ff; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.mega-column ul { list-style: none; }
.mega-column ul li { margin: 6px 0; font-size: 13px; color:#333; }
.mega-column ul li a { text-decoration: none; color:#333; }
.mega-column ul li a:hover { color: #0078ff; transform: translateX(4px); }
.mega-column ul li a img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  object-fit: contain;
}

@keyframes dropdown {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .hamburger { display: block; }
  .bottom-row { display: none; flex-direction: column; width: 100%; }
  .bottom-row.active { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; padding-left: 20px; gap: 10px; }
  .mega-menu { position: static; flex-direction: column; box-shadow: none; width: 100%; padding: 10px 0; }
  .mega-column { width: 100%; }
}

/* Apparel & Fashion */

.apparel-section {
  background: #f8f9fc;
  padding: 50px 4%;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1c1c1c;;
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.fashion-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  width: calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.fashion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.fashion-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.fashion-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0078ff;
  margin-bottom: 15px;
}

.fashion-card ul {
  list-style: none;
  padding: 0;
}

.fashion-card ul li {
  margin-bottom: 10px;
}

.fashion-card ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fashion-card ul li a:hover {
  color: #0078ff;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
  .fashion-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .fashion-card {
    width: 100%;
  }
}

/* Agriculture */

.apparel-section {
  background: #f8f9fc;
  padding: 50px 4%;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1c1c1c;;
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.fashion-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  width: calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.fashion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.fashion-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.fashion-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0078ff;
  margin-bottom: 15px;
}

.fashion-card ul {
  list-style: none;
  padding: 0;
}

.fashion-card ul li {
  margin-bottom: 10px;
}

.fashion-card ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fashion-card ul li a:hover {
  color: #0078ff;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
  .fashion-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .fashion-card {
    width: 100%;
  }
}

/*---- Top Vendors ----*/

.top-vendors {
  padding: 60px 5%;
  background: #f9fafc;
  text-align: center;
}

.top-vendors h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.top-vendors .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.vendor-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.vendor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.vendor-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.vendor-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.vendor-card .location {
  color: #777;
  font-size: 16px;
  margin-bottom: 5px;
}

.vendor-card .tags {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.vendor-card .rating {
  font-size: 15px;
  color: #f5a623;
  margin-bottom: 12px;
}

.vendor-card small {
  color: #555;
}

.contact-btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #0056d2, #007bff);
  transform: scale(1.05);
}

/* Responsive layout */
@media (max-width: 992px) {
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vendor-grid {
    grid-template-columns: 1fr;
  }
}

/* Fade-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----- Supplier -------*/

.top-cities {
  text-align: center;
  padding: 70px 5%;
  background: #ffffff;
}

.top-cities h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Gradient underline */
.top-cities h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* City rows */
.city-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
}

/* Each city card */
.city-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 20px 10px;
  width: 150px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.8s ease both;
}

.city-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

/* City name styling */
.city-card span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #222;
  transition: all 0.3s ease;
}

/* Hover animations */
.city-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.15);
}

.city-card:hover img {
  transform: scale(1.1);
}

/* Gradient text on hover */
.city-card:hover span {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Entry animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .city-card {
    width: 120px;
    padding: 15px;
  }
  .city-card img {
    width: 50px;
    height: 50px;
  }
}

/*Find Suppliers by Country or Region*/

.country-suppliers {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 70px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 45px;
  position: relative;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #007bff;
  display: block;
  margin: 10px auto;
  border-radius: 3px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.country-card {
  background: #fff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.country-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #e5e7eb;
  transition: transform 0.3s, border-color 0.3s;
}

.country-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.country-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.country-card:hover img {
  transform: scale(1.1);
  border-color: #007bff;
}

.country-card.more {
  background: #007bff;
  color: #fff;
}

.country-card.more i {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .country-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .country-card {
    width: 110px;
    height: 110px;
  }
  .country-card img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/*---- Features Product---*/

.featured-products {
  text-align: center;
  padding: 80px 5%;
  background: #fdfdfd;
}

.featured-products h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

/* Underline effect */
.featured-products h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Subheading */
.section-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.section-subheader p {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.section-subheader .view-all {
  font-size: 18px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-subheader .view-all:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease both;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 a {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card h3 a:hover {
  color: #007bff;
}

.product-card .moq,
.product-card .price {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.product-card .price {
  font-weight: 600;
  color: #222;
}

.quote-btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background: linear-gradient(90deg, #0056b3, #0098ff);
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-card img {
    height: 160px;
  }
}

/* Hover lift effect */
    .hover-lift:hover {
      transform: translateY(-8px);
      transition: all 0.3s ease;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    }

    .card h5 {
      font-size: 1.25rem;
    }

    .display-6 {
      font-size: 2.25rem;
    }

    .badge {
      font-size: 0.85rem;
      padding: 0.5em 0.75em;
      border-radius: 2rem;
    }

    /*---Supplier plan ----*/

    .supplier-plans {
  padding: 60px 4%;
  background: #f8f9fc;
  text-align: center;
}

.supplier-plans h2 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.supplier-plans h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0078ff;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.supplier-plans .subheading {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.plans-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-card.popular {
  border: 2px solid #0078ff;
}

.plan-card .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0078ff;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.plan-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0078ff;
}

.plan-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: #555;
}

.plan-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding: 0;
}

.plan-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.plan-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #007bff, #0056d2);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.plan-card .btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
  .plans-row {
    flex-direction: column;
    align-items: center;
  }
}

/*----- Onboard Section ----*/

.onboard-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 5%;
  background: #f9fbff;
  animation: fadeInUp 1s ease both;
}

/* LEFT SIDE */
.onboard-left {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1s ease both;
}

.onboard-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Underline */
.onboard-left h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #0056d2);
  border-radius: 2px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.steps li {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.steps li span {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #0056d2);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: 600;
  margin-right: 12px;
}

.steps li:hover {
  transform: translateX(5px);
  color: #007bff;
}

/* Button */
.supplier-btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.supplier-btn:hover {
  background: linear-gradient(90deg, #0056b3, #0098ff);
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.onboard-right {
  flex: 1.2;
  min-width: 320px;
  overflow-x: auto;
  animation: slideInRight 1s ease both;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background: #f0f6ff;
  color: #1c1c1c;
  font-weight: 700;
}

.pricing-table th:nth-child(3) {
  color: #007bff;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.tick {
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}

.cross {
  color: #dc3545;
  font-weight: bold;
  font-size: 18px;
}

.limited {
  color: #ff8800;
  font-weight: 600;
}

.unlimited {
  color: #007bff;
  font-weight: 600;
}

/* Animations */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .onboard-section {
    flex-direction: column;
    text-align: center;
  }
  .onboard-left {
    align-items: center;
  }
  .steps li {
    justify-content: center;
  }
  .pricing-table {
    font-size: 16px;
  }
}

/*----- Why Choose Us -----*/

.why-choose-us {
  text-align: center;
  padding: 80px 5%;
  background: #ffffff;
  animation: fadeInUp 1s ease both;
}

.why-choose-us h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Underline */
.why-choose-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Subheading */
.why-choose-us .subheading {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards */
.why-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease both;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.why-card .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.why-card:hover .icon img {
  transform: scale(1.15);
}

.why-card h3 {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}

/* ----- FAQ ------*/

.faq-section {
  background: #f9fbff;
  padding: 80px 5%;
  animation: fadeInUp 1s ease both;
}

.faq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.faq-left h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e6f0ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f1f6ff;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* FAQ Right side image */
.faq-right {
  flex: 1;
  text-align: center;
}

.faq-right img {
  max-width: 100%;
  border-radius: 12px;
  animation: fadeIn 1s ease both;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

/* -----Footer ----*/

.b2b-footer {
  background: #0c1a2a;
  color: #ffffff;
  padding: 70px 5% 20px;
  animation: fadeInUp 1s ease both;
}

.b2b-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Logo + Description */
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-logo-area h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}

.footer-desc {
  font-size: 14px;
  color: #bfc6d1;
  line-height: 1.6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 15px;
}

.social-icons a:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  transform: translateY(-3px);
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #bfc6d1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col ul li a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.newsletter button {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.terms-text {
  margin-top: 10px;
}

.terms-text a {
  color: #00c6ff;
  text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom hr {
  width: 80%;
  margin: 0 auto 15px;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #bfc6d1;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  font-size: 13px;
  color: #bfc6d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00c6ff;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .b2b-footer-container {
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input, .newsletter button {
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
  }
}

