  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    a {
      text-decoration: none !important;
      color: black !important;
    }

    body {
      font-family: 'Roboto', sans-serif;
      font-size: 14px;
      background-color: #fff;
      color: #333;
    }

    /* Top Header */
    .top-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 10px;
      border-bottom: 1px solid #eee;
    }
    .logo img {
      height: 63px;
    }

    /* Search Box */
    .search-box {
      display: flex;
      flex: 1;
      max-width: 620px;
      margin: 0 30px;
      border: 1px solid #f2ce2f;
      border-radius: 30px;
      overflow: hidden;
      height: 42px;
    }
    .search-box select {
      border: none;
      padding: 0 15px;
      background-color: #fff;
      font-size: 15px;
      font-weight: 600;
      outline: none;
      border-right: 1px solid #eee;
    }
    .search-box input {
      flex: 1;
      border: none;
      padding: 0 15px;
      font-size: 14px;
      outline: none;
    }
    .search-box button {
      border: none;
     background-color: #d5b765;
    background-image:  linear-gradient(315deg, #3f3701 0%, #a0842c91 74%);
      color: #fff;
      cursor: pointer;
      font-size: 18px;
      height: 40px;
      line-height: 40px;
      padding: 0 20px 0 18px;
    }

    /* Header Right */
    .header-right {
      display: flex;
      gap: 28px;
      align-items: center;
    }
    .header-right .item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #2d2d2d;
      font-size: 16px;
      font-weight: 500;
      margin-left: 8px;
      white-space: nowrap;
    }
    .header-right .item i {
      font-size: 28px;
      line-height: 28px;
      color: #444;
    }

    /* Bottom Navigation */
    .bottom-nav {
      display: flex;
      align-items: center;
      padding: 6px 15px;
      font-size: 14px;
      border-bottom: 1px solid #f1f1f1;
      font-weight: 500;
    }
    .bottom-nav a {
      margin-right: 28px;
      color: #000;
    }
    .bottom-nav a:hover {
      text-decoration: underline;
    }
    .bottom-nav .right {
      margin-left: auto;
      display: flex;
      gap: 28px;
    }
    .premiumservicesdata {
      color: #163010e3 !important;
      border: 1px solid #eccd67;
      border-radius: 4px;
      font-weight: 600;
      padding: 9px;
      background-color: #eccd67;
    }

    /* MOBILE STYLES */
    .mobile-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: #333;
    }
    @media(max-width: 768px) {
      .header-right, .bottom-nav {
        display: none;
      }
      .top-header {
        flex-wrap: wrap;
      }
      .mobile-toggle {
        display: block;
      }
      .search-box {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
        margin: 12px 0 0 0;
      }
    }

    /* MOBILE MENU */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 310px;
    background: #eaeaf2;
      box-shadow: -4px 0 15px rgba(0,0,0,0.2);
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 1001;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 0;
      overflow-y: auto;
    }
    .mobile-menu.open {
      transform: translateX(0);
    }
    .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background: linear-gradient(90deg, #c5a71454, #3b3622);
      color: #fff;
    }
    .mobile-header img {
      height: 45px;
    }
    .close-btn {
      font-size: 28px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .close-btn:hover {
      transform: rotate(90deg);
    }
    .menu-section {
     padding: 16px;
    }
    .menu-section.primary {
      background: #fff;
      border-radius: 0 0 12px 12px;
    }
    .menu-section div,
    .menu-section a {
      display: block;
          padding: 14px 5px;
      font-size: 16px;
      font-weight: 500;
          border-bottom: 1.2px solid #b5a252;
      color: #222;
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .mobile-menu.open .menu-section div,
    .mobile-menu.open .menu-section a {
      opacity: 1;
      transform: translateX(0);
    }
    .menu-section a:hover,
    .menu-section div:hover {
      background-color: #fff8f5;
      border-radius: 6px;
    }
    .menu-divider {
      border: none;
      border-top: 1px solid #ddd;
      margin: 0;
    }
    /* Footer */
    .mobile-footer {
      padding: 20px;
      text-align: center;
      background: #fff;
      border-top: 1px solid #eee;
    }
    .mobile-footer .social-icons a {
      margin: 0 10px;
      font-size: 20px;
      color: #444;
      transition: color 0.3s ease;
    }
    .mobile-footer .social-icons a:hover {
      color: #f22f2f;
    }
    .mobile-footer p {
      font-size: 13px;
      color: #777;
      margin-top: 10px;
    }
    .search-btn-icon {
  display: none;
  padding: 0 18px;
  font-size: 20px;
  border: none;
  background: linear-gradient(to right, #f22f2f, #fd5e3d);
  color: #fff;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
}
.search-btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 768px) {
  .search-btn-text {
    display: none !important;
  }
  .search-btn-icon {
    display: inline-flex !important;
  }
}

 h1,
        h2,
        h3,
        h4,
        h5,
        h6 {}
        
        section {
            padding: 60px 0;
            min-height: 100vh;
        }
        
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}.footer-section {
  background-color: #233243;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.footer-section:before {
  content: '';
  position: absolute;
  top: -146%;
  left: -18%;
  width: 44%;
  height: 257%;
  transform: rotate(54deg);
  background-color: rgb(31, 47, 64);
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  z-index: -10;
}
.footer-section:after {
  position: absolute;
  content: '';
  background-color: rgb(31, 47, 64);
  top: -24%;
  right: 4%;
  width: 26%;
  height: 264%;
  transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  z-index: -10;
}
.footer-top {
  padding-top: 30px;
  padding-bottom: 50px;
}
.footer-top .container {
 max-width: 1237px!important;
}
.footer-top p {
  color: #ffffff;
}


.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 170px;
}
.widget-title {
  text-transform: capitalize;
}
.footer-top .widget-title {
  color: #ffffff;
  margin-bottom: 40px;
}
.courses-link-list li+li {
  margin-top: 10px;
}
.courses-link-list li a {
  color: #ffffff !important;
  text-transform: capitalize;
  font-family: var(--para-font);
  font-weight: 400;
}
.courses-link-list li a:hover {
  color: #ffb606;
}
.courses-link-list li i {
  margin-right: 5px;
}


