body, h1, h2, h3, h4, h5, h6, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
* {
    -ms-overflow-style: thin;
    scrollbar-width:thin;
}
* {
    -webkit-tap-highlight-color: transparent;
}
button, a, img {
    outline: none;
}
a:focus,button:focus {
    outline: none;  
    box-shadow: none; 
    -webkit-tap-highlight-color: transparent;
}
a:focus {
    outline: none;
}
@media (hover: none) and (pointer: coarse) {
    a:focus {
        outline: none;
    }
}
html, body {
    text-align: left;
    font-weight: normal;
    font-style: normal;
    vertical-align: baseline;
    width: 100%;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.header-top-container {
    margin: 0 auto;
}

.header-top {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    line-height: 20px;
    letter-spacing: 1px;
}

.header-top a {
    color: #fff;
    position: relative;
    text-decoration: none;
    transition: color 300ms ease;
}
.header_image img{
	width: 100%;
    height: 100%;
	background-size:cover ;
	position: absolute;
	top: 0;
	z-index: -1;
	bottom: 0;
}
.header-top a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(235, 235, 235, 1);
    display: block;
    transform: scaleX(1);
    margin: 0;
    transition: transform 300ms ease, border-color 300ms ease;
    transform-origin: center;
    border-color: #fff;
}

.header-top a:hover {
    color: rgba(214, 214, 214, 0.8);
}

.header-top a:hover::after {
    border-color: rgba(214, 214, 214, 0.3);
}

.header-top .header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
}

