@font-face {
  font-family: 'PolySans';
  src: url('fonts/polysanstrial-slim.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PolySans';
  src: url('fonts/polysanstrial-neutral.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PolySans';
  src: url('fonts/polysanstrial-median.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PolySans';
  src: url('fonts/polysanstrial-bulky.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*{
  scroll-behavior: smooth;
  text-decoration: none !important;
}



.ecosystem-section {
  scroll-margin-top: 200px;
}

body {
  margin: 0;
  font-family: 'PolySans', sans-serif !important;
  background: #fff;
}

.basic-space {
  padding: 50px 0px;
}

.main-wrapper {
  padding: 20px;
}

.bg-grey-top {
  background: #f3f3f3;
  padding-top: 100px;
}

.bg-grey {
  background: #f3f3f3;
}

.hero-box {
  background: #f3f3f3;
  border-radius: 35px;
  padding: 20px 0px;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

/* NAVBAR */
.custom-navbar {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 18px 28px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 999;
  width: 70%;
  margin: auto;
}

.custom-navbar .navbar-brand img {
  max-height: 40px;
}

.custom-navbar .nav-link {
  color: #333 !important;
  font-size: 17px;
  margin: 0 8px;
  transition: 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #d81616 !important;
}

.enquire-btn {
  background: #d81616;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 18px !important;
  box-shadow: 0 6px 14px rgba(216, 22, 22, 0.25);
}

.enquire-btn:hover {
  background: #d81616;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 18px !important;
  box-shadow: 0 6px 14px rgba(216, 22, 22, 0.25);
}

.cart-icon {
  font-size: 22px;
  color: #d81616;
  margin-left: 15px;
}

.navbar-sticky {
  position: fixed !important;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  width: calc(100% - 80px);
  max-width: 70%;
  animation: slideDown 0.45s ease forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

@keyframes slideDown {
  0% {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}


#Newsroom2{
  scroll-margin-top:650px ;
}
/* HERO */
.hero-slider {
  position: relative;
  min-height: 78vh;
  margin-top: 20px;
  border-radius: 25px;
  overflow: hidden;
}

.hero-slider2{
  position: relative;
  min-height: 7vh !important;
  margin-top: 0px;

}

.hero-slide {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: #f3f3f3;
}

.hero-slide img.hero-product-img {
  position: absolute;
  right: 0%;
  bottom: 0%;
  max-width: 46% !important;
  height: auto;
  object-fit: contain;
}

.hero-slide img.produtslider{
  position: absolute;
  right: 0% !important;
  top: 0% !important;
  max-width: 100% !important;
  height: auto;
  object-fit: contain;
  width: 50%;
}

.hero-content {
  position: absolute;
  top: 100px !important;
  left: 10%;
  z-index: 2;
}

.hero-content2 {
  position: absolute;
  top: 130px !important;
  left: 7% !important;

}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.15;
  color: #222;
  margin-bottom: 18px;
}

.hero-content h1 .highlight {
  color: #d81616;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 30px;
}

.hero-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box {
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


/* RESET BOOTSTRAP DEFAULT */
.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0px) !important;
  transition: all 0.3s ease;
  border: none;
  border-radius: 25px !important;
  padding: 20px 0 !important;
  min-width: 300px !important;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* HOVER WORKING FIX */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ITEMS */
.dropdown-item {
  padding: 10px 20px;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.dropdown-item:hover {
  background: #f3f3f3 !important;
  padding-left: 25px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-menu.show {
    display: block !important;
  }
}

.search-dropdown {
  z-index: 999999999 !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: none;
  overflow-y: auto;
  
}

.search-dropdown div {
  padding: 10px;
  cursor: pointer;
}

.search-dropdown div:hover {
  background: #f2f2f2;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(40px);
}

.animate-in h1 {
  animation: fadeUp 0.2s ease forwards;
}

.animate-in p {
  animation: fadeUp 0.2s ease forwards;
  animation-delay: 0.2s;
}

.animate-in .hero-search-row {
  animation: fadeUp 0.2s ease forwards;
  animation-delay: 0.3s;
}

.animate-in .highlight {
  animation: popIn 0.2s ease forwards;
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  background: transparent;
}

.search-box i {
  color: #d81616;
  margin-left: 10px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d81616;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(216, 22, 22, 0.24);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 22, 22, 0.3);
}

.search-box input:focus {
  transform: scale(1.02);
}

.hero-features {
  position: absolute;
  left: 8.5%;
  bottom: 50px;

}

.hero-features .feature-item {
  margin-bottom: 20px;
  color: #222;
  font-size: 18px;
}

.hero-features .feature-item i {
  color: #d81616;
  font-size: 22px;
  width: 35px;
  margin-right: 12px;
}

.hero-features .feature-item img {
  width: 25px !important;
}

.hero-features a {
  color: #d81616;
  font-size: 22px;
  font-weight: 300;
  transition: 0.5s ease;
}

.hero-features a:hover {
  color: #d81616;
  opacity: 0.5;
  transition: 0.5s ease;
}

@media (max-width: 991px) {
  .hero-slide img.hero-product-img {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    max-width: 90%;
    margin: 40px auto 0;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-features {
    position: relative;
    left: auto;
    bottom: auto;
    padding: 20px;
  }

  .navbar-sticky {
    width: calc(100% - 30px);
  }
}

.trusted-section {
  padding: 100px 130px;
  background: linear-gradient(135deg, #2b2f33, #000000);
  border-radius: 30px;
  margin: 0px 20px;
}

.trusted-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
}

.trusted-desc {
  font-size: 20px;
  color: #cfcfcf;
  margin-bottom: 40px;
  line-height: 1.6;
}

.trusted-block {
  margin-bottom: 25px;
}

.trusted-block p {
  margin-top: 10px;
  color: #ddd;
  font-size: 20px;
  color: #cfcfcf;
  margin-bottom: 40px;
  line-height: 1.6;

}

.badge-red {
  background: #d81616;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 28px;
  display: inline-block;
}

.video-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
}

.video-box:hover video {
  transform: scale(1.05);
}


.top-product-section {
  padding: 40px;
}

.slider-container {
  position: relative;
}

.product-slider {
  display: flex;
  gap: 0px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0px;
  scroll-snap-type: x mandatory;
  background: #f3f3f3;
  border-radius: 10px;
  z-index: -999;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  width: 300px;
  border-radius: 12px;
  padding: 15px;
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
}

.product-card .img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  z-index: 999;
}

.product-card .img-wrapper::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 300px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: -9;
  opacity: 1;
}

.product-card h6 {
  font-size: 13px;
  margin-top: 10px;
  color: #d32f2f;
}

.product-card p {
  font-size: 12px;
  color: #444;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #af0007;
  border: none;
  font-size: 100px;
  cursor: pointer;
  z-index: 2;
  outline: none;
  background: none;
}

.nav-btn.left {
  left: -100px;
}

.nav-btn.right {
  right: -100px;
}

.service-grid-section {
  background: #f3f3f3;
}

.service-card {
  background: transparent;
}

.service-img-box {
  background: radial-gradient(circle, #ffffff 20%, #ececec 80%);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  text-align: center;
}

.service-img-box img {
  transform: scale(1.2);
  object-fit: contain;
  transition: 0.4s ease;
}

.service-card:hover .service-img-box img {
  transform: scale(1.3);
  transition: 0.4s ease;
}

.service-content {
  padding: 30px 0px;
}

.service-content h4 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 92%;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .service-content h4 {
    font-size: 20px;
  }
}

.counter-wrapper {
  position: relative;
  width: 90%;
  margin: auto;
}

.counter-bg {
  width: 100%;
  display: block;
}

.counter-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-80%);
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
}

.counter-item {
  text-align: center;
  width: 25%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.counter-item h3 {
  color: #c40000;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.counter-item p {
  font-size: 20px;
  color: #222;
  line-height: 1.4;
}

.counter-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .counter-overlay {
    flex-wrap: wrap;
    gap: 20px;
  }

  .counter-item {
    width: 45%;
  }
}

.category-section {
  background: #f3f3f3;
}

.category-carousel-wrap {
  position: relative;
}

.category-owl .item {
  padding: 0;
}

.cat-card {
  background: #ececec;
  border-radius: 18px;
  padding: 16px;
  transition: 0.3s ease;
  height: 100%;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-card img {
  width: 100%;
  object-fit: contain;
}

.cat-card-content {
  background: #fff;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
}

.cat-card h6 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.category-owl .owl-nav {
  position: absolute;
  right: 0;
  bottom: -25px;
  display: flex;
  gap: 10px;
}

.category-owl .owl-nav button.owl-prev,
.category-owl .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #d9d9d9 !important;
  color: #444 !important;
  font-size: 26px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.category-owl .owl-nav button.owl-prev:hover,
.category-owl .owl-nav button.owl-next:hover {
  background: #cfcfcf !important;
  color: #111 !important;
}

.category-owl .owl-nav button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.category-owl .owl-dots {
  margin-top: 28px;
  text-align: left;
}

.category-owl .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 4px;
  background: #d0d0d0;
  transition: 0.3s ease;
}

.category-owl .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 20px;
  background: #8c8c8c;
}

