* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: inline-block;
  max-width: 100%;
}
hr {
  margin: 0px;
}
ul {
  padding: 0px;
}
.pd-5 {
  padding: 5px 0px;
}

/*menu css*/
#sidebar {
  width: 260px;
  height: 100vh;
  background: #e7eff3;
  position: fixed;
  top: 0;
  left: -260px; /* Hidden by default */
  transition: 0.3s ease;
  z-index: 1050;
}

#sidebar.active {
  left: 0;
}

/*@media(max-width: 575px){
  #sidebar.active {
  left: 0;
 }  
}*/

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.card-header-close-btn {
  position: absolute;
  top: 4px;
  right: 8px;
  z-index: 1060;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 24px;
  line-height: 1;
  padding: 0 6px;
  cursor: pointer;
}
.card-header-close-btn:hover,
.card-header-close-btn:focus {
  color: #000;
}
body {
  padding-top: 50px; /* adjust based on header height */
  padding-bottom: 40px;
}
body.header-closed {
  padding-top: 0;
}
.sticky-header {
  transition: all 0.3s ease-in-out;
}

#sidebar a {
  color: #000;
  text-decoration: none;
  padding: 6px 20px;
  display: block;
}

#sidebar a:hover {
  background: #ffffff;
  color: #000;
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1040;
}

#overlay.active {
  display: block;
}

/* Content */
#content {
  padding: 20px;
}

#sidebar .figure-menu {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  padding: 5px;
  display: block;
  margin: 70px auto 20px auto;
  background-color: #ffffff;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.companydetails h3 {
  text-transform: capitalize;
}
.companydetails p {
  margin-bottom: 0px;
}
.review1 {
  border: 1px solid #dcd5d5;
  font-size: 12px;
  padding: 5px;
}
.figure-menu img {
  height: 90px;
  width: 90px;
}
.herobanner img {
  height: 500px;
}

#sidebar .btn {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 700;
  border-width: 0;
  letter-spacing: 0;
}
#sidebar .btn-primar1 {
  color: #fff;
  background-color: #000000;
}

#sidebar a {
  font-size: 14px;
}

/*end*/
.socialmediafooter ul li {
  display: inline-block;
}
/*about css*/
/*details summary {
    cursor: pointer;
    color: #0d6efd;
    font-weight: 600;
}
details p {
    margin-top: 10px;
}
.aboutp p{
  margin-bottom: 0px;
}
*/
/*end*/
.about-us {
  padding: 5px 0px;
}
.about-us p {
  margin-bottom: 0px;
  text-align: justify;
  font-size: 15px;
}

#moreText {
  display: none;
}

#readBtn {
  background: none;
  border: none;
  color: #8c8c8c;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

/* PRODUCT CARD */
.product-card {
  border: 1px solid #eee;
  border-radius: 6px;
  transition: box-shadow 0.2s;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .product-img {
    height: 160px;
  }
}
/**/

/*product details page*/
/* ===== IMAGE BOX ===== */
.image-box {
  border: 1px solid #ddd;
  overflow: hidden;
  text-align: center;
}
.image-box img {
  transition: transform 0.4s ease;
}
@media (min-width: 992px) {
  .image-box:hover img {
    transform: scale(1.2);
  }
}

/* ===== THUMBNAIL WRAPPER ===== */
.thumb-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 10px;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.thumb-wrapper:active {
  cursor: grabbing;
}

.thumb-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  flex-shrink: 0;
  cursor: pointer;
}
.thumb-img.active {
  border-color: #0d6efd;
}
.image-box img {
  border-radius: 10px;
}
/*@media (max-width: 768px) {
  .thumb-track {
    animation-duration: 30s;
  }
}
@keyframes thumbScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}*/

/* ===== QTY BUTTON ===== */
.qty-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 18px;
}

/* ===== RELATED PRODUCTS ===== */
.related-wrapper {
  overflow: hidden;
}
.related-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: relatedScroll 30s linear infinite;
}
.related-wrapper:hover .related-track {
  animation-play-state: paused;
}
.related-card {
  min-width: 170px;
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
}
.related-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.related-card h6 {
  font-size: 14px;
  margin: 6px 0 4px;
}
.related-card p {
  margin: 0;
  font-weight: 600;
  color: #000;
}
@media (max-width: 768px) {
  .related-track {
    animation-duration: 40s;
  }
}
@keyframes relatedScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*end*/
.companyhead a {
  font-size: 28px;
}
.navbar1 {
  padding: 0px;
}