.header-top .header-top-container p {
    padding: 9px 0px;
    font-size: 1em;
    width: auto;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.2s ease; 

    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.nav-bar-small-screens{
    display: none;
}
@keyframes mySticky {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
header{
    width: 100%;
    transition: all 0.3s ease; 
    z-index: 9999;
    position: relative;
}
.nav-bar.fixed-top { 
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: mySticky 0.3s ease-out; 
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-section{
	background-color: rgba(235, 235, 235, 0.9);
    height: auto;
    position: relative;
    background: linear-gradient(180deg, #bac0ca 0%, #e9ecef 100%);
}
.hero-section {
    background: linear-gradient(180deg, #bac0ca 0%, #e9ecef 100%);
}
  
.hero-section.has-header-image {
    background-color: rgba(235, 235, 235, 0.9); 
}

.logo img {
    width: 200px;
    height: 100px;
	filter: invert(0);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 400;
    font-size: .9rem;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    text-decoration: none;
    color: black;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid;
    transform: scaleX(0);
    margin: 0;
    transition: transform 300ms ease;
    transform-origin: center;
    border-color: black;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
    transform: scaleX(1); 
}

.nav-links li.active a::after {
    transform: scaleX(1); 
}
.nav-links li a svg {
    width: 10px;
    height: 10px;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons svg {
    width: 20px;
    height: 20px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(235, 235, 235, 0.5);
}
.menu-item {
    position: relative;
}
.menu-item .submenu {
    position: absolute;
    left: 0;
    padding: 56px 0;
    padding-bottom: 0px;
    display: none;
    z-index: 100;
    top: 100%;
	min-width: 330px;
    display: none;
	width: max-content;
}
.menu-item .submenu li div{
	text-align: center;
	width: fit-content;
	padding: 10px 20px;
}
.menu-item:hover .submenu {
    display: flex;
}


.submenu {
    display: flex;
    flex-wrap: wrap;
}

.submenu li {
    padding: 5px 0;
    box-sizing: border-box;
    flex: 1;
    width: auto;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 100%;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 50px;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: content-box;
}

.dot.active {
    background-color: black;
}
.carousel-item-content{
    width: 45%;
    padding: 20px;
    opacity: 1;
    transform: translateX(-20px);
    transition: opacity 0.1s ease, transform 0.1s ease;
    padding-left: 50px;
}
.carousel-item.active .carousel-item-content{
    opacity: 1;
    transform: translateX(0);
}

.carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.1s cubic-bezier(.32,.64,.5,.93);
    height: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
	flex-shrink: 0;
}

.carousel-item-content {
    max-width: 45%;
    text-align: left;
    padding-right: 20px;
}

.new-arrivals{
    font-size: 18px;
    letter-spacing: 1.2px;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}
.chairs-heading{
    font-size: 72px;
    line-height: 90px;
    letter-spacing: 5px;
    animation: slideIn 1s ease forwards;
    opacity: 0;
    font-weight: 500;
}
.youll-love-heading{
    font-size: 72px;
    line-height: 90px;
    letter-spacing: 5px;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
}

.designer-text {
    font-size: 16px;
    line-height: 30px;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.sale {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.carousel-item h2 {
    font-size: 50px;
	font-weight: 500;
    margin:  0;
    line-height: 1.5;
    animation: fadeIn 0.5s ease 0.2s forwards;
    opacity: 0;
}

.carousel-item p {
    font-size: 16px;
    color: #555;
    animation: fadeIn 0.5s ease 0.4s forwards;
    opacity: 0;
}

.carousel-image {
    width: 45%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
     opacity: 0;
    animation: imageSlideIn 1s cubic-bezier(.32,.64,.5,.93) forwards;

}
.shop-now {
	margin-top: 60px;
    display: inline-block;
    background-color: transparent;
    position: relative;
    text-decoration: none;
    font-weight: bold;
    animation: slideInUp 1s ease 0.5s forwards;
    opacity: 0;
	font-weight: 500;
}

.shop-now::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    display: block;
    transform: scaleX(0);
    margin: 0;
    transition: transform 300ms ease, border-color 300ms ease;
    transform-origin: center;
    border-color: #000;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.shop-now:hover::after {
    transform: scaleX(1);
}
@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(1000px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageSlideIn{
    from{
        transform: translateY(-1000px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
.text-group .chairs-heading .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
	animation: slideInUpChar 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.chairs-heading {
    font-size: 72px;
    letter-spacing: 5px;
}
@keyframes slideInUpChar {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUpChar {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.shop-by-category{
	margin:0px 60px ;
    margin-bottom: 45px;
}
.shop-by-category h2{
	padding: 60px 0px;
	padding-bottom: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: "Jost", sans-serif;
    font-size: 1.2em;
    text-align: center;
}
.shop-by-category-content{
	display: flex;
	align-items: center;
	overflow: auto;
	gap: 40px;
}
.shop-by-category-item{
	
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 15px;
    cursor: pointer;
    background: transparent;
    transition: 150ms ease 0s;
    text-decoration: none;
}
.shop-by-category-item a{
	cursor: pointer;
    background: transparent;
    transition: 150ms ease 0s;
    text-decoration: none;
	font-weight: 530;
	line-height: 1.8;
    letter-spacing: 0.075em;
	word-wrap: break-word;
    text-transform: uppercase;

}
.shop-by-category-item-des p{
	width: max-content;
	font-size: 14px;
}
.shop-by-category-item img {
  width: 100px !important;
  max-height: 100px !important;
  transition: transform 0.1s ease; 
  
}
.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}

@keyframes vibrate {
    0% { transform: translateX(0); }
    20% { transform: translateX(2px); }
    40% { transform: translateX(-2px); }
    60% { transform: translateX(2px); }
    80% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}
/*
.banner-wrapper {
  display: flex;
  margin: 0 auto;
  padding: 60px;
  gap: 20px;
  margin-top: 60px;
}

.banner-set {
  display: flex;
  margin-bottom: 30px; 
  flex-direction: column;
}

.banner {
  flex: 1;
  background-color: #fff; 
  padding: 25px 25px 15px;
  position: relative;
  text-decoration: none;
  color: #000;
}

.banner:nth-child(2) {

  background-color: #9ed5c6;
  
}

.banner-set:nth-child(2) .banner:first-child {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 0%, rgba(248, 174, 13, 1) 50%, rgba(245, 197, 95, 1) 100%), #f5c55f;
}

.banner-image {
  text-align: center;
  margin-bottom: 5px;
  margin-top: -40px;
}

.banner-image img {
  max-width: 90%;
  height: auto;
}

.banner-content {
    margin-top: 10px;
    margin-top: 10px;
    position: absolute;
    top: 0;
    left: 20px;
}
.banner-content h2{
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.075em;
    margin-bottom: 36px;
}


.call-to-action {
  font-size: 12px; 
  text-transform: uppercase;
  text-decoration: underline;
  color: #000;
  display: inline-block;
  font-weight: 600;
}
#banner-set-right a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
#banner-set-right a .banner-content{
    position: relative;
    text-align: center;
    color: #ffffff;
}
#banner-set-right a .banner-content .call-to-action{
    color: #ffffff;
}
#banner-left-2{
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}
#banner-left-2 img{
    max-width: 100%;
    height: 100%;
    
}
#banner-left-2 .banner-content{
    margin-top: 10px;
    margin-top: 10px;
    position: absolute;
    top: 10px;
    left: 40%;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
}
#banner-left-2 .banner-content h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.075em;
    margin-bottom: 16px;
    
}
#banner-left-2 .banner-image{
    margin-top:0 ;
    margin-bottom: 0px;
    height: 100%;
    
}

#banner-left-1{
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}
#banner-left-1 img{
    max-width: 100%;
    height: 100%;
    
}
#banner-left-1 .banner-content{
    margin-top: 10px;
    margin-top: 10px;
    position: absolute;
    top: 10px;
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}
#banner-left-1 .banner-content h2 {
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0.075em;
    margin-bottom: 36px;
    
}
#banner-left-1 .banner-image{
    text-align: right;
}
#banner-left-1 .banner-image{
    transition: transform 500ms;
}
#banner-left-1 .banner-image:hover{
    transform: scale(1.03);
}
@media (max-width: 768px) {
  .banner-set {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .banner-image {
    margin-bottom: 10px;
  }

  .banner-content h2 {
    font-size: 20px; 
  }

  .banner {
    padding: 20px;
    border: none;
  }

  .banner:nth-child(2) {
    border: none;
  }
}

#banner-left-2 {
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden; 
  text-decoration: none; 
}

#banner-left-2 img {
  max-width: 100%;
  height: 100%;
}

#banner-left-2 .banner-content {
  margin-top: 10px;
  position: absolute;
  top: 10px;
  left: 40%;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  color: black;
}

#banner-left-2 .banner-content h2 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-bottom: 16px;
}

#banner-left-2 .banner-image {
  margin-top: 0;
  margin-bottom: 0px;
  height: 100%;
}

#banner-left-2::before,
#banner-left-2::after,
#banner-left-2 .banner-image::before,
#banner-left-2 .banner-image::after,
#banner-right-1::before,
#banner-right-1::after,
#banner-right-1 .banner-image::before,
#banner-right-1 .banner-image::after {
  content: '';
  position: absolute;
  z-index: 1; 
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
}
#banner-left-2::before,#banner-right-1::before {
  top: 8px;
  left: 8px;
  width: 0; 
  height: 0px;
}
#banner-left-2::after ,#banner-right-1::after {
  bottom: 8px;
  right: 8px;
  width: 0;
  height: 0px;
}
#banner-left-2 .banner-image::before,#banner-right-1 .banner-image::before {
  top: 8px;
  left: 8px;
  width: 0px;
  height: 0; 
  
}
#banner-left-2 .banner-image::after,#banner-right-1 .banner-image::after {
  bottom: 8px;
  right: 8px;
  width: 0px;
  height: 0; 
}

#banner-left-2:hover::before,
#banner-left-2:hover::after {
  width: calc(100% - 16px); 
  box-shadow: 0 0 0 1px black;
}

#banner-left-2:hover .banner-image::before,
#banner-left-2:hover .banner-image::after {
  height: calc(100% - 16px); 
  box-shadow: 0 0 0 1px black;
}
#banner-right-1:hover::before,
#banner-right-1:hover::after {
  width: calc(100% - 16px); 
  box-shadow: 0 0 0 1px white;
}

#banner-right-1:hover .banner-image::before,
#banner-right-1:hover .banner-image::after {
  height: calc(100% - 16px); 
  box-shadow: 0 0 0 1px white;
}
*/
.sofisticatedproducts{
    padding: 60px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 30px;
    padding-top: 50px;
}
.sofisticatedproducts-image-container{
    width: 50%;
}
.sofisticatedproducts-1,.sofisticatedproducts-2{
    display: flex;
    align-items: center;
}
.sofisticatedproducts-content p{
    font-size: 18px;
    letter-spacing: 0.075em;
    margin: 0px 0px 24px 0px;
}
.sofisticatedproducts-content h2{
    margin: 0px 0px 26px 0px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25em;
    letter-spacing: 0.075em;
}
.sofisticatedproducts-content{
    width: 50%;
}
.sofisticatedproducts-content.left h2{
    margin-right: 70px;
}
.sofisticatedproducts-content.left p{
    margin-right: 70px;
}
.sofisticatedproducts-content.left .call-to-action{
    margin-right: 70px;
}
.sofisticatedproducts-content.right h2{
    margin-left: 70px;
}
.sofisticatedproducts-content.right p{
    margin-left: 70px;
}
.sofisticatedproducts-content.right .call-to-action{
    margin-left: 70px;
}
.sofisticatedproducts-1 .image-wrapper, .sofisticatedproducts-2 .image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.sofisticatedproducts-1 img, .sofisticatedproducts-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 0.3s;
}

.sofisticatedproducts-1 .image-wrapper::before, .sofisticatedproducts-2 .image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 255, 0, 0.1));
    opacity: 0;
    transition: opacity 300ms ease;
    z-index: 1;
    pointer-events: none;
}

.sofisticatedproducts-1:hover .image-wrapper::before, 
.sofisticatedproducts-2:hover .image-wrapper::before {
    opacity: 1;
}
.sofisticatedproducts-1:hover img, 
.sofisticatedproducts-2:hover img {
    transform: scale(1.1); 
}
.call-to-action {
    display: flex;
    text-transform:uppercase ;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    font-weight: 530;
    line-height: 24px;
    position: relative;
    text-decoration: none;
    color: black;
    border-color: black;
    width: fit-content;
    cursor: pointer;
    font-size: 14px;
}

.call-to-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid black;
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 800ms ease;
}

.call-to-action:hover::after,
.call-to-action:focus::after {
    animation: reFill 800ms ease;
}

@keyframes reFill {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
.sofisticatedproducts-3{
    position: relative;
    height: 500px;
    width: 100%;
    width: 100%;
}
.sofisticatedproducts-image-container.bottom{
    width: 100%;
    height: 100%;
}
.sofisticatedproducts-image-container.bottom .image-wrapper{
    height: 100%;
}
.sofisticatedproducts-image-container.bottom img{
    width: 100%;
    height: 100%;
}
.sofisticatedproducts-content.bottom{
    position: absolute;
    top: 50%;
    left: 100%;  
    transform: translate(-45%, -50%);
    color: black;
    width: 100%;
    border-radius: 15px;
}
.product-grid{
    position: relative;
	padding: 60px;
    padding-top: 0;
    background: rgba(255, 255, 255, 0.9);
 }
 .products-background-image img{
    position: absolute;
    left: 0;
    background-size: cover;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -1;
 }
.product-grid-heading{
    padding-top: 30px;
    text-align: left;
    margin-bottom: 50px;
}
.product-grid-heading h2{
    font-size: 42px;
}
.product-grid-heading p{
    font-size: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
}

.product-grid-items{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	gap: 20px;
}
.product-item{
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
}
.product-item .product-image-container{
	position: relative;
    overflow: hidden; 
}
.product-item:hover .product-image-container img{
    transform: scale(1.05);
    transition: transform 0.3s ease; 
}
.product-item .product-image-container{
    background-color: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    padding-top:60px; 
    padding-bottom:60px; 
    display: block;
    padding: 60px 10px;
    transition: background-color 0.3s ease-in-out;
    border-radius: 15px;
}

.product-item:hover .product-image-container {
  background-color: rgba(0,0,0, 0.2)
}
.product-item .product-image-container img{
    max-width: 100%;
	height: 270px;
    transition: transform 0.3s ease;
}
.product-item .product-image-container .product-count{
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #ffffff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 8px;
    width: calc(100% - 16px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.product-item .product-image-container .product-count:hover{
    background-color: rgba(209,2,2,1);
    color: #ffffff;   
}
.product-item:hover .product-image-container .product-count{
    opacity: 1;
}
.product-item .product-name{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;

}
.product-item a{
	cursor: pointer;
	background: transparent;
    position: relative;
	text-decoration: none;
	color: rgba(209,2,2,1);
    font-size: 15px;
}
.product-item a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	border-bottom: 1px solid;
	transform: scaleX(0);
	margin: 0;
	transition: transform 300ms ease, border-color 300ms ease;
	transform-origin: center;
	border-color: rgba(209,2,2,1);
}

.product-item a:hover::after {
	transform: scaleX(1);
}
.product-grid-heading {
    text-align: center;
    
}

.product-grid-heading p {
    display: flex;
    align-items: center;
    justify-content: left;
    font-weight: bold;
    color: black;
    letter-spacing: 2px;
    position: relative;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 1px;
}

.line {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 0 10px;
}
footer {
    background-image: url('/static/images/footer_bacground.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background: #000;
    color: #fff; 
    padding: 50px 0 0;
    position: relative;
}
footer::before{
  display:none; 
}
footer .container{
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px; 

}

.footer-content > div {
   flex: 1 1 300px;
    padding: 0 20px; 
    margin-bottom: 20px; 
}
.footer-logo img {
    max-width: 180px;
    display: block;
    filter: brightness(0) invert(1);

}
.footer-logo h3{
  margin:0;
}

.footer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.footer-about p {
    line-height: 1.5;
   font-size: 15px;
   letter-spacing: 0.4px;
}
.footer-links h3,.footer-contact h3{
    margin-top: 30px;
}
.footer-links ul{
    list-style: none;
    padding:0;
}
.footer-links ul li{
    line-height: 2;
}
.footer-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-contact-items p {
   line-height: 1.4;
  display: flex; 
  align-items: center; 
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-contact-items p i{
    margin-right: 5px; 
}
.footer-contact-items .footer-locations {
  display:none;
}

.footer-bottom { 
   padding: 20px 0; 
}
 .footer-bottom p{
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}
.footer-logo-mobile{
    display: none;
}
.footer-logo-large{
    display: block;
}
#nav-links-mobile{
    display: none;
}
@media (max-width: 768px) {
    .footer-content {
        justify-content: flex-start;
        flex-direction: column;

    }

      .footer-content > div {
    text-align: left;
    }
}
.footer-links li a {
    font-weight: 400;
    line-height: 24px;
    position: relative;
    color: #fff;
    width: fit-content;
    margin-bottom: 5px;
}
.footer-links li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links li svg{
    width: 12px;
    height: 12px;
}
.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid;
    transform: scaleX(0);
    margin: 0;
    transition: transform 300ms ease;
    transform-origin: center;
    border-color: #fff;
}

.footer-links li a:hover::after {
    transform: scaleX(1);
}
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 99;
    border: none;
    background-color: transparent;
   
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    
}

#scrollToTopBtn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#scrollToTopBtn.show {
    opacity: 1;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.47);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.39);
}

.best-sellers {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
}

.best-sellers-container {
    display: flex;
    flex-direction: column;
    margin: 60px;
}

.best-sellers-background-image img {
    position: absolute;
    left: 0;
    background-size: cover;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -1;
}

.best-sellers .title {
    margin-bottom: 43px;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 1px;
}

.best-sellers-products {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    overflow: auto;
}

.best-sellers-products .product-card {
    width: 312.5px;
}

.best-sellers-products .product-card .image-container {
    width: 100%;
    height: 340px;
    padding: 40px 0;
    background: rgba(235, 235, 235, 1);
    transition: background-color 0.3s ease-in-out;
    position: relative;
    display: block;
    overflow: hidden;
}

.best-sellers-products .product-card .image-container img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    transition: opacity 300ms ease 0s;
    position: absolute;
    top: 0;
    left: 0;
}

.best-sellers-products .product-card:hover .image-container img:first-child {
    opacity: 0; 
}

.best-sellers-products .product-card .image-container img:last-child {
    opacity: 0; 
}

.best-sellers-products .product-card:hover .image-container img:last-child {
    opacity: 1; 
}

.best-sellers-products .product-card .image-container img[data-hover-image] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    transition: opacity 300ms ease 0s;
    position: absolute;
    top: 0;
    left: 0;
}

.best-sellers-products .product-card .description {
    margin-top: 17px;
}

.best-sellers-products .product-card .description h3 {
    line-height: 20px;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.375px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.best-sellers-products .product-card .description .price {
    margin-bottom: 15px;
    letter-spacing: 0.075em;
    font-weight: 800;
}

.best-sellers-products .product-card .image-container .enquiry {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #ffffff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 8px;
    text-align: center;
    width: calc(100% - 16px);
    opacity: 0;
    transition: opacity 300ms ease, transform 300ms ease, background-color 300ms ease;
    z-index: 10;
}

.best-sellers-products .product-card .image-container .enquiry:hover {
    background-color: rgba(209, 2, 2, 1);
    color: #ffffff;
}

.best-sellers-products .product-card .description h3:hover {
    color: rgba(209, 2, 2, 1);
}

.best-sellers-products .product-card:hover .image-container .enquiry {
    opacity: 1;
}

.ourprojects {
    padding: 60px;
    background: rgba(255, 255, 255, 0.9);
    padding-top: 30px;
    position: relative;
}

.ourprojects-container {
    display: flex;
    align-items: center;
    overflow: auto;
    transition: transform 300ms ease-in-out;
    position: relative;
}

.project {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    height: 450px;
    flex: 0 0 100%;
    z-index: 2;
    transition: transform 300ms ease-in-out;
}

.project .image-container {
    height: 100%;
    overflow: hidden; 
    position: relative; 
    border-radius: 0px 50px 0px 50px;
    flex: 0 0 60%;
}

.project .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 300ms ease-in-out; 
    display: block;
}

.project .image-container:hover img {
    transform: scale(1.1); 
}

.project .project-description {
    flex: 1;
    width: 360px;
}

.project .project-description h2 {
    margin-bottom: 15px;
    font-weight: normal;
    letter-spacing: 0.025em;
    margin: 0 0 18px 0;
    font-size: 30px;
}

.project .project-description .description {
    font-size: 1.13em;
    line-height: 1.8;
    color: rgba(132, 132, 132, 1);
    margin-bottom: 12px;
}

.project .project-description .location {
    font-size: 1.1em;
    line-height: 1.2;
    font-size: 16px;
    margin-bottom: 8px;
}

.ourprojects-wrapper {
    position: relative;
}

.ourprojects-wrapper .control-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; 
    transform: translateY(-50%);
    z-index: 3;
    opacity: 1;
}
.ourprojects-wrapper .control-buttons button {
    pointer-events: auto; 
    padding: 16px;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.ourprojects-wrapper .control-buttons button:hover {
    background: rgba(255, 255, 255, 1);
}

.ourprojects-wrapper .control-buttons #left {
    margin-left: 20px;
}

.ourprojects-wrapper .control-buttons #right {
    margin-right: 20px;
}
.ourprojects-title{
    padding-top: 40px;
    margin-bottom: 20px;
    
}
.customer-reviews{
    padding: 60px;
    padding-top: 30px;
}
.customer-reviews .title h2{
    margin-bottom: 50px;
    margin-top: 20px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: Urbanist, sans-serif;
    text-align: center;
    font-size: 1.7em;
}
.customer-reviews-container{
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: auto;
    gap: 80px;
}
.review-card .image-container{
    width: 200px;
    height: 200px;
}
.review-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.review-card .review-container{
    text-align: center;
}
.review-card .image-container img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.ourclients {
    padding: 60px;
    text-align: center;
    background-color: #FAFAFA;

}
.ourclients h2,.ourprojects-title h2{
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: Urbanist, sans-serif;
    text-align: center;
    font-size: 1.7em;
}
.client-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px; 
    overflow: auto;
}

