/* =================== Start the Css */
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
* {
  margin: 0;
  font-family: "Playfair Display", serif;
  padding: 0;
  box-sizing: border-box;
}

/* =================== Start the Css on Navbar */


.top-bar {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background: #f9f4eb;
  padding: 12px 20px;
  color: black;
  font-size: 14px;
}
.left {
  color: black;
}
.fast-delivery {
  color: orange;
  margin-left: 15px;
}
.right i {
  margin: 3px;
  color: gray;
}
.right span {
  margin: 10px;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo img {
  margin-top: 1px;
  width: 200px;
  height: 80px;
}
.search-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}
.search-box input {
  border: none;
  width: 500px;
  padding: 13px;
  outline: none;
}
.search-box button {
  background: orange;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  color: white;
}
.icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icons i {
  font-size: 18px;
  cursor: pointer;
}
.badge {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 50%;
  position: relative;
  top: -10px;
  left: -5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .search-box {
    max-width: 400px;
  }

  .icons {
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .right {
    justify-content: center;
    gap: 5px;
  }

  .nav-bar {
    flex-direction: column;
    text-align: center;
  }

  .search-box {
    max-width: 100%;
    margin-top: 10px;
  }

  .icons {
    margin-top: 6px;
  }
  .icons i {
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 12px;
    padding: 8px;
  }
  .right {
    margin: 10px;
  }

  .search-box {
    border-radius: 15px;
  }

  .search-box input {
    padding: 8px;
  }

  .search-box button {
    padding: 8px;
  }

  .icons {
    margin-top: 10px;
    gap: 8px;
  }

  .icons i {
    margin-top: 10px;

    font-size: 16px;
  }

  .badge {
    font-size: 10px;
    top: -5px;
    right: -8px;
  }

}
/* =================== Start the Custom  Css  */

img {
  max-width: 100%;
  height: 150%;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
  padding: 0;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

/* =================== Start the sideMenu on Sidebar  Css slider  */

.subImg {
  display: flex;
  justify-content: end;
  align-items: end;
  text-align: end;
}
.sideMenu {
  position: absolute;
  top: 37%;
  height: 48%;
  width: 100%;
}
.sideMenu img {
  width: 34%;
  height: 100%;
  max-height: 740px;
  object-fit: cover;
}
.sideMenus {
  position: absolute;
  top: 85%;
  width: 34.3%;
  height: 35%;
}

/* =================== Start the Css on banner */

.offer-banner {
  display: flex;
  margin-top: 1%;
  margin-left: 10px;
  align-items: center;
  background-color: white;
  padding: 15px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* 🌟 Offer Box */
.offer-box {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
}

.offer-box h3 {
  background-color: yellow;
  margin-top: 10px;
}
.offer-box:hover {
  transform: scale(1.05);
}

/* 🌟 Icons */
.icon {
  width: 55px;
  height: 50px;
  margin-right: 10px;
}

/* 🌟 Bank Logos */
.banks {
  display: flex;
}
.banks img {
  width: 55px;
  height: auto;
  margin: 5px;
}

/* 🌟 Text Styling */
h3 {
  margin: 0;
  margin-top: 20px;
  font-size: 1em;
  font-weight: bold;
}

p {
  margin: 5px 0 0;
  font-size: 0.8em;
  color: #666;
}

/* 🌟 Highlighted Text */
.highlight {
  color: #e67e22;
  font-weight: bold;
}

.discount {
  color: #d35400;
  font-weight: bold;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-item {
  width: 24%;
  text-align: center;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  animation: fadeIn 0.8s ease-in-out;
}

.product-item img {
  margin-left: 22px;
  height: 70%;
  border-radius: 5px 50px;
  transition: transform 0.3s ease-in-out;
}

.product-item p {
  font-size: 1em;
  margin-top: 10px;
  color: #333;
  font-weight: bold;
}

.product-item:hover {
  transform: scale(1.05);
}

.product-item img:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .product-item {
    width: calc(33% - 20px);
  }
}

@media (max-width: 768px) {
  .product-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .product-item {
    width: 35%;
  }
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.plantName {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  display: flex;
  font-weight: 700;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container-fluid {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
}

.headingNew {
  color: rgb(152, 32, 32);
  font-size: 2rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-mids {
  display: flex;
  gap: 5px;
}
.banner-mids img {
  width: 50%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 10px auto;
}

.banner-mids img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.banner-mids img:hover {
  transform: scale(1.05);
}
@media (max-width: 467px) {
  .banner-mids img {
    flex-direction: column;
  }
  .headingNew {
    font-size: 5px;
  }
}
@media (max-width: 768px) {
  .headingNew {
    font-size: 0.8rem;
  }

  .banner-mids img {
    margin-left: 3px;
    max-width: 300px;
    flex-direction: column;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.row:after {
  display: block;
  clear: both;
  content: "";
}

.furniture-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.furniture-list a {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 33.333%;
  margin-bottom: 20px;
  display: block;
}

.furniture-list a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 1024px) {
  .furniture-list a {
    flex: 1 1 calc(50% - 15px);
    max-width: 50%;
  }

  .onlineStore .headingOnline {
    font-size: 28px;
  }
}

@media screen and (max-width: 500px) {
  .check {
    width: 20%;
  }
}
/* Mobile View: Convert to Auto-scrolling Slider */
@media screen and (max-width: 768px) {
  .furniture-list {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth;
  }

  .furniture-list a {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .onlineStore .headingOnline h1 {
    font-size: 30px;
  }

  .more-content {
    font-size: 14px;
    line-height: 18px;
    width: 90%;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row + .row {
  margin-top: 2%;
}
.row:after {
  display: none;
}
.col-6 {
  width: 49%;
}
.col-4 {
  width: 32%;
}
[class^="col-"] {
  float: left;
  margin-right: 2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
[class^="col-"]:last-child {
  margin-right: auto;
}
.container-1600 {
  max-width: 1500px;
  margin: 0 auto;
}
.figure,
.category-products .product-list .single-product figure,
.customer-reviews .in figure,
.media-partners .media-block figure,
.onlineStore .furniture-list a figure,
.grid-block .right-grid a figure,
.TopSelling figure,
.recently-viewed figure,
.NewForyou figure,
.category-wrpr figure,
.decor-section .decor-list figure,
.store-wrpr .stores-list .store-box figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  border-radius: 4px;
  background: #f5f5f5;
}
.figure:before,
.category-products .product-list .single-product figure:before,
.customer-reviews .in figure:before,
.media-partners .media-block figure:before,
.onlineStore .furniture-list a figure:before,
.grid-block .right-grid a figure:before,
.TopSelling figure:before,
.recently-viewed figure:before,
.NewForyou figure:before,
.category-wrpr figure:before,
.decor-section .decor-list figure:before,
.store-wrpr .stores-list .store-box figure:before {
  padding-top: 100%;
  content: "";
  display: block;
}
.figure img,
.category-products .product-list .single-product figure img,
.customer-reviews .in figure img,
.media-partners .media-block figure img,
.onlineStore .furniture-list a figure img,
.grid-block .right-grid a figure img,
.TopSelling figure img,
.recently-viewed figure img,
.NewForyou figure img,
.category-wrpr figure img,
.decor-section .decor-list figure img,
.store-wrpr .stores-list .store-box figure img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: auto;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.headingNew {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #333333;
  font-family: "Abhay-Libre Bold";
  text-transform: capitalize;
  padding: 0 0 30px;
}
.headingNew .subheading {
  font-size: 15px;
  line-height: 20px;
  font-family: "pangramregular";
  color: #515151;
  text-align: center;
  letter-spacing: 0.02em;
  display: block;
}
.banner-mid {
  margin: 50px auto;
  display: block;
  text-align: center;
}
.banner-mid.mlr-0 {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.link-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.link-flex .view-link {
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  padding: 10px 15px;
  font-family: "pangrammedium";
  text-transform: uppercase;
  line-height: 24px;
  background: #f5f5f5;
  font-size: 14px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.link-flex .view-link svg {
  vertical-align: text-top;
}
.link-flex .view-link:hover {
  color: #333333;
  border: 1px solid #8b8b8b;
}
.link-flex .subheading {
  text-align: left;
}
.view-link {
  color: #333333;
  font-family: "pangramregular";
  padding: 10px 0 0;
  font-size: 15px;
  display: block;
}
.view-link svg {
  vertical-align: text-bottom;
  margin-left: 3px;
}
.TextCommon {
  margin: 30px auto;
}
.TextCommon a {
  text-decoration: underline;
}
.media-partners {
  padding: 70px 0;
}
.media-partners .headingNew {
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}
.media-partners .headingNew:after {
  content: "";
  border: 1px solid #f9763a;
  width: 105px;
  display: block;
  position: absolute;
  bottom: 10px;
}
.media-partners .headingNew .subheading {
  text-align: left;
}
.media-partners .view-link {
  padding: 10px;
  border: 1px solid #e76f24;
  color: #e76f24;
  border-radius: 3px;
  display: inline-block;
  margin-top: 20px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.media-partners .view-link:hover {
  background: #e27a34;
  color: #fff;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.media-partners .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.media-partners .media-block {
  background: #fff6f0;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  max-width: 320px;
  margin-right: 10px;
}
.media-partners .media-block figure {
  margin-bottom: 10px;
}
.media-partners .media-block figure:before {
  padding-top: 55%;
}
.media-partners .media-block .media-head {
  font-size: 18px;
  line-height: 20px;
  color: #333333;
  font-family: "pangrammedium";
  margin: 6px 0 3px;
}
.media-partners .media-block .media-subhead {
  color: #515151;
  font-size: 14px;
  line-height: 20px;
  font-family: "pangramregular";
}
.customer-reviews .testimonial-heading {
  font-family: "Abhay-Libre Bold";
  font-size: 1.875rem;
}
.customer-reviews .in {
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.customer-reviews .in figure {
  height: auto;
}
.customer-reviews .in figure:before {
  padding-top: 55.5% !important;
}
.customer-reviews .in figure img {
  max-height: unset !important;
}
.customer-reviews .in figure:after {
  content: "";
  background: url("images/home-new1/white-play.svg") no-repeat;
  background-size: 65px;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  top: 70px;
  right: 0;
  left: 165px;
}

.customer-reviews .in .text-common {
  padding: 5px 10px 0px;
  height: 106px;
}
.customer-reviews .customer-slider .slick-next {
  -webkit-transform: none;
  transform: none;
  right: 5px;
}
.customer-reviews .customer-slider .slick-next:before {
  background: url("images/home-new1/CaretRight.svg") no-repeat !important;
}
.customer-reviews .customer-slider .slick-prev {
  left: 5px;
  z-index: 1;
}
.customer-reviews .info {
  color: #333333;
  font-family: "pangrammedium";
  letter-spacing: 0.02em;
}
.customer-reviews .info span {
  color: #646464;
  font-family: "pangramregular";
  line-height: 20px;
  font-size: 14px;
}
.Video-Open-Wrpr {
  background: #fff;
  padding: 15px 20px 20px;
  border-radius: 5px;
}
.Video-Open-Wrpr .close-popup {
  text-align: right;
  margin-bottom: 15px;
  cursor: pointer;
}
.timer-sale .banner-mid {
  position: relative;
}
.timer-sale .banner-mid #timer {
  color: #e32526;
  font-size: 18px;
}
.timer-sale .banner-mid .headingOnline {
  position: absolute;
  right: 30px;
  top: 12px;
  font-size: 19px;
  color: #333333;
  font-family: "pangrammedium";
}
.best-seller,
.sale {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #e27a34;
  padding: 0px 10px 0;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 28px;
  border-radius: 4px;
  text-transform: capitalize;
}
.sale img {
  position: absolute;
  left: -11px;
  z-index: 0;
  top: 2px;
  display: none;
  width: 16px;
}
.deal {
  background: none;
  padding: 0;
}
.deal.best-seller label {
  font-size: 13px;
  right: 12px;
}
.best-seller label {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
  font-family: "pangrammedium";
}
.new {
  background: #4caf4f;
}
.category-products {
  padding: 50px 0 30px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}
.category-products .subheading {
  text-align: center;
}
.category-products .tabs-nav {
  padding: 20px 0 15px;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 5px;
  text-align: center;
}
.category-products .tabs-nav li {
  display: inline-block;
}
.category-products .tabs-nav li.active a {
  color: #fff;
  background: rgb(152, 32, 32) !important;
  border: 1px solid #e27a34 !important;
}
.category-products .tabs-nav li.active a:hover {
  background: #e27a34 !important;
}
.category-products .tabs-nav li a {
  font-size: 0.9375rem;
  line-height: 20px;
  color: #515151;
  font-family: "pangrammedium";
  letter-spacing: 0.02em;
  border: 1px solid #8b8b8b;
  display: block;
  margin-right: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.category-products .tabs-nav li a:hover {
  background: #f5f5f5;
}

.category-products .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.category-products .product-list .single-product {
  width: 25%;
  margin-bottom: 30px;
}
.category-products .product-list .single-product figure {
  border-radius: 3px;
}
.category-products .product-list .single-product figure:before {
  padding-top: 86%;
}
.category-products .product-list .single-product a {
  color: #333333;
  display: block;
  margin: 0 8px;
  letter-spacing: 0.02rem;
  font-family: "pangramregular";
  text-align: left;
}
.category-products .product-list .single-product .name {
  font-size: 1.0625rem;
  line-height: 24px;
  margin: 5px 0 0px;
  font-family: "pangrammedium";
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-products .product-list .single-product .price {
  font-family: "pangrammedium";
  font-size: 0.9375rem;
  color: #515151;
}
.category-products .product-list .single-product .price .off-price {
  color: #515151;
  font-family: "pangramregular";
  margin: 0 3px;
  font-size: 0.875rem;
}
.category-products .product-list .single-product .price .discount-off {
  color: #4caf4f;
  font-size: 0.875rem;
}
@media screen and (min-width: 1400px) and (max-width: 1500px) {
  .Top-section {
    height: 545px;
  }
}
@media (max-width: 1366px) {
  .container-1600 {
    max-width: 1240px;
  }
  .Top-section {
    padding: 10px 0px 0;
    min-height: 475px;
    height: 475px;
  }
  .onlineStore,
  .grid-block {
    padding: 40px 0;
  }
  .TopSelling article a,
  .recently-viewed article a {
    margin: 0 6px;
  }
}

@media (max-width: 1280px) {
  .banner-mid {
    margin: 20px auto;
  }
  .Top-section {
    min-height: 474px;
    height: 474px;
  }
  .shop-category .top-list {
    margin-top: 20px;
    grid-row-gap: 20px;
    grid-column-gap: 15px;
  }
  .store-wrpr {
    padding: 30px 0;
  }
  .onlineStore {
    padding: 30px 0px;
  }
  .onlineStore .headingOnline {
    font-size: 32px;
    line-height: 36px;
  }
  .onlineStore .headingOnline h1 {
    font-size: 32px;
  }
  .headingNew {
    font-size: 32px;
    line-height: 36px;
    padding: 0 0 20px;
  }
  .customer-reviews .customer-slider .slick-next {
    right: 0 !important;
  }
  .customer-reviews .customer-slider .slick-prev {
    left: 0 !important;
  }
  .customer-reviews .in figure {
    height: 195px;
  }
  .customer-reviews .in .text-common {
    height: 100px;
  }
}
@media (max-width: 1250px) {
  .container-1600,
  .container-1200 {
    max-width: 1150px;
    width: 100% !important;
  }
}
/*# sourceMappingURL=home-new.css.map */

#loginclose1 {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.next-step {
  display: none;
}

.diningTabelArea {
  font-size: 10px;
}
@media (max-width: 868px) {
  .furniture-lists h1 {
    font-size: 15px;
    color: rgb(139, 38, 38);
    margin-top: 10px;
  }
}
.furniture-lists h1 {
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 20px 10px 6px;
  color: wheat;
}

@media (max-width: 780px) {
  .furniture-lists h1 {
    font-size: 9px;
    color: rgb(139, 38, 38);
    margin-top: 10px;
  }
}
.diningTabelArea {
  color: rgb(113, 106, 106);
  font-size: 19px;
  margin-left: 20px;
  margin-top: 20px;
}

.delivery-wrpr img {
  width: 50px;
  height: 40px;
  background-color: transparent;
}
.onlineStores {
  text-align: center;
  padding: 20px;
  margin-top: -52px;
}

.headingOnlines {
  color: rgb(152, 32, 32);
  text-align: center;
  font-size: 20px;
  animation: fadeIn 1s ease-in-out;
}

.headingOnlines p {
  font-size: 1rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .headingOnlines {
    font-size: 1.5rem;
  }

  .headingOnlines p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .headingOnlines {
    margin-top: 35px;
    font-size: 1.1rem;
  }

  .headingOnlines p {
    font-size: 0.9rem;
  }
  .footer_top {
    margin-top: 30px;
  }
}

.furniture-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 13px;
  padding: 20px;
}

.furniture-lists a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.furniture-lists a:hover {
  transform: scale(1.05);
}

.furniture-lists img {
  width: 100%;
  height: 90%;
  display: block;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .furniture-lists {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  .furniture-lists img {
    height: 150px;
  }
  .onlineStores h1 {
    font-size: 5px;
    font-weight: 10px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.furniture-lists a {
  animation: fadeIn 0.5s ease-in-out;
}

.footer-mid {
  background-color: #f9f4eb;
  color: black;
  padding: 20px 0;
  display: flex;
  justify-content: end;
  align-items: end;
  text-align: end;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: flex;
  gap: 50px;
  animation: marquee 10s linear infinite;
}

.delivery-wrpr {
  display: flex;
  gap: 20px;
}

.delivery-wrpr li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.delivery-wrpr img {
  width: 80px;
  height: 30px;
  border-radius: 10px;
}

.download-wrpr img {
  width: 120px;
  height: 40px;
  border-radius: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-130%);
  }
}

@media screen and (max-width: 768px) {
  .marquee {
    animation-duration: 10s;
  }

  .delivery-wrpr {
    flex-direction: column;
    gap: 20px;
    text-align: end;
  }
}
.chatbox {
  position: fixed;
  top: 1%;
  background: red;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn 0.5s ease-in-out;
  bottom: 20px;
  right: 20px;
}

.chatbox-header {
  background: #007bff;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

.chatbox-body {
  padding: 10px;
  max-height: 700px;
  overflow-y: auto;
  flex-grow: 1;
  background: #f9f9f9;
}

.chatbox-footer {
  display: flex;
  padding: 10px;
  background: #eee;
  border-top: 1px solid #ddd;
}

.chatbox-footer input {
  flex-grow: 1;
  padding: 8px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.chatbox-footer button {
  padding: 8px 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.chatbox-footer button:hover {
  background: #0056b3;
}

.message {
  margin: 5px 0;
  padding: 8px;
  border-radius: 5px;
  animation: slideIn 0.3s ease-out;
}

.user-message {
  background: #d1e7dd;
  align-self: flex-end;
  text-align: right;
}

.bot-message {
  background: #f8d7da;
  align-self: flex-start;
  text-align: left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hidden-text {
  display: none;
}
.btn {
  margin-top: 10px;
  color: blue;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.slider-containers {
  width: 100%;
  overflow: hidden;
  /* background: #fff; */
  padding: 20px 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  position: relative;
}

.sliders {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
}
.slider-containers h1 {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgb(139, 38, 38);

  font-size: 23px;
}

.sliders img {
  width: 160px;
  height: 100px;
  border-radius: 10px;
  margin: 0 20px;
  transition: transform 0.3s;
}

.sliders img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.slider-containers:hover .sliders {
  animation-play-state: paused;
}

.TruckBannerImg {
  display: flex;
  margin-top: 4px;
  border: 1px solid #f9f4eb;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.TruckBannerImg img {
  width: 100px;
  height: 60px;
  background-color: transparent;
  color: transparent;
}

.TruckBannerImg p {
  color: rgb(139, 38, 38);

  padding: 20px;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .TruckBannerImg .box-text {
    font-size: 10px;
    margin-left: 150px;
  }
}

.menu {
  position: relative;
}

.menu-button {
  margin-top: 11px;
  border: none;
  margin-left: 15px;

  background-color: transparent;
}
.navbar .menu .menu-button .dropdown{
  cursor: pointer;
}

@media (max-width: 770px) {
  .navbar {
    display: none;
  }
}

/* Dropdown Styling */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 13px;

  width: 200px;
  background: white;

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  z-index: 100;
}

.menu:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;

  color: #222;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown a:hover {
  background: #ddd;
}

/* Mobile Click Functionality */
@media (max-width: 768px) {
  .menu:hover .dropdown {
    opacity: 0; /* Disable hover on mobile */
    visibility: hidden;
  }

  .dropdown.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .TruckBannerImg .box-text {
    font-size: 10px;
    margin-left: 150px;
  }
}

@media (max-width: 999px) {
  .TruckBannerImg .box-text {
    font-size: 14px;
    margin-left: 150px;
  }
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  max-height: 30vh;
  gap: 1px;
  padding: 20px;
  background-color: #f9f4eb;
  color: black;
  text-align: center;
}

.footer-section {
  transition: transform 0.3s ease-in-out;
}

.footer-section:hover {
  transform: scale(1.05);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin-top: 13px;
}

.footer-section ul li a {
  font-size: 12px;
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: rgb(152, 32, 32);
}

.CompanyDetails strong {
  margin-bottom: 20px;
  margin-top: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background-color: #f9f4eb;
  color: black;
}

@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    max-height: max-content;
  }

  .footer-section {
    grid-template-columns: 2fr;
  }

  .footerIcon ul {
    margin-left: 19px;
    gap: 5px;
  }

  .footer-section h3 {
    font-size: 15px;
  }

  .footer-section ul li a {
    font-size: 10px;
  }

  .headingNew {
    font-size: 15px;
  }

  .c {
    font-size: 21px;
  }
}

.mcaHead {
  margin-top: 13px;
  font-size: 13px;
}

.CompanyDetails .cin {
  font-size: 11px;
}

@media (max-width: 480px) {
  .footer-container {
    background-color: #f9f4eb;
    color: black;
    max-height: max-content;
    grid-template-columns: repeat(2, 1fr);
  }

  .CompanyDetails strong {
    font-size: 8px;
  }

  .CompanyDetails .mcaHead {
    font-size: 9px;
    margin-top: 30px;
  }

  .CompanyDetails .mca {
    font-size: 9px;
  }

  .CompanyDetails .mca strong {
    font-size: 9px;
  }

  .CompanyDetails .cin {
    font-size: 9px;
  }

  .footer-section ul li a {
    color: black;
  }

  .footer-bottom {
    background-color: #f9f4eb;
    color: black;
  }
}
.cin {
  color: black;
}

.CompanyDetails {
  margin-top: 30px;
  font-size: 12px;
  justify-content: start;
  text-align: start;
  align-items: start;
}

.CompanyDetails h2 {
  margin-top: -7px;
}

.CompanyDetails strong {
  font-size: 12px;
}

.image-container {
  display: flex;
  background-color: #f9f4eb;

  justify-content: end;
  align-items: end;
  text-align: end;
}

.image-container img {
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .image-container img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .image-container img {
    width: 30px;
  }
}

.mca {
  font-size: 13px;
}

.contactUsHead {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.features-sectionC {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-cardC {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.feature-cardC img {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.feature-cardC h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-cardC p {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive breakpoints */
@media (min-width: 576px) {
  .features-sectionC {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 406px) {
  .features-sectionC {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features-sectionC {
    grid-template-columns: repeat(4, 1fr);
  }
}