.companyhead {
  padding: 5px 5px 5px 5px;
  align-items: center;
}
.cname {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cname h3 {
  text-align: center;
  margin-bottom: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.sharedetails {
  text-align: right;
  font-size: 20px;
}
.sharedetails i {
  color: #000000;
}
.search-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-toggle-btn:hover,
.search-toggle-btn:focus {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.product-search-status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: #6b7280;
  text-align: center;
}

.product-search-results {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}

.product-search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-decoration: none;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-search-item:hover,
.product-search-item:focus {
  border-color: #111827;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.product-search-item-title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-search-item-meta {
  font-size: 0.88rem;
  color: #6b7280;
}

.product-search-chevron {
  flex: 0 0 auto;
  color: #9ca3af;
  font-size: 18px;
}

.product-search-empty {
  padding: 14px;
  text-align: center;
  color: #6b7280;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
  background: #fafafa;
}

.product-search-modal .modal-content {
  border-radius: 18px;
}

.product-search-modal .modal-header {
  border-bottom: 1px solid #eef2f7;
}

.product-search-modal .modal-body {
  padding-top: 1rem;
}

@media (max-width: 576px) {
  .search-toggle-btn {
    width: 32px;
    height: 32px;
    margin-right: 4px;
  }

  .product-search-item {
    padding: 11px 12px;
  }
}
.lite-app-btn {
  border: 1px solid #0f766e;
  background: #ffffff;
  color: #0f766e;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.lite-app-btn:hover,
.lite-app-btn:focus {
  background: #0f766e;
  color: #ffffff;
}

.lite-app-btn.lite-app-ready {
  background: #0f766e;
  color: #ffffff;
}

.lite-app-btn.lite-app-added {
  border-color: #1f2937;
  background: #1f2937;
  color: #ffffff;
}

.review1 {
  text-align: right;
}
.logo1 {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}
.logo1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*social-list home*/
.social-list {
  display: flex;
  flex-wrap: wrap;

  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 5px;
}

.social-list li {
  flex: 1; /* equal width */
  text-align: center;
}

.social-list li a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e0dadab0;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
  border: 1px solid #8c8c8c;
}

.social-list li a:hover {
  background: #e0dada81;
  transform: translateY(-3px);
}
.social-list p {
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .social-list li {
    flex: 0 0 calc(100% / 5); /* 6 items max */
    max-width: calc(100% / 5);
  }

  .social-list li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .card-header-close-btn {
    top: 2px;
    right: 6px;
    font-size: 22px;
  }
}
/*end*/
.galleryview a {
  text-decoration: none;
  color: #000;
}
.galleryview {
  text-decoration: none;
  color: #000;
  border: 1px solid;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
}

/* Home gallery grid */
.home-gallery .home-gallery-card {
  text-align: center;
  background: transparent;
  padding: 0;
  height: 100%;
}

.home-gallery .home-gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f4;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-gallery .home-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-gallery .home-gallery-name {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  word-break: break-word;
  text-transform: capitalize;
}
.sociallink img {
  width: 70px;
  height: auto;
}
.sociallink a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}

.contact-info {
  list-style: none;
  margin: 5px 0px;
  /* margin-left: 0px; */
  padding: 0 10px;
  font-size: 15px;
}

.contact-info p {
  margin-bottom: 5px;
  text-transform: capitalize;
}
.contact-info li {
  padding-bottom: 5px;
}

.contact-info a {
  color: #444645;
  text-decoration: none;
}
/*product slider main page css*/
/* CATEGORY SLIDER */

/* ================= SLIDER WRAPPER ================= */
/*.slider-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}


.slider-wrapper::-webkit-scrollbar {
  display: none;
}*/

/* ================= SLIDER ROW ================= */
/*.slider-row {
  flex-wrap: nowrap;
  animation: scroll 30s linear infinite;
}

.slider-wrapper:hover .slider-row,
.slider-wrapper:active .slider-row {
  animation-play-state: paused;
}
.product-card {
  flex: 0 0 20%;
}


.product-img {
  height: 160px;
  object-fit: cover;
}
*/

/*
@media (max-width: 576px) {
  .product-card {
    flex: 0 0 33.3333%; 
    max-width: 33.3333%;
  }

  .product-img {
    height: 120px;
  }

  .card-body h6 {
    font-size: 13px;
  }
}
*/
/* ================= PRODUCT CARD ================= */
.product-card {
  min-width: 100%;
}

.product-card h6 {
  font-size: 12px;
  text-transform: capitalize;
}
.product-card span {
  font-size: 12px;
}

@media (min-width: 768px) {
  .product-card {
    min-width: 33.33%;
  }
}

@media (max-width: 576px) {
  .logo1 {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
  }

  .mapfont a {
    font-size: 15px;
    text-transform: capitalize;
  }
  .comapnyinfo h3,
  .cname h3 {
    font-size: 19px;
    margin-bottom: 0px;
    text-transform: capitalize;
  }

  .cname h3 {
    font-size: 17px;
    margin-bottom: 1px;
  }
  .comapnyinfo h6 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .companyhead a {
    font-size: 20px;
    padding-right: 10px;
  }
  .lite-app-btn {
    padding: 3px 10px;
    font-size: 11px;
  }
  .herobanner img {
    height: 130px;
  }
}

.btn1 {
  padding: 2px 5px;
  color: #000000;
  font-weight: 800;
  font-size: 20px;
}

@media (min-width: 992px) {
  .product-card {
    min-width: 25%;
  }
}

/* ================= IMAGE ================= */
.product-img {
  height: 180px;
  object-fit: cover;
}

/* ================= AUTO SCROLL ================= */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* mobile slower */
@media (max-width: 767px) {
  .slider-row {
    animation-duration: 45s;
  }
}

/*end*/

.mapaddress {
  padding-bottom: 15px;
}

/**/
.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 1rem;
}