@media (max-width: 767.98px) {
  .category-owl .owl-nav {
    bottom: -58px;
  }

  .cat-card img {
    height: 120px;
  }
}

.know-us-section {
  background: #fff;
}

.know-us-title {
  font-size: 42px;
  font-weight: 500;
  color: #222;
  margin-bottom: 28px;
}

.know-us-item {
  border-top: 1px solid #d9d9d9;
}

.know-us-item:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.know-us-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
}

.know-us-head h4 {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.know-us-head .icon {
  font-size: 34px;
  line-height: 1;
  color: #444;
  transition: 0.3s ease;
}

.know-us-body {
  padding: 0 0 26px 0;
}

.know-us-body p {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 18px;
}

.card{
  outline: none !important;
  border: none !important;
}
.card-p{
 
  overflow: hidden;
  outline: none;
}

.card-p h4{
  color: #fff !important;
  background: #000;
  border-radius: 20;
}
.learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c8102e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.learn-btn:hover {
  color: #fff;
  text-decoration: none;
  background: #a90d26;
}

.learn-btn span {
  font-size: 12px;
}

@media (max-width: 767.98px) {
  .know-us-title {
    font-size: 30px;
  }

  .know-us-head h4 {
    font-size: 22px;
  }

  .know-us-head .icon {
    font-size: 26px;
  }

  .know-us-body p {
    font-size: 15px;
  }
}

.cta-section {
  padding: 0px !important;
}

.cta-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cta-img {
  width: 100%;
  display: block;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0));
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
}

