#goTopBtn {
  background-color: #f71c1c !important;
  border: 1px solid rgb(255, 255, 255) !important;
  z-index: 99999;
}

/* Unique Loader Container */
#unique-loader {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 50px auto;
}

/* Center Dot */
#unique-loader .center-dot {
  width: 16px;
  height: 16px;
  background: #f71c1c;
  /* your red color */
  border-radius: 50%;
  position: absolute;
  top: 22px;
  left: 22px;
}

/* Orbiting Dots */
#unique-loader .orbit-dot {
  width: 12px;
  height: 12px;
  background: #f71c1c;
  border-radius: 50%;
  position: absolute;
  top: 24px;
  left: 48px;
  transform-origin: -24px 12px;
  animation: orbit 1.5s linear infinite;
}

/* Create 3 orbit dots with delay */
#unique-loader .orbit-dot:nth-child(2) {
  animation-delay: 0s;
}

#unique-loader .orbit-dot:nth-child(3) {
  animation-delay: 0.5s;
}

#unique-loader .orbit-dot:nth-child(4) {
  animation-delay: 1s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  background-color: white;
  overflow-x: hidden !important;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Poppins", sans-serif !important;
}

.theme-color {
  color: #ff1d1d !important;
}

.theme-bg-color {
  background-color: #f71c1c !important;
}

.topbar {
  background-color: #ff1d1d;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.topbar a {
  color: #fff;
  margin-right: 1rem;
  text-decoration: none;
}

.topbar a:hover {
  color: #0d6efd;
}

.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
}

.nav-link {
  margin-right: 1rem;
}

.nav-link:hover {
  color: #ff1d1d !important;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.mega-menu .col {
  min-width: 180px;
}

.form-control::placeholder {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .search-input {
    margin-top: 1rem;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* keeps image fully visible inside container */
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
  }
}

.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease, box-shadow 0.3s ease;
}

.topbar-hidden {
  margin-top: 0 !important;
}

body.has-fixed-navbar {
  padding-top: 70px;
  /* Adjust to navbar height */
}

.feature-box {
  background-color: #f8f9fa;
  text-align: center;
  border-radius: 10px;
  height: 100%;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  cursor: pointer;
}