/* ===== CARD WIDTHS ===== */
.product-card {
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .product-card {
    flex: 0 0 50%;
  }
}
@media (min-width: 768px) {
  .product-card {
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .product-card {
    flex: 0 0 33.33%;
  }
}
@media (min-width: 1200px) {
  .product-card {
    flex: 0 0 25%;
  }
}

/* ===== IMAGE ===== */
.product-card img {
  height: auto;
  object-fit: cover;
  /*aspect-ratio: 1/1;*/
}

@media (max-width: 576px) {
  .socialmedia ul li {
    width: 18%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .socialmedia ul li {
    width: 15%;
  }
}

/*home page main category slider */

.marqueeSwiper {
  width: 100%;
  padding: 8px 0;
}

/* Smooth marquee movement */
.marqueeSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Slide alignment */
.marqueeSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d8cfcf;
  border-radius: 10px;
}

/* Image styling (FULL COLOR ALWAYS) */
.marqueeSwiper img {
  width: 100%;
  /* square images */
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Optional hover zoom only */
/*.marqueeSwiper .swiper-slide:hover img {
  transform: scale(1.05);
}*/
/*end*/

.down1 {
  padding-bottom: 10px;
}
/* for have _account is not */
.account-blocker {
  position: fixed;
  inset: 0;
  background: #f8f9fa05;
  /* ✨ Blur effect */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}

.account-blocker-content {
  background: #fff;
  padding: 45px 50px;
  text-align: center;
  width: 90%;
  max-width: 520px;
  border-radius: 12px;
}

.account-blocker-content h1 {
  color: #dc3545;
  margin-bottom: 15px;
}

.account-blocker-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 28px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
/* for all products page */
.marqueeSwiper .product-card {
  height: 100%;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
/*
 for trending products in admin */
/* Product image wrapper */
.product-thumb-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Product image */
.product-thumb-box img {
  width: 100%;
  display: block;
}

/* Trending ribbon */
.product-trending-ribbon {
  position: absolute;
  top: 14px;
  left: -45px;
  background: #e63946;
  color: #fff;
  padding: 0px 39px;
  font-size: 13px;
  font-weight: 500;
  transform: rotate(-45deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  z-index: 5;
  pointer-events: none; /* safety */
}
/* business hours */
.open-hours {
  list-style: none;
  /*font-size: 17px;*/
}

.hours-summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hours-summary .open {
  color: #1e8e3e;
  font-weight: 600;
}

.hours-summary .closed {
  color: #d93025;
  font-weight: 600;
}

.hours-note {
  color: #5f6368;
}

.hours-dropdown {
  display: none;
  margin-top: 8px;
}

.business-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 17px;
}

.business-hours-list li.today {
  font-weight: 600;
}

.business-hours-list li.today .time {
  color: #1e8e3e;
}
/* bank details popup */
.bank-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.bank-detail-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
}

.bank-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  margin-bottom: 4px;
}

.bank-detail-value {
  font-weight: 600;
  word-break: break-word;
}

.bank-details-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.bank-media-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background: #fff;
}

.bank-media-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: #f1f3f5;
  border-radius: 6px;
}

.bank-zoom-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f1f3f5;
}

.bank-zoom-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.05s linear;
  touch-action: none;
  cursor: grab;
  display: block;
  will-change: transform;
}

.bank-zoom-img.is-dragging {
  cursor: grabbing;
}