.cta-overlay h1 {
  font-size: 44px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.cta-overlay p {
  font-size: 18px;
  color: #666;
  margin-bottom: 16px;
}

.cta-btn {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #a80d26;
  color: #fff;
  text-decoration: none;
}

.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .cta-overlay {
    top: 18px;
  }

  .cta-overlay h1 {
    font-size: 24px;
  }

  .cta-overlay p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .cta-btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  .cta-wrapper::before {
    height: 110px;
  }
}

.partner-card-img {
  overflow: hidden;
  margin-bottom: 14px;
}

.partner-card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.partner-card-content h3 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  color: #222;
  margin-bottom: 8px;
}

.partner-card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 14px;
}

.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c40000;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 7px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.partner-btn:hover {
  background: #a80000;
  color: #fff;
  text-decoration: none;
}

.partner-btn span {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .partner-card-content h3 {
    font-size: 22px;
  }

  .partner-card-content p {
    font-size: 13px;
  }
}

.procurement-cta {
  position: relative;
  height:120vh;
  background: url('images/warehouse .jpeg') center/cover no-repeat;
  overflow: hidden;
  background-size: 400;
}

.procurement-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.procurement-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content-main {
  margin-top: 300px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #c40000;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 16px;
  color: #333;
  max-width: 420px;
}

.cta-form-card {
  background: #4a4a4a;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cta-form-card .form-control {
  border-radius: 8px;
  border: none;
  font-size: 14px;
  padding: 10px 12px;
}

.cta-submit-btn {
  width: 100%;
  background: #c40000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-submit-btn:hover {
  background: #a80000;
}

.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.fade-up-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .procurement-cta {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-form-card {
    margin-top: 30px;
  }
}