.client-logo {
    width: 150px; 
    height: 120px; 
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    min-width: 130px;
    transition: transform 0.3s ease;
}
.loading-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    overflow: hidden;
}

.loading-animation img {
    width: 50px;
    height: auto;
    z-index: 1; 
    animation: pulse 1.5s infinite alternate; 
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.16); }
}
.rotating-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid transparent; 
    border-top: 4px solid rgb(115, 114, 114);
    border-left: 4px solid rgb(115, 114, 114);
    border-radius: 50%; 
    animation: rotate-circle 1s linear infinite;
  }
  
  
  @keyframes rotate-circle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @media (max-width: 1200px) {
    
    .nav-bar{
        display: none;
    }
    .nav-bar-small-screens{
        display: flex;
        padding: 30px 15px;
        align-items: center;
        justify-content: space-between;
    }
    .logo img{
        width: 135px;
        height: 22px;
    }
    .nav-icons {
        display: flex;
        gap: 15px;
    }
    .hero-section .carousel-item {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .hero-section .carousel-item {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
        
    }
    .hero-section .carousel-item-content{
        padding: 0;
        width: 100%;
        max-width: 100%;
        transform: translateX(0px);
    }
    .hero-section .carousel-image{
        width: 90% !important;
        max-width: 90% !important;
    }
    .hero-section .carousel-item-content .text-group{
        text-align: center;
        padding: 30px 0;
    }
    .hero-section .carousel-item-content .text-group h2{
        z-index: 9;
        touch-action: manipulation;
        height: auto;
        width: auto;
        color: rgb(0, 0, 0);
        text-decoration: none;
        white-space: nowrap;
        max-height: none;
        max-width: none;
        text-align: center;
        line-height: 48px;
        letter-spacing: 0.8851px;
        font-weight: 400;
        font-size: 35px;
        backdrop-filter: none;
        filter: none;
        transform-origin: 50% 50%;
        opacity: 1;
        transform: translate(0px, 0px);
        visibility: visible;
    }
    .hero-section .carousel-item-content .text-group p{
        font-size: 15px;
    }
    .hero-section .carousel-item-content .text-group .designer-text{
        margin-top: 10px;
    }
    .shop-now {
        margin-top: 20px;
        display: inline-block;
        background-color: transparent;
        position: relative;
        text-decoration: none;
        font-weight: bold;
        animation: slideInUp 1s ease 0.5s forwards;
        opacity: 0;
        font-weight: 600;
        font-size: 14px;
    }
    .shop-now::after {
        opacity: 1;
        transform: scaleX(1);
    }
    .shop-by-category h2 {
        padding: 30px 0px;
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: -0.01em;
        font-family: Urbanist, sans-serif;
        font-size: 1em;
        text-align: center;
    }
    .shop-by-category-item {
        justify-content: center;
        flex-direction: column;
    }
    .shop-by-category-item-des{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .shop-by-category {
        margin: 0px 15px;
        margin-bottom: 10px;
    }
    .shop-by-category-item-des p {
        width: max-content;
        font-size: 12px;
    }
    .full-section {
        background-color: #FAFAFA;
        padding: 30px 0 !important;
        padding-bottom: 0px !important;
        margin-top: 40px !important;
    }
    .title-area .subtitle {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        font-family: "Urbanist", sans-serif;
        letter-spacing: -0.01em;
    }
    
    .full-section .image-container .sub-image-container {
        flex-direction: column !important;
        gap: 10px !important;
        position: relative;
        padding: 0 10px;
    }
    .full-section .image-container .sub-image-container .image-wrapper:nth-child(2) {
        position: relative;
        top: 0px !important;
    }
    .full-section .image-container {
        gap: 20px !important;
        margin-top: 10px !important;
    }
    .full-section .image-wrapper {
        width: 100% !important;
        max-width: none;
    }
    .full-section::before {
        opacity: 1 !important;
    }
    .full-section::after {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%, white) !important;
        background-repeat: repeat !important;
    }
    .text-below {
        color: rgba(209, 2, 2, 1);
    }
    .sofisticatedproducts {
        padding: 10px;
        padding-top: 15px;
    }
    .sofisticatedproducts-1, .sofisticatedproducts-2 {
        flex-direction: column;
    }
    .container {
        width: 100% !important;
        max-width: 1200px;
        position: relative;
    }
    .sofisticatedproducts-2{
        flex-direction: column-reverse;
    }
    .sofisticatedproducts-image-container{
        width: 100%;
    }
    .sofisticatedproducts-content{
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sofisticatedproducts-1 .image-wrapper, .sofisticatedproducts-2 .image-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .sofisticatedproducts-content.right p,.sofisticatedproducts-content.right h2,.sofisticatedproducts-content.right .call-to-action {
        margin-left: 0px;
    }
    .sofisticatedproducts-content.left p,.sofisticatedproducts-content.left h2,.sofisticatedproducts-content.left .call-to-action {
        margin-right: 0px;
    }
    .sofisticatedproducts-content h2 {
        margin: 0px 0px 15px 0px;
        font-size: 25px;
        font-weight: 400;
        line-height: 1.25em;
        letter-spacing: 0.075em;
        font-style: normal;
    }
    .sofisticatedproducts-content p {
        margin: 0px;
        margin-top: 10px;
        font-size: 14px;
        margin-bottom: 15px;
        letter-spacing: 0.075em;
        line-height: 1;
    }
    .sofisticatedproducts-1:hover img, 
    .sofisticatedproducts-2:hover img {
        transform: scale(1); 
    }
    .sofisticatedproducts-1:hover .image-wrapper::before, 
    .sofisticatedproducts-2:hover .image-wrapper::before {
        opacity: 0;
    }
    .call-to-action {
        display: flex;
        text-transform: uppercase;
        justify-content: center;
        align-items: center;
        gap: 3px;
        font-size: 16px;
        font-weight: 530;
        line-height: 24px;
        position: relative;
        text-decoration: none;
        color: black;
        border-color: black;
        width: fit-content;
        cursor: pointer;
        text-transform: uppercase;
        line-height: 1.7;
        letter-spacing: 0.075em;
        font-size: 14px;
    }
    .sofisticatedproducts {
        gap: 60px;
    }
    .ourprojects {
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        padding-top: 0px;
        position: relative;
    }
    .ourprojects-title {
        padding-top: 20px;
        margin-bottom: 10px;
    }
    .ourclients h2, .ourprojects-title h2 ,.customer-reviews .title h2{
        margin-bottom: 20px;
        text-align: center;
        font-size: 1em;
    } 
    .project {
        padding-top: 0px;
        flex-direction: column;
        gap: 10px; 
        height: max-content;
    }
    .project .project-description {
        text-align: center;
    }
    .project .project-description h2 {
        
        font-weight: normal;
        margin: 0;
        font-size: 25px;
        margin-bottom: 5px;
        font-weight: 400;
        line-height: 1.25em;
        letter-spacing: 0.075em;
    }
    .project .project-description .description {
        font-size: 1em;
        line-height: 1.25em;
        letter-spacing: 0.075em;
        margin-bottom: 8px;
    }
    .project .image-container {
        flex: 0 0 60%;
        max-height: 280px;
        min-height: 280px;
    }
    .project .image-container {
        border-radius: 0px 30px 0px 30px;
    }
    .project .image-container img{
        min-height: 280px;
    }
    .customer-reviews {
        padding: 20px 10px;
        padding-top: 0;
    }
    .review-card .image-container {
        width: 120px;
        height: 120px;
    }
    .review-container{
        font-size: 14px;
        padding-bottom: 20px;
    }
    .ourclients {
        padding: 10px;
    }
    .client-logo {
        width: 80px;
        height: 80px;
        justify-content: center;
    }
    .ourclients .owl-item{
        display: flex;
        justify-content: center;
        margin-right: 10px;

    }
    footer {
        padding:0;
    }
    footer .container {
        padding: 0;
    }
    .footer-content > div {
        flex: 1 1;
        padding: 0 10px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .footer-logo-large{
        display: none;
    }
    .footer-logo-mobile{
        display: block;
    }
    .footer-content h3 {
        font-size: 18px;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .footer-contact-items iframe{
        margin-top: 20px;
    }
    .footer-bottom {
        padding-top: 0px;
    }
    #scrollToTopBtn svg{
        width: 16px;
        height: 16px;
    }
    #scrollToTopBtn.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #scrollToTopBtn {
        padding:13px 12px;
    }
    .loading-animation img {
        width: 30px;
    }
    .rotating-circle {
        width: 70px;
        height: 70px;
        border: 3px solid transparent;
        border-top: 3px solid rgb(115, 114, 114);
        border-left: 3px solid rgb(115, 114, 114);
    }
    .nav-overlay{
        position: fixed;
        opacity: 0; 
        visibility: hidden;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        content: "";
        background: rgba(0, 0, 0, 0.6);
        z-index: 99991;
        transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out; 
        min-height: 100vh;
    }
    
    .nav-overlay.active {
        opacity: 1; 
        visibility: visible;
    }
    
    #side-bar-content{
        width: 100%;
        max-width: 325px;
        left: 0;
        right: auto;
        padding: 0;
        flex: 1;
        position: absolute;
        overflow-y: auto;
        background-color: rgba(255,255,255,1);
        color: rgba(0,0,0,1);
        transform: translateX(-100%); 
        transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); 
        height: 100%;
    }
    
    .nav-overlay.active #side-bar-content { 
        transform: translateX(0); 
    }
    .side-bar-image{
        padding: 18px 18px;
        text-align: center;
        border-bottom: 1px solid rgba(235,235,235,1);
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
    }
    .side-bar-image img{
        height: 25px;
        width: 140px;
    }
    #nav-links-mobile {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
    }
    #nav-links-mobile li{
        margin: 0;
        padding: 10px 20px;
        list-style: none;
        display: block;
        float: none;
        position: static;
        line-height: 24px;
    }
    #nav-links-mobile li a{
        padding: 10px 0;
        line-height: 24px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        position: relative;
    }
    #nav-links-mobile li.active a {
        color: rgba(209,2,2,1);
    }
    .nav-bar-small-screens.fixed-top { 
        position: fixed;
        width: -webkit-fill-available;
        z-index: 1000; 
        background-color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
        animation-duration: 300ms;
        animation-fill-mode: both;
        animation-name: mySticky;
        -webkit-backface-visibility: hidden;
    }
    #menu-toggle {
        width: 40px;
    }
    .nav-icons svg {
        width: 20px;
        height: 24px;
    }
}
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    
}

.floating-contact-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-contact-button:hover {
    transform: scale(1.1);
}

.floating-contact-button.whatsapp {
    background-color: #25D366;
    color: white;
}

.floating-contact-button.call {
    background-color: #007bff;
    color: white;
}

.floating-contact-button i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 20px;
        bottom:80px;
    }
    
    .floating-contact-button,#scrollToTopBtn.show {
        width: 45px;
        height: 45px;
    }
    
}