@media (min-width: 576px) {
  .bank-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.c-tital h3 {
  font-size: 18px;
  font-weight: 600;
}
.c-tital h3 a {
  color: #000000;
  text-decoration: none;
}
.c-tital h3 span {
  color: #8c8c8c;
}
@media (max-width: 576px) {
  .c-tital h3 {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  .bank-details-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.badge1 {
  padding: 4px 9px !important;
}
/* for icon colour 
.call {
  color: #007bff;
}*/
/* footer */
.biz-footer {
  position: fixed;
  bottom: 0px !important;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
  height: auto;
  padding: 8px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.biz-footer-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  scrollbar-width: none;
}

.biz-footer-scroll::-webkit-scrollbar {
  height: 3px;
}

.biz-footer-scroll::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.biz-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 65px;
  text-align: center;
  font-size: 10px;
  color: #666;
  text-decoration: none;
  padding: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.biz-item i {
  font-size: 24px;
  display: block;
  color: #666;
  transition: all 0.3s ease;
}

.biz-item span {
  font-size: 10px;
  font-weight: 500;
  color: #666;
}

.biz-item:hover,
.biz-item.active {
  color: #040569;
}

.biz-item:hover i,
.biz-item.active i {
  color: #040569;
  transform: scale(1.1);
}

/* CENTER SAVE BUTTON */
.biz-center {
  position: relative;
  width: 70px;
  padding: 0;
  margin: 0 -5px;
}

.biz-save {
  width: 65px;
  height: 65px;
  background: #040569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: -20px 5px 0;
  box-shadow: 0 4px 12px rgba(4, 5, 105, 0.3);
  transition: all 0.3s ease;
  vertical-align: middle;
}

.biz-center:hover .biz-save {
  background: #030347;
  box-shadow: 0 6px 16px rgba(4, 5, 105, 0.4);
  transform: scale(1.08);
}

.biz-center:active .biz-save {
  transform: scale(0.98);
}

.biz-save i {
  color: white;
  font-size: 28px;
}

.biz-center span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #040569;
  font-size: 10px;
}

.fixed-bottom {
  overflow: visible !important;
}

/* Responsive Footer */
@media (max-width: 576px) {
  .biz-footer {
    padding: 6px 0;
  }

  .biz-footer-scroll {
    gap: 12px;
    padding: 6px 8px;
    justify-content: flex-start;
  }

  .biz-item {
    width: 55px;
    font-size: 9px;
    padding: 3px;
    gap: 2px;
  }

  .biz-item i {
    font-size: 20px;
  }

  .biz-item span {
    font-size: 9px;
  }

  .biz-save {
    width: 55px;
    height: 55px;
    margin: -8px auto 0;
  }

  .biz-save i {
    font-size: 24px;
  }

  .biz-center span {
    margin-top: 8px;
  }

  .biz-center {
    width: 60px;
    margin: 0 -2px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .biz-footer-scroll {
    gap: 18px;
  }

  .biz-item {
    width: 62px;
  }
}

@media (min-width: 992px) {
  .biz-footer-scroll {
    gap: 22px;
  }

  .biz-item {
    width: 68px;
    font-size: 11px;
  }

  .biz-item i {
    font-size: 26px;
  }
}
/* scroll social media icon css*/
.social-wrapper1 {
  width: 100%;
  overflow-x: auto;
  padding: 5px 0;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.social-wrapper1::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.social-list1 {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  width: max-content;
}
.social-list1 li {
  flex: 0 0 auto;
  text-align: center;
}

.social-list1 a {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  width: 40px; /* fixed width */
  height: 40px; /* fixed height */
  background: #e0dadab0;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-size: 20px; /* icon size */
  transition: 0.3s ease;
  border: 1px solid #8c8c8c;
  margin: 0 auto;
}

.social-list1 p {
  margin-top: 6px;
  font-size: 12px;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.social-list1 a:hover {
  background: #e0dada81;
  transform: translateY(-3px);
}
@media (min-width: 992px) {
  .social-wrapper1 {
    overflow-x: visible;
  }

  .social-list1 {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 12px;
    justify-content: space-between;
    gap: 12px;
  }

  .social-list1 li {
    min-width: 84px;
  }

  .social-list1 p {
    margin-top: 8px;
  }
}
.viewcounter p {
  margin-bottom: 2px;
  font-size: 12px;
  text-transform: capitalize;
}

.breadcumslink h3 {
  font-size: 15px;
}
/* about us section css */

.short-text,
.full-text {
  display: inline;
}

.read-more,
.read-less {
  color: #8c8c8c;
  cursor: pointer;
  font-weight: 500;
  margin-left: 5px;
  text-decoration: none;
}

.read-more:hover,
.read-less:hover {
  text-decoration: underline;
  color: #8c8c8c;
}
/* for paddign remove between logo and name */
.plr-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.about-us {
  font-size: 13px !important;
}
.down1 {
  margin-right: 15px;
}