.news-letter-form {
  margin-top: 15px;
}
.news-letter-form input {
  width: 100%;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
}
.news-letter-form input[type="submit"] {
  width: auto;
  border: none;
  background-color: #ffb606;
  padding: 9px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #ffffff;
  margin-top: 10px;
}
.footer-bottom {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
}
.copy-right-text {
  color: #ffffff;
}
.copy-right-text a {
  color: #ffb606;
}
.terms-privacy li+li {
  margin-left: 30px;
}
.terms-privacy li a {
  color: #ffffff;
  position: relative;
}
.terms-privacy li a:after {
  position: absolute;
  content: '-';
  color: #ffffff;
  display: inline-block;
  top: 0;
  right: -18px;
}
.terms-privacy li+li a:after {
  display: none;
}


/* Banner slider and button design start */

  /* Mobile slider full width, desktop no scroll */
 
  @media (max-width: 767px) {
    .valueSwiper {
      width: 100vw;
      margin-left: -16px;
      padding-left: 8px;
      padding-right: 8px;
    }
    .valueSwiper .swiper-wrapper {
      width: 100%;
    }
    .home1{
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  }
  @media (min-width: 768px) {
    .valueSwiper {
      width: auto !important;
      overflow: visible !important;
    }
    .valueSwiper .swiper-wrapper {
      width: auto !important;
      overflow: visible !important;
    }
     .home1{
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  }
  @media (min-width: 768px) {
    .d-md-flex > .col-lg-3 {
      margin-right: 3px;
    }
    .d-md-flex > .col-lg-3:last-child {
      margin-right: 0;
    }
     .home1{
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  }
    body {
      background: #f9fafc;
      font-family: 'Segoe UI', sans-serif;
    }

     .home1{
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
  }
    /* Categories */
    .categories {
      background: #fff;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      height: 100%;
    }
    .categories ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .categories ul li {
      padding: 12.5px 0;
      font-size: 15px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }
    .categories ul li:last-child { border: none; }
    .categories ul li:hover { color: #0d6efd; }

    /* Slider */
    .swiper {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }

    /* Banner Cards */
    .banner-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      min-height: 180px;
    }
    .banner-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .banner-content {
      position: absolute;
      top: 15%;
      left: 10%;
      right: 10%;
      color: #000;
    }
    .banner-content h6 {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 8px;
    }
    .banner-content .btn {
      padding: 6px 14px;
      border-radius: 25px;
      font-size: 13px;
    }

    /* Value Cards */
    .value-card {
      border-radius: 16px;
      padding: 15px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      min-height: 100px;
      transition: all 0.3s ease;
    }
    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 22px rgba(0,0,0,0.2);
    }
    .value-card i {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 65px;
      opacity: 0.15;
    }
    .value-card h5 {
      font-weight: 700;
      margin-top: 25px;
      font-size: 18px;
    }
    .value-card p {
      font-size: 14px;
      opacity: 0.9;
    }

    /* Gradient backgrounds */
    .card-blue { background: linear-gradient(135deg,#4facfe,#00f2fe); }
    .card-green { background: linear-gradient(135deg,#43e97b,#38f9d7); }
    .card-orange { background: linear-gradient(135deg,#f7971e,#ffd200); }
    .card-pink { background: linear-gradient(135deg,#ff6a88,#ff99ac); }

    @media (max-width: 768px) {
    .banner-card {
      min-height: 133px;
    }
    .banner-content button{
        display: none;
    }
    .categories {
        display: none;
    }
  }

/* Banner slider and button design end */


  .lead-box {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      height: 420px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
  .lead-box:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }

  .lead-box-header {
      background: #f8f9fa;
      padding: 10px 14px;
      font-weight: bold;
      font-size: 15px;
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  .lead-box-header a {
      font-size: 13px;
      color: #007bff;
      text-decoration: none;
    }
  .lead-box-content {
     
      overflow: hidden;
      position: relative;
    }

    /* Buy Offers */
  .lead-scroll-list, .lead-product-list {
        list-style: none;
    margin: 0;
    padding: 0;
    }
    .lead-scroll-list {
    animation: scrollUp 100s linear infinite;
}

/* Products – slow 100s */
.lead-product-list {
    animation: scrollUp 30s linear infinite;
}
  .lead-scroll-list li, .lead-product-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 8px;
      border-bottom: 1px solid #f1f1f1;
      font-size: 14px;
      transition: background 0.2s;
    }
  .lead-scroll-list li:hover, .lead-product-list li:hover { background: #f9f9f9; }
  .lead-scroll-list span:first-child {
      display: flex;
      align-items: center;
      gap: 6px;
      max-width: 70%;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  .lead-scroll-list img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

    /* Products */
  .lead-product-list img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border: 1px solid #ddd;
      border-radius: 6px;
      flex-shrink: 0;
    }
  .lead-product-info {
      font-size: 13px;
      margin-left: 16px;
      line-height: 1.3;
      flex: 1;
      min-width: 0;
    }
  .lead-product-info b {
      font-size: 14px;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #333;
    }
  .lead-product-info a {
      color: #007bff;
      font-size: 12px;
      text-decoration: none;
    }

    /* Testimonials */
  .lead-testimonial {
      padding: 14px;
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  .lead-testimonial p {
      margin-bottom: 12px;
      flex-grow: 1;
    }
  .lead-testimonial-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #eee;
      padding-top: 10px;
      font-size: 13px;
    }
  .lead-testimonial-footer .lead-name { font-weight: bold; color: #000; }
  .lead-testimonial-footer img {
      width: 45px;
      height: 45px;
      object-fit: cover;
      border-radius: 6px;
    }

    /* Animations */
    @keyframes scrollUp {
      0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
    }

    /* Pause on hover */
  .lead-box-content:hover .lead-scroll-list,
.lead-box-content:hover .lead-product-list {
    animation-play-state: paused;   /* On Hover → STOP */
}

  /* premium supplier section start */
   .premium-suppliers-wrapper {
      background: #f5f5f5;
      padding: 20px;
      margin: 0 auto;
    }

    .premium-suppliers-wrapper h3 {
      font-size: 1.4rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 15px;
    }

    .premium-suppliers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      align-items: center;
    }

    .premium-suppliers-grid img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 1024px) {
      .premium-suppliers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Hide on small devices */
    @media (max-width: 767px) {
      .premium-suppliers-wrapper {
        display: none;
      }
    }
  /* premium supplier section end */

 /* showing supplier with product section start  */
     .ps-section-title {
            font-size: 28px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .ps-section-title img {
            width: 32px;
            height: 32px;
        }

        .ps-category-card {
            background: url("https://via.placeholder.com/500x500") center/cover no-repeat;
            border-radius: 12px;
            height: 100%;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 20px;
            position: relative;
            overflow: hidden;
            text-align: left;
            animation: fadeInLeft 1s ease;
        }
        .ps-category-card1 {
            background: url("https://via.placeholder.com/500x500") center/cover no-repeat;
            border-radius: 12px;
            height: 100%;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 20px;
            position: relative;
            overflow: hidden;
            text-align: left;
            animation: fadeInLeft 1s ease;
        }
        .ps-category-card2 {
            background: url("https://via.placeholder.com/500x500") center/cover no-repeat;
            border-radius: 12px;
            height: 100%;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 20px;
            position: relative;
            overflow: hidden;
            text-align: left;
            animation: fadeInLeft 1s ease;
        }

        .ps-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../image/banner/Travel-Storage-Bag-Packing-Bags.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4); /* overlay effect */
  border-radius: 12px;
}
        .ps-category-card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../image/banner/Fresh-Vegetables.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4); /* overlay effect */
  border-radius: 12px;
}
 .ps-category-card2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../image/banner/Healthy-Nutrition.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4); /* overlay effect */
  border-radius: 12px;
}


        .ps-category-card h3,
.ps-category-card1 h3,
.ps-category-card2 h3 {
    font-weight: bold;
    font-size: 20px;
    z-index: 1;
    margin-bottom: 40px;
}


        .ps-category-card button, .ps-category-card1 button, .ps-category-card2 button {
            background: linear-gradient(90deg, #00c6ff, #0072ff, #6a11cb);
            background-size: 200% auto;
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 25px;
            border: none;
            z-index: 1;
            transition: all 0.4s ease;
            cursor: pointer;
            align-self: center;
            animation: fadeInUp 1.2s ease;
        }

        .ps-category-card button:hover,
.ps-category-card1 button:hover,
.ps-category-card2 button:hover {
            background-position: right center;
            transform: scale(1.08);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 1s infinite;
        }

        .ps-supplier-card,
        .ps-product-card {
            border-radius: 12px;
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            height: 100%;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            overflow: hidden;
        }

        .ps-supplier-card:hover,
        .ps-product-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.75);
        }

        .ps-card-img {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 8px;
            background: #ddd;
            object-fit: cover;
            display: block;
            transition: transform 0.25s ease;
        }

        .ps-card-img:hover {
            transform: scale(1.04);
        }

        .ps-product-img {
            width: 72px;
            height: 72px;
        }

        .ps-card-content {
            flex: 1;
            min-width: 0;
        }

        .ps-card-content h6 {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 4px;
            color: #111;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ps-card-content p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #555;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ps-card-content .ps-email {
            font-size: 13px;
            color: #0072ff;
            text-decoration: none;
        }

        .ps-card-content .ps-email:hover {
            text-decoration: underline;
        }

        .ps-product-card a {
            color: #0072ff;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            display: inline-block;
            margin-top: 6px;
        }

        .ps-product-card a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #0072ff, #00c6ff);
            transition: width 0.3s ease;
        }

        .ps-product-card a:hover::after {
            width: 100%;
        }

        .ps-product-card a:hover {
            color: #ff512f;
        }

        .ps-blue-ribbon {
            position: absolute;
            top: 6px;
            right: 6px;
            background: linear-gradient(135deg, #0072ff, #00c6ff);
            color: white;
            padding: 3px 8px;
            font-size: 12px;
            border-bottom-left-radius: 8px;
        }

        /* ✅ Mobile view fix */
        @media (max-width: 576px) {
            .ps-category-card {
                display: none;
            }

            .ps-supplier-card {
                flex-direction: row;
                align-items: center;
            }

            .ps-supplier-card .ps-card-img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
            }

            .ps-supplier-card .ps-card-content h6,
            .ps-supplier-card .ps-card-content p {
                white-space: normal;
                overflow: visible;
                text-overflow: unset;
            }

            .ps-product-card {
                flex-direction: column;
                text-align: center;
            }

            .ps-product-card img {
                        width: 72px;
                        height: 72px;
                        max-height: 72px;
                        object-fit: cover;
            }

            

            .ps-card-content h6 {
                font-weight: 700;
                font-size: 15px;
                margin-bottom: 4px;
                color: #111;
                white-space: normal;
                overflow: visible;
            }
          }
            @keyframes fadeInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-40px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }

                100% {
                    transform: scale(1);
                }
            }
  
  /* showing supplier with product section end  */

  /* RFQ section start */
   .rfq-section {
      background: url("https://img.freepik.com/free-photo/businessman-using-digital-tablet-with-icons_53876-102646.jpg") center/cover no-repeat;
      min-height: 75vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 50px 15px;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }

    .rfq-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .rfq-container {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1250px;
      border-radius: 12px;
      gap: 3px;
    }

    /* Left */
    .rfq-left {
      flex: 1.2; /* little wider */
      color: white;
          padding: 30px 0px;
    }
    .rfq-left h2 {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 2rem;
    }
    .rfq-left p {
      font-size: 16px;
      margin-bottom: 25px;
      line-height: 1.6;
    }
    .rfq-left .btn {
      background: #fff;
      color: #333;
      font-weight: 600;
      border-radius: 8px;
      padding: 12px 25px;
      margin-bottom: 25px;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .rfq-left .btn:hover {
      background: #ff4d4d;
      color: #fff;
      transform: translateY(-2px);
    }
    .rfq-left ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .rfq-left ul li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 22px;
      font-size: 15px;
    }
    .rfq-left ul li::before {
      content: "•";
      color: #ffcc00;
      font-size: 20px;
      position: absolute;
      left: 0;
      top: 0;
      line-height: 1;
    }

    /* Right */
    .rfq-right {
      flex: 0 0 510px; /* form made wider */
      background: #fff;
      border-radius: 15px;
      padding: 35px 30px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    .rfq-right h3 {
      font-weight: 700;
      margin-bottom: 25px;
      text-align: center;
    }
    .rfq-form input, 
    .rfq-form textarea {
      border-radius: 30px;
      padding: 14px 18px;
      margin-bottom: 18px;
      border: 1px solid #ddd;
      width: 100%;
      font-size: 15px;
      transition: 0.3s;
    }
    .rfq-form input:focus,
    .rfq-form select:focus {
      border-color: #ff4d4d;
      outline: none;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
    }
    .rfq-form button {
      border-radius: 30px;
      background: linear-gradient(90deg, #ff4d4d, #ff1a1a);
      color: #fff;
      font-weight: 600;
      padding: 14px;
      border: none;
      width: 100%;
      transition: 0.3s;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
    }
    .rfq-form button:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media(max-width: 992px) {
      .rfq-container {
        flex-direction: column;
      }
      .rfq-right {
        margin-top: 25px;
        flex: 1;
      }
    }
  /* RFQ section End */

  /* Blog section start */
  .event-section {
    background: url(https://img2.tradewheel.com/template1/images/homepage/tradeshow-item-banner.jpg.webp);
    background-size: cover;
    background-position: center center;
    padding: 30px 20px;
    width: 100%;
}

.eventSwiper {
    width: 100%;
}

.swiper-slide {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.event-card {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.event-img {
       width: 100%;
    height: 160px;
    max-height: 160px;
    object-fit: cover;
}

.event-body {
    padding: 15px;
}

.event-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.event-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.event-link {
    font-weight: bold;
    color: rgb(110, 52, 16);
    text-decoration: none;
}

@media (max-width: 480px) {
    
    .event-section {
    padding: 10px 0px;
    width: 100%;
}


}

  /* Blog section end */

  /* country section start */
  .regions {
            background-color: #fff;
            padding: 25px 0;
        }

        

        .regions ul li img {
            width: 40px;
            border: 1px solid #e1e1e1;
            border-radius: 2px;
        }

        .regions ul li span {
            display: block;
            width: 100%;
            font-weight: 500;
            padding: 5px 10px 0;
            color: black;

        }

        .regions ul li {
            display: inline-table;
            padding: 0;
            margin: 10px;
            width: -moz-max-content;
            width: max-content;
            max-width: -moz-max-content;
            max-width: max-content;
            cursor: pointer;
            text-align: center;
        }

        .regions ul {
            display: inline-block;
            width: 100%;
            margin: 15px 0;
            text-align: center;
        }

        .regions .list {
            padding: 0;
        }

        .regions h3 {
            font-size: 1.25rem;
            width: 100%;
            text-align: center;
            text-transform: uppercase;
            font-weight: 800;
        }

  /* country section End */

  /* last section start */
   .footercontant-keyword {
            background: #fff;
            padding: 20px .5rem;
            overflow: hidden;
        }

        .contantmainfooter h5 {
            font-size: .9rem;
            margin-bottom: 5px;
            color: #000;
            font-weight: 600;
        }

        .contantmainfooter b {
            color: black;
        }

        .contantmainfooter p {
            font-size: .75rem;
            color: grey;
            margin-bottom: 0;
            text-align: justify;
        }
  /* last section end */


    
    .chatbot-toggle {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 64px;
      height: 64px;
      min-width: 64px;
      min-height: 64px;
      max-width: 64px;
      max-height: 64px;
      border-radius: 50%;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1001;
      border: 3px solid #fff;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36), 0 2px 8px rgba(0, 0, 0, 0.12);
      /* No background or transform */
      background: none;
      outline: none;
      transition: transform 0.22s cubic-bezier(.4, 2, .6, 1), box-shadow 0.22s;
      overflow: visible;
    }

    /* Remove hover and active background/transform */
    .chatbot-toggle:hover,
    .chatbot-toggle:focus,
    .chatbot-toggle:active {
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36), 0 2px 8px rgba(0, 0, 0, 0.12);
      /* No background or transform */
      background: none;
      transform: none;
    }

    .chatbot-toggle .toggle-icon {
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border-radius: 50%;
      box-shadow: none;
      font-size: 32px;
      color: #fff;
      transition: color 0.2s;
      animation: jump 1.2s infinite cubic-bezier(.4, 0, .6, 1);
    }

    @keyframes jump {

      0%,
      100% {
        transform: translateY(0);
      }

      20% {
        transform: translateY(-8px);
      }

      40% {
        transform: translateY(-16px);
      }

      50% {
        transform: translateY(-18px);
      }

      60% {
        transform: translateY(-16px);
      }

      80% {
        transform: translateY(-8px);
      }
    }


    .chatbot {
      position: fixed;
      bottom: 81px;
      right: 36px;
      width: 349px;
      max-width: 72vw;
      background: linear-gradient(135deg, #f8fafc 80%, #e3f0ff 100%);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24), 0 2px 8px rgba(0, 0, 0, 0.10);
      display: none;
      flex-direction: column;
      overflow: visible;
      animation: chatbotPopIn 0.55s cubic-bezier(.4, 2, .6, 1) forwards;
      z-index: 1000;
      border: 2.5px solid #e3f0ff;
    }

    @keyframes chatbotPopIn {
      0% {
        transform: scale(0.7) translateY(100%);
        opacity: 0;
        filter: blur(8px);
      }

      60% {
        transform: scale(1.05) translateY(-10px);
        opacity: 1;
        filter: blur(0.5px);
      }

      100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
      }
    }


    .chat-header {
      color: #2f1f1f;
      background-color: #c66b50;
      background-image: linear-gradient(315deg, #956f63 0%, #f0d278 74%);
      padding: 18px 15px 15px 15px;
      font-weight: 500;
      text-align: center;
      font-size: 1.18rem;
      letter-spacing: 0.5px;
      border-bottom: 1.5px solid #e3f0ff;
      box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
    }


    .chat-body {
      padding: 18px 15px 10px 15px;
      flex: 1 1 auto;
      min-height: 80px;
      max-height: 320px;
      overflow-y: auto;
      background: transparent;
      font-size: 1.04rem;
      transition: background 0.3s;
      scrollbar-width: thin;
      scrollbar-color: #b2f7ef #f8fafc;
    }

    .chat-body::-webkit-scrollbar {
      width: 7px;
      background: #f8fafc;
      border-radius: 8px;
    }

    .chat-body::-webkit-scrollbar-thumb {
      background: #b2f7ef;
      border-radius: 8px;
    }


    .bot-message,
    .user-message {
      padding: 11px 15px;
      margin-bottom: 10px;
      border-radius: 16px;
      font-size: 1.01rem;
      box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.06);
      word-break: break-word;
      max-width: 100%;
      width: 100%;
      /* display: inline-block; */
      box-sizing: border-box;
    }

    .bot-message {
      background: linear-gradient(90deg, #f1f1f1 80%, #e3f0ff 100%);
      color: #222;
      align-self: flex-start;
    }

    .user-message {
      color: #222;
      text-align: right;
      align-self: flex-end;
      color: green;
      margin-left: auto;
      font-size: 18px;
    }

    .chat-input-area {
      display: flex;
      padding: 12px 10px 12px 10px;
      border-top: 1.5px solid #e3f0ff;
      background: #f8fafc;
    }

    .chat-input-area input {
      flex: 1;
      padding: 11px 12px;
      border-radius: 10px;
      border: 1.5px solid #b2f7ef;
      font-size: 1rem;
      outline: none;
      transition: border 0.2s;
    }

    .chat-input-area input:focus {
      border: 1.5px solid #007bff;
    }

    .chat-input-area button {
      color: #2f1f1f;
      background-color: #f39f86;
      background-image: linear-gradient(315deg, #f39f86 0%, #f9d976 74%);
      border: none;
      padding: 0 18px;
      margin-left: 7px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      box-shadow: 0 1.5px 6px rgba(40, 167, 69, 0.08);
      transition: background 0.2s, transform 0.18s;
    }

    .chat-input-area button:hover {
      background: linear-gradient(90deg, #218838 80%, #00c851 100%);
      transform: scale(1.06);
    }


    .chat-form {
      display: flex;
      flex-direction: column;
      padding: 18px 15px 15px 15px;
      border-radius: 12px;
      background: #fff;
      margin: 10px 0 0 0;
      box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.04);
      border: 1px solid #e3f0ff;
      width: 100%;
      max-width: 100%;
      /* No overflow, let chat-body scroll */
    }

    .chat-form::-webkit-scrollbar {
      width: 7px;
      background: #f8fafc;
      border-radius: 8px;
    }

    .chat-form::-webkit-scrollbar-thumb {
      background: #b2f7ef;
      border-radius: 8px;
    }


    .chat-form input {
      margin-bottom: 12px;
      padding: 11px 12px;
      border-radius: 10px;
      border: 1.5px solid #b2f7ef;
      font-size: 1rem;
      outline: none;
      transition: border 0.2s;
    }

    .chat-form input:focus {
      border: 1.5px solid #007bff;
    }


    .chat-form button {
      background: linear-gradient(90deg, #ffc107 80%, #ffecb3 100%);
      color: #222;
      border: none;
      padding: 11px 0;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      box-shadow: 0 1.5px 6px rgba(255, 193, 7, 0.08);
      transition: background 0.2s, transform 0.18s;
    }

    .chat-form button:hover {
      background: linear-gradient(90deg, #ffb300 80%, #ffe082 100%);
      transform: scale(1.04);
    }

    @media (max-width: 600px) {
      .chatbot {
        width: 98vw;
        right: 1vw;
        bottom: 70px;
        min-width: 0;
        max-width: 100vw;
        border-radius: 16px 16px 12px 12px;
      }

      .chatbot-toggle {
        width: 54px;
        height: 54px;
        min-width: 54px;
        min-height: 54px;
        max-width: 54px;
        max-height: 54px;
        right: 10px;
        bottom: 10px;
      }

      .chat-header {
        font-size: 1rem;
        padding: 14px 8px 12px 8px;
      }

      .chat-body {
        padding: 12px 6px 6px 6px;
        font-size: 0.98rem;
      }

      .chat-form {
        padding: 12px 6px 10px 6px;
      }
    }

    .bot-message.success-message {
      color: #1ca11c;
      font-weight: 600;
    }