.wossco-footer {
  background: #f5f5f5;
  padding: 34px 0 22px;
  color: #7b1f1f;
}

.footer-top {
  margin-bottom: 22px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-brand h6,
.footer-links h5,
.footer-contact h5 {
  font-size: 17px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: #8f2b24;
  font-size: 24px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #5f120d;
  text-decoration: none;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #8f2b24;
  font-size: 17px;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: #5f120d;
  text-decoration: none;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #8f2b24;
  font-size: 17px;
  line-height: 1.3;
}

.contact-icon {
  min-width: 16px;
  margin-top: 3px;
  color: #8f2b24;
}

.footer-contact ul li a,
.footer-contact ul li span:last-child {
  color: #8f2b24;
  text-decoration: none;
}

.footer-middle {
  margin-top: 8px;
  margin-bottom: 22px;
}

.footer-middle h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 2px;
}

.footer-middle p {
  font-size: 17px;
  color: #4b4b4b;
  margin-bottom: 0;
}

.footer-bottom p {
  font-size: 15px;
  color: #9a9a9a;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .footer-links ul li a,
  .footer-contact ul li,
  .footer-middle p {
    font-size: 15px;
  }

  .footer-middle h4 {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .wossco-footer {
    padding: 28px 0 20px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: 14px;
  }

  .footer-links h5,
  .footer-contact h5,
  .footer-brand h6 {
    font-size: 15px;
  }

  .footer-links ul li a,
  .footer-contact ul li {
    font-size: 14px;
  }

  .footer-middle h4 {
    font-size: 18px;
  }

  .footer-middle p,
  .footer-bottom p {
    font-size: 14px;
  }

  .footer-social a {
    font-size: 20px;
  }
}


.custom-product-wrap {
  width: 85%;
}

.custom-product-row {
  row-gap: 22px;
  justify-content: flex-start;
}

.custom-product-row > div {
  max-width: 20%;
  flex: 0 0 20%;
}

.product-card-custom {
  background: #fff;
  border-radius: 28px;
  padding: 18px 16px 14px;
  
  transition: all 0.3s ease;
}

.product-card-custom:hover {
  transform: translateY(-4px);
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
 
  margin-bottom: 14px;
}

.product-card-image img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.product-card-content h3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0 0 14px;
}

.product-card-footer {
  
  justify-content: space-between;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;

  font-size: 11px;
  color: #7a7a7a;
  text-decoration: none;
  background: #f7f7f7;
  padding: 6px 10px;
  border-radius: 20px;
  line-height: 1;
}

.learn-more-btn:hover {
  text-decoration: none;
  color: #c40000;
}

.learn-more-btn span {
  color: #c40000;
  font-size: 13px;
  line-height: 1;
}

.cart-btn {
  color: #c40000;
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
 
}

.cart-btn:hover {
  color: #a80000;
  text-decoration: none;
}

/* Owl nav */
.custom-product-owl .owl-nav {
  position: absolute;
  right: -15px;
  bottom: -55px;
  display: flex;
  gap: 10px;
}

.custom-product-owl .owl-nav button.owl-prev,
.custom-product-owl .owl-nav button.owl-next {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  background: #d9d9d9 !important;
  color: #444 !important;
  font-size: 25px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  outline: none;
  padding-top: 200px !important;
}

.custom-product-owl .owl-nav button.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.custom-product-owl .owl-dots {
  display: none;
}

@media (max-width: 991px) {
  .custom-product-row > div {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
  }
}

@media (max-width: 767px) {
  .custom-product-wrap {
    width: 92%;
  }

  .custom-product-row > div {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 575px) {
  .custom-product-row > div {
    max-width: 100%;
    flex: 0 0 100%;
  }
}


.product-details-section {
  padding: 60px 0;
  background: #fff;
}

.product-details-row {
  align-items: flex-start;
}

.product-image-sticky {
  position: sticky;
  top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}

.product-image-sticky img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-content-scroll {
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px 20px 20px 10px;
  scrollbar-width: thin;
}

.product-title-main {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  color: #1f1f1f;
  margin-bottom: 35px;
}

.quotation-form {
  margin-bottom: 30px;
}

.form-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 30px;
}