.feature-box i {
  font-size: 24px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.feature-box:hover i {
  color: #ff1d1d;
  /* Bootstrap success green or adjust as needed */
}

.feature-box h6 {
  font-weight: 700;
  margin: 0;
  font-size: 16px;
}

.feature-box p {
  font-size: 14px;
  margin: 4px 0 0 0;
  color: #555;
}

.category-card {
  height: 100% !important;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.img-wrapper {
  height: 175px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  overflow: hidden;
  border-radius: 8px;
}

.category-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 13px;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

h6 {
  color: #333;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 30px;
  height: 30px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.banner-bg {
  background: linear-gradient(180deg, #ff1d1d4d, #fce4ec) !important;
  font-family: "Poppins", sans-serif;
}

.section-header {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #1a237e, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

.product-feature {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.product-feature img {
  max-width: 100%;
  border-radius: 20px;
  flex: 1 1 250px;
}

.feature-content {
  flex: 1 1 300px;
}

.feature-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.feature-content .btn {
  font-weight: 600;
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
}

.product-grid .card {
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-grid .card:hover {
  transform: translateY(-5px);
}

.product-grid img {
  height: 200px;
  object-fit: cover;
}

.card-body h5 {
  font-weight: 700;
}

.price {
  color: #388e3c;
  font-weight: bold;
  font-size: 1.1rem;
}

.highlight {
  color: #8c0045;
}

.btn-custom {
  background-color: #8c0045;
  color: white;
}

.btn-custom:hover {
  background-color: #6a0035;
}

.underline-highlight {
  text-decoration: underline;
  text-decoration-color: #f5dce9;
  text-decoration-thickness: 8px;
  text-underline-offset: -4px;
}

.card-title,
.card-text {
  text-align: center;
}

.badge-pill {
  border-radius: 50px;
  background-color: #f5dce9;
  color: #8c0045;
}

.tech-section {
  background-color: #ff1d1d;
  /* Deep red */
  color: white;
  border-radius: 10px;
  padding: 40px 30px;
}

.tech-section img {
  width: 100%;
  height: 282px;
  border-radius: 5px;
}

.tech-title {
  font-weight: 700;
}

.cert-section {
  padding: 60px 15px;
  background-color: #f9f9f9;
  text-align: center;
}

.cert-section h6 {
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.cert-section h2 span {
  color: #e60023;
}

.cert-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background-color: #fff;
}

.bg-tech-overlay {
  position: relative;
  background-image: url("../img/67c543634f4fc.jpg");
  /* Replace with your background image */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.bg-tech-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 29, 29, 0.85);
  /* Red overlay with opacity */
  z-index: -1;
}

.form-control::placeholder {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .search-input {
    margin-top: 1rem;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  border-bottom: 4px solid #f71c1c;
  display: inline-block;
  padding-bottom: 10px;
}

.intro-text {
  font-style: italic;
  margin: 1rem 0;
}

.quote-box {
  background-color: #f71c1c;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.quote-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.quote {
  font-style: italic;
  color: #ddd;
}

.chef-name {
  margin-top: 10px;
  font-weight: bold;
}

.est-circle {
  background-color: #f71c1c;
  color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: -34px;
  left: -14px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.2;
  padding: 5px;
}

.main-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  position: relative;
}

.overlay-image {
  position: absolute;
  bottom: -106px;
  right: -25px;
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .overlay-image {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .est-circle {
    position: static;
    margin: 1rem auto;
  }
}

.feature-section {
  background-color: #94949437;
  padding: 60px 20px;
}

.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #f71c1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px auto;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  color: #ccc;
  font-size: 0.95rem;
}

.about-section {
  /* background: linear-gradient(to bottom,
      rgb(147 138 138 / 78%),
      rgb(147 138 138 / 78%)),
    url(../img/67c542cc46860.jpg) no-repeat center center / cover; */
    background: red;
  padding: 80px 20px;
  color: #333;
}

.about-title {
  font-weight: 700;
  color: #fff;
}

.about-circle {
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #f54b4b;
  width: 250px;
  height: 250px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------- */

.tabs-nav {
  position: relative;
  display: inline-flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid #eee;
}

.tabs-nav .nav-link {
  color: black;
  font-weight: 500;
  position: relative;
}

.tabs-nav .nav-link.active {
  color: #f51c1c !important;
}

.tabs-nav .nav-link.active::after {
  content: "\f061";
  /* FontAwesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -7px;
  top: 10px;
  color: #f51c1c;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
}

.category {
  font-size: 12px;
  color: gray;
}

.tab-img {
  height: 200px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  overflow: hidden;
}

.thumbnail-images img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  padding: 5px;
  cursor: pointer;
}

.thumbnail-images .selected {
  border: 2px solid #007bff;
}

.zoom-img {
  width: 60%;
}

.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #ccc;
}

.color-circle.active {
  border: 2px solid #000;
}

.size-btn.active {
  background-color: #0d6efd;
  color: #fff;
}

.product-info {
  font-size: 15px;
  color: #333;
}

.rating {
  color: #f4c150;
}

#searchSuggestions {
  display: none;
  /* by default hidden */
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0 0 0.5rem 0.5rem;
}

#searchSuggestions .list-group-item {
  cursor: pointer;
}

@media (max-width: 991.98px) {
  #mainNavbar .navbar-toggler {
    margin-left: auto;
  }
}

/* Desktop-specific styles */
@media (min-width: 992px) {
  .custom-dropdown {
    min-width: 500px;
    margin-left: -328px;
    position: absolute;
    top: 100%;
    z-index: 1000;
  }
}

/* Mobile-specific styles */
@media (max-width: 991.98px) {
  .custom-dropdown {
    width: 100% !important;
    margin-left: 0 !important;
    position: static !important;
  }

  .dropdown-menu.show {
    display: block;
  }
}

.category-image-new {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.category-image-new:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.prod-card {
  border: 1px solid #f71c1c;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #ffffff;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 5.2rem;
  right: 23px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 6px 14px;
  font-size: 24px;
  z-index: 999;
  cursor: pointer;
}

/* Form Container */
.whatsapp-form-container {
  position: fixed;
  bottom: 8.1rem;
  right: 25px;
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  z-index: 998;
  display: none;
}

.whatsapp-form-container input,
.whatsapp-form-container textarea {
  margin-bottom: 10px;
}

#quickContactBtn {
  width: 49px;
  height: 49px;
  background: #2a23ff;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.2s;
  position: fixed;
  bottom: 143px;
  right: 23px;
  z-index: 1050;
}

.image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.image-wrapper img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff1d1d;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-bg {
  background-color: #f71c1c !important;
  color: white !important;
}

#searchSuggestions {
  top: 100% !important;
  z-index: 1000 !important;
}

.gapping {
  gap: 10px !important;
}

.high-tech-img {
  height: 282px !important;
}

.nav-item .active {
  font-weight: bold !important;
  color: #f71c1c !important;
  text-decoration: underline !important;
}

new-font {
  font-size: 1.15rem !important;
}

.category-toggle {
  cursor: pointer;
}

.filter-color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 5px;
  border: 1px solid #ccc;
  display: inline-block;
  cursor: pointer;
}

.filter-color.active {
  border: 2px solid #000;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.full-height {
  height: 100vh;
  overflow: hidden;
}

.fixed-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid #ddd;
  padding-right: 1rem;
  background-color: #f8f9fa;
}

.scrollable-content {
  height: 100vh;
  overflow-y: auto;
  padding-left: 1rem;
}

.btn-outline-dark:hover,
.btn-outline-primary:hover {
  background-color: #f71c1c !important;
  color: white !important;
}

/* For Webkit-based browsers like Chrome */
.col-md-9::-webkit-scrollbar {
  width: 10px;
  display: none !important;
}

/* Sidebar */
.sidebar {
  background: #ffffff;
  border-right: 1px solid #e0e0e0;
  padding: 1.5rem;
  position: sticky;
  top: 4rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background-color: #f71c1c05 !important;
}

.filter-header {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-header button {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.filter-section {
  margin-bottom: 1.5rem;
}

.filter-section h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.filter-section input[type="text"] {
  border-radius: 0.375rem;
}

.filter-section ul {
  padding-left: 0;
  list-style: none;
}

.filter-section ul li {
  margin-bottom: 0.5rem;
}

.filter-section ul li input[type="radio"],
.filter-section ul li input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Accordion Icons (+ / -) */
.accordion-button::after {
  /* plus */
  font-size: 1.25rem;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.accordion-button.collapsed::after {
  transform: rotate(270deg);
}

.accordion-button:not(.collapsed)::after {
  /* minus */
  transform: rotate(0deg);
}

/* Color Swatches */
.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-palette li {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: border 0.2s;
}

.color-palette li.active {
  border: 2px solid #2c3e50;
}

/* Main Content */
.main-content {
  padding: 1.5rem;
}

.product-header {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

/* Product Card */
.card {
  border: 1px solid #f71c1c;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #ffffff;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-img-top {
  padding: 25px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
}

.btn-view {
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.btn-view:hover {
  background-color: #1f2d3d;
  color: #fff;
}

/* Spinner */
#scrollSpinner {
  display: none;
  margin: 1rem auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .sidebar {
    position: static;
    max-height: none;
    border-right: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
    background-color: #f71c1c05 !important;
  }
}

.form-check-input:checked {
  background-color: #f71c1c !important;
  border-color: #f71c1c !important;
}

.category-imgs {
  height: 160px !important;
}

.category-cards {
  position: relative;
  height: 100% !important;
}

.category-cards {
  position: relative;
  height: 250px;
  /* set your desired fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keeps content spaced nicely */
  overflow: hidden;
  /* prevents content from spilling out */
}

.category-cards h6.cata-name {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* ensures long text doesn’t break layout */
}

.category-cards .p-3 {
  padding: 0.5rem 1rem;
}

.category-cards .new-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff3b3b;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 3px;
  z-index: 10;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

#main-image {
  width: 100% !important;
  max-width: 450px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
}

.carousel-control-prev {
  margin-left: -30px !important;
}

.carousel-control-next {
  margin-right: -30px !important;
}



#image-loader {
  transition: opacity 0.3s ease;
}

#image-loader.active {
  display: block !important;
  opacity: 1;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  color: #fff;
  overflow: visible;
  /* padding-bottom: 48px; */
}

.hero-slider,
.carousel-item {
  height: 50vh;
}

.carousel-item .container {
  height: 100%;
}

.hero-img {
  border-radius: 12px;
  max-height: 39vh;
  object-fit: cover;
}

.floating-container {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.floating-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.floating-card {
  flex: 0 0 13rem;
  height: 20rem;
  border-radius: 15px;
  background: #fff;
  display: flex;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card>div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 15px !important;
}

.floating-card img {
  max-width: 100%;
  /* height: 110px; */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card-name {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 767px) {

  .hero-slider,
  .carousel-item {
    height: auto;
    /* padding: 4rem 1rem 10rem; */
  }

  .hero-img {
    max-height: 30vh;
  }

  .floating-container {
    /* margin-top: -100px; */
    padding-left: 10px;
    padding-right: 10px;
  }

  .floating-track {
    gap: 10px;
  }

  .floating-card {
    flex: 0 0 calc(50% - 5px);
    height: 13rem;
  }

  .floating-card img {
    height: 145px;
    object-fit: contain;
  }

  .carousel-item h2 {
    font-size: 1.8rem;
  }

  .carousel-item p {
    font-size: 1rem;
  }
}

.bg-o {
  background-color: #ff891c !important;
}

/* Blog Tag Design for Size & Color Buttons */
.tag-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  margin: 6px 8px 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00b074;
  background-color: #ffffff;
  border: 2px solid #00b074;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.tag-btn:hover {
  background-color: #e6f7f2;
  color: #009166;
  border-color: #009166;
}

.tag-btn.active {
  background-color: #00b074 !important;
  color: #ffffff !important;
  border-color: #00b074 !important;
}

.color-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.tag-btn.active .color-indicator {
  border-color: rgba(255, 255, 255, 0.6);
}