.form-group-custom label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 14px;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.option-pill {
  margin: 0;
  cursor: pointer;
}

.option-pill input {
  display: none;
}

.option-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 16px;
  border: 1px solid #8d8d8d;
  border-radius: 30px;
  font-size: 15px;
  color: #333;
  background: transparent;
  transition: 0.3s ease;
}

.option-pill input:checked + span {
  border-color: #c40000;
  color: #c40000;
  background: #fff;
}

.active-red span {
  border-color: #c40000;
  color: #c40000;
}

.quantity-group-main {
  margin-bottom: 22px;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #8d8d8d;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #222;
  cursor: pointer;
}

.qty-input {
  width: 50px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 18px;
  color: #222;
  background: transparent;
  outline: none;
}

.quotation-btn-wrap {
  margin-top: 8px;
}

.quotation-btn {
  background: #c40000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.quotation-btn:hover {
  background: #a30000;
}

.product-tabs-wrap {
  margin-top: 20px;
}

.custom-product-tabs {
  display: inline-block;
  flex-wrap: wrap;
  background: transparent;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border: none;
}

.custom-product-tabs .nav-item {
  margin: 0;
  background: #f3f3f3;
  border-radius: 24px;
}

.custom-product-tabs .nav-link {
  border: none;
  border-radius: 20px;
  padding: 16px 24px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.2;
  background: transparent;
  min-height: 68px;
  display: flex;
  align-items: center;
}

.custom-product-tabs .nav-link.active {
  background: #c40000;
  color: #fff;
}

.custom-tab-content {
  font-size: 18px;
  line-height: 1.6;
  color: #3e3e3e;
  max-width: 95%;
}

.custom-tab-content p {
  margin-bottom: 16px;
}

@media (max-width: 1199px) {
  .product-title-main {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .product-image-sticky {
    position: relative;
    top: auto;
    padding: 10px 0 30px;
  }

  .product-content-scroll {
    max-height: unset;
    overflow: visible;
    padding: 0;
  }

  .product-title-main {
    font-size: 40px;
  }

  .form-top-row {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .product-title-main {
    font-size: 34px;
  }

  .custom-product-tabs {
    display: flex;
    width: 100%;
  }

  .custom-product-tabs .nav-link {
    padding: 14px 16px;
    font-size: 14px;
    min-height: auto;
  }

  .custom-tab-content {
    max-width: 100%;
    font-size: 16px;
  }
}



.cart-sidebar {
  position: fixed;
  right: -380px;
  top: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

/* Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
  padding: 10px !important;
  background: #f3f3f3 !important;
  border-radius: 50px;
}


/* Items */
.cart-items {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-item img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.cart-info {
  flex: 1;
}

.cart-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* Quantity Controls */
.qty-box {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: #f1f1f1;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.qty-number {
  margin: 0 8px;
  font-size: 14px;
}

/* Delete Button */
.delete-btn {
  color: red;
  cursor: pointer;
  font-size: 16px;
  margin-left: 8px;
}

/* Footer */
.cart-footer {
  padding: 15px;
}

.view-cart-btn {
  display: block;
  text-align: center;
  background: #c0392b;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}


.cart-items {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.empty-cart {
  margin: auto; /* 🔥 PURE CENTER */
  text-align: center;
}

.empty-cart img {
  width: 140px;
  max-width: 100%;
  margin-bottom: 10px;
}

.empty-cart p {
  font-size: 14px;
  color: #777;
}


.top-icon-line-con img{
  padding: 0px 15px  !important;
  margin-top: 60px;
}

.top-icon-line-con h4{
  font-size: 12px;
  font-weight: lighter; !important;
  letter-spacing: 1.5px;
}

.top-icon-line-para h1{
  font-size: 50px;font-weight: lighter !important;
  letter-spacing: 2px;
  margin-bottom: 50px;
  margin-top: 30px;
  
}

.top-icon-line-para h4{
  
  margin-bottom: 60px;
  font-size: 22px !important;
  font-weight: lighter !important;
  letter-spacing: 1px;
}

.top-icon-line-para h4 strong{
  font-weight: bold !important;
}