@font-face {
    font-family: baloo;
    src: url(fonts/Baloo2-VariableFont_wght.woff2);
} 
@font-face {
    font-family: "Indie Flower";
    src: url("fonts/IndieFlower-Regular.woff2");
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'bubbles';
    scroll-behavior: smooth;
   

}

::selection {
    background: #513026;
    color: #fefefe;
}

::-webkit-scrollbar {
    width: 1vw;
}

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

::-webkit-scrollbar-thumb {
    background-color: #62382F;
    border-radius: 10px;
    border: 3px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #36150B;
}

li {
    list-style-type: none;
}
.loader{
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
}
.loader h1{
    font-size: 3rem;
    color: #0a0101;
    overflow: hidden;
    height: 90px;
    text-align: center;
}
.loader h1 span{
    position: relative;
    display: inline-block;
}
.bg-loader{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #F0EBE3;
    z-index: -9;
}

li {
    list-style-type: none;
}

a {
    color: #232323;
    text-decoration: none;
}

#main {
    position: relative;
}

/* navbar */

/* Add smooth scrolling to all links */
html {
    scroll-behavior: smooth;
}

.navbar {
    transition: background-color 1s, padding 1s;
}

.navbar.scrolled {
    background-color: #333;
    color: white;
}

.home-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home-content.visible {
    opacity: 1;
}


.navbar {
    display: flex;
    justify-content: center;
    
  }
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  li {
    margin: 0 15px;
  }
  a {
    text-decoration: none;
    color: black;
  }

nav {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 3rem 2rem;
    z-index: 999;
    
}

.links {
    width: 100vw;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.links li {
    position: relative;
    mix-blend-mode: difference;
}

.links a {
    color: #2A2A2A;
}

.links li::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: #513026;
    top: 110%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.links li:hover:before {
    transform: scaleX(1);
}


#nav-open,
#nav-close {
    display: none;
}

.home {
    width: 100%;
    height: 100%;
}

.logo img {
    width: 10rem;
}

/* dropdown */
.dropdown {
    background-image: url(assets/dropdown1.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
    position: absolute;
    top: -50vw;
    width: 100%;
    height: 26vw;
    background-color: #22092C;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.menu-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0vw 2vw;
    line-height: 2vw;
}

.menu-row li {
    color: #f5f2f2;
    line-height: 2.7vw;
    cursor: pointer;
    font-size: 1vw;
    transition: color 0.3s ease-in-out;
}

.menu-row li:hover {
    color: #fff;
}

#menu-heading {
    position: relative;
    font-size: 1.3vw;
    font-weight: 500;
    color: #fff;
}

#menu-heading::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #fff;
    top: 80%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#menu-heading:hover:before {
    transform: scaleX(1);
}
/* CSS Animations */
@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Applying animations */
  .navbar {
    animation: slideInFromTop 1s ease-out;
  }
  
  .home-content .left-home {
    animation: slideInFromLeft 1s ease-out;
  }
  
  .home-content .right-home {
    animation: slideInFromRight 1s ease-out;
  }
  
  .btn {
    animation: fadeIn 2s ease-in;
  }
  
  
/* home-content */

.home-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    background: url(./assets/img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.left-home {
    position: relative;
    top: -25%;
    width: 100%;
    height: 100%;
    left: 2%;
    padding: 2vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.left-home h1 {
    position: relative;
    font-size: 4vw;
    font-family: 'baloo';
    font-weight: 600;
    line-height: 5vw;
    color: #17153B;
    overflow: hidden;
}

.left-home h1 span {
    position: relative;
    display: inline-block;
}

.home-img-text img {
    position: relative;
    width: 10vw;
    top: 1vw;
}

.btn {
    width: 9vw;
    height: 3.5vw;
    background-color: #0e0b20;
    font-family: inherit;
    margin-top: 2vw;
    position: relative;
    overflow: hidden;
    border: 1px solid #C8ACD6;
    transition: color .5s;
    padding: 1vw 1.5vw;
    z-index: 1;
    font-size: 1vw;
    border-radius: 1vw;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff6dd;
    height: 100%;
    width: 100%;
    border-radius: 100%;
}

.btn:hover {
    color: #513026;
}

.btn:before {
    top: 100%;
    left: 0;
    transition: all .7s;
}

.btn:hover:before {
    top: 0;
    border-radius: 0;
}

.right-home {
    position: relative;
    display: flex;
    align-items: center;
    top: -7%;
    gap: 2vw;
    width: 50%;
    height: 100%;
}

.home-img {
    position: relative;
    height: 40rem;
    top: -1vw;
}

img.home-beans {
    top: 65vh;
    left: 0;
    position: absolute;
    width: 50vh;
    padding: 1vw 2vw;
}
.small {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scrolling-images {
    display: flex;
    animation: scroll 10s linear infinite;
}

.scrolling-images img {
    transition: transform 0.s ease-in-out;
}

.scrolling-images img:hover {
    transform: scale(1.2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* sec-1 */

.sec-1 {
    position: relative;
    width: 100%;
    margin-top: 30px;
    height: 25rem;
    background-image: url(assets/Furniture.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.sec-1 h1 {
    font-size: 4vw;
    font-family: 'baloo';
    color: #36150B;
}

.sec-1 p {
    font-size: 1vw;
    width: 80%;
}
/* sec*/
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}
.container p {
    flex: 1;
    margin: 0;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}
.container p {
    flex: 1;
    margin: 0;
}
.abc  {
    text-align: center;
    margin-bottom: 20px;
}
/* Add initial state for sliding animation */
.container {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  /* Add animation class */
  .animated {
    opacity: 1;
    transform: translateX(0);
  }
  
/* sec-2 */
.sec-2 {
    width: 100%;
    height: 100%;
    margin-top: 2vw;
    background-color: #f0f0f0;
    background-size: cover;
    background-repeat: no-repeat;
}


.body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    background-color: #f0f0f0;
}

.carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    width: calc(100% * 10);
    animation: scroll 190s linear infinite;
}

.carousel-track img {
    width: 2%
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* highlight */

.highlight-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-top: 2vw;
}

.highlight {
    width: 20%;
    height: 25vw;
    position: relative;
    background-color: #FFFBB3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1vw 2vw;
    border-radius: 20px;
    overflow: hidden;
}

.highlight-content {
    position: absolute;
    padding: 1vw 2vw;
    color: #9E533B;
    transform: translateY(20vw);
    transition: all 0.5s ease-in-out;
}

.highlight-content h1 {
    font-size: 2vw;
    line-height: 2vw;
    font-family: 'baloo';
}

.highlight-content p {
    font-size: 1vw;
}

.image-highlights img {
    height: 18vw;
    transition: all 0.5s ease;
}


.highlight:hover .image-highlights img {
    transform: translateY(-30%);
    height: 15vw;
}

.highlight:hover .highlight-content {
    transform: translateY(55%);
}

.two-high:hover .highlight-content {
    transform: translateY(80%);
}

.one-high,
.four-high {
    width: 30vw;
}

.two-container {
    margin-top: 2vw;
}

.three-high:hover .highlight-content {
    transform: translateY(75%);
}



.four-high:hover .highlight-content {
    transform: translateY(75%);
}


/* section 3 */


.sec-3 {
    width: 100%;
    height: 100%;
    margin-top: 5vw;
}

#heading {
    text-align: center;
    margin-top: 2vw;
    font-family: 'baloo';
    font-size: 4vw;
    color: #36150B;
    padding: 0 2vw;
}

.sec-3 #heading {
    text-align: left;
    padding: 0 5vw;
}

.sec-3-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2vw;
}

.left-sec-3 {
    position: relative;
    width: 50%;
    height: 100%;
    left: 4%;
}

.left-sec-3 img {
    width: 70%;
}

.right-sec-3 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.right-sec-3 h1 {
    font-family: 'baloo';
    font-size: 3.5vw;
}

.right-sec-3 p {
    font-size: 1.1vw;
    line-height: 1.5vw;
    color: #62382F;
    width: 80%;
}

/* section 4 */

/* .product{
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230vh;
    margin: 0;
    background-color: #f0f0f0;
} */

.product {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-left: 30px;
}

.card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 400px;
    height: 400px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.card-front {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-front img {
    width: 100%;
    height: auto;
}

.card-back {
    background-color: rgb(214, 210, 210);
    color: rgb(0, 0, 0);
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 18px;
    border-radius: 10px;
}

/* section 5 */
.sec-5 {
    width: 100%;
    height: 100%;
    margin-top: 2vw;
}

.heading-scroller {
    width: 100%;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee {
    font-family: 'baloo';
    font-size: 4vw;
    color: #36150B;
    transform: translateX(-100%);
}

.making-container {
    position: relative;
    margin-top: 2vw;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    padding: 2vw;
}

.making {
    width: 22vw;
    height: 27vw;
    perspective: 1000px;
}

.making-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s;
}

.making:hover .making-inner {
    transform: rotateY(180deg);
}

.front-making,
.back-making {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1vw;
    background-color: #98B3BE;
    overflow: hidden;
}

.front-making {
    color: #fff;
    transform: rotateY(0deg);
}

.back-making {
    color: #fff;
    flex-direction: column;
    transform: rotateY(180deg);
}

#number-making {
    position: absolute;
    font-size: 20vw;
    color: #728B9A;
    z-index: -999;
}

.front-making h1 {
    font-size: 3vw;
    color: #0D3763;
}

.back-making p {
    font-size: 1.2vw;
    padding: 0.7vw;
}

.back-making img {
    width: 80%;
}

.arrow img {
    width: 20vw;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
  }
  
  .bounce {
    animation: bounce 2s infinite;
  }
  

/* section 6 */
.sec-6 {
    margin-top: 2vw;
    width: 100%;
    height: 100%;
    /* background-image: url(assets/tiggle-special-bg.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1vw;
}
.main-nav {
    display: flex;
    justify-content: space-around;
    background-color: #e6e2e2;
    padding: 5px;
    font-size: 20px;
}
.main-nav a {
  
    text-decoration: none;
    padding: 0.5rem 1rem;
}
.main-nav a:hover {
    
    color: rgb(82, 80, 80);
}
.collection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.item {
    width: 30%;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 2px 2px 12px #aaa;
    margin-bottom: 20px;
}
.item img {
    width: 100%;
    height: auto;
}
.description {
    padding: 10px 0;
}
/* hub */
.hub {
    overflow: hidden;
}
.college {
    display: flex;
    justify-content: center;
    align-items: center;
}
.college img {
    width: 100%;
    height: auto;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* root  */
.root{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.furniture-item {
    
    width: 40%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    padding: 10px;
    border: 1px solid #ccc; 
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}
.furniture-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.furniture-description {
    margin-top: 10px;
}
.rot {
    position: relative;
    overflow: hidden;
}

.furniture-item {
    position: relative;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    transition: clip-path 0.5s ease-out;
}

.furniture-item img {
    display: block;
    width: 100%;
    height: auto;
}

.furniture-item:hover {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}

.furniture-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.5s ease-out;
}

.furniture-item:hover .furniture-description {
    clip-path: inset(0 0 0 0);
}

/* Animation for the whole section */
.sec-6 {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

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

/* Animation for each item */
.collection .item {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Keyframes for slide-in effect */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for each item */
.collection .item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add a color overlay on hover */
.collection .item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 153, 214, 0.5); /* Adjust color and opacity as needed */
    z-index: 1;
    transition: background-color 0.3s ease;
}

/* Ensure text stays above overlay */
.collection .item .description {
    position: relative;
    z-index: 2;
}
     .zoom-container {
            overflow: hidden; /* Ensures the zoom effect does not overflow its container */
        }

        .zoom-container img {
            width: 100%; /* Adjust the width as needed */
            height: auto; /* Maintain aspect ratio */
            transition: transform 0.5s ease; /* Smooth zoom effect */
        }

        .zoom-container:hover img {
            transform: scale(1.2); /* Scale image to 120% of its original size */
        }
/* section 7 */

.sec-7 {
    width: 100%;
    height: 100%;
    margin-top: 2vw;
}

.sec-7 #heading {
    text-align: center;
}

.aso-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5vw;
    padding: 2vw;
}

.row-1 {
    display: flex;
    gap: 3vw;
}

.row-2 {
    display: flex;
    gap: 5vw;
}

.row-1 img {
    height: 4vw;
}

.row-2 img {
    height: 7vw;
}


/* footer */

.cpyrght {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2vw;
}

/* back to top */
#backtotopbtn {
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    padding: 1vw;
    background-color: #ffffff;
    box-shadow: 0 0 5px #010101;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backtotopsvg {
    transform: rotate(180deg);
}

#backtotopbtn:hover {
    background-color: #efefef;
}

/* media queries */

@media (max-width: 1244px) {
    .product {
        width: 30rem;
        height: 30rem;
    }

    .content {
        font-size: 1.2rem;
    }
}

@media (max-width: 1001px) {
    .left-home h1 {
        font-size: 6vw;
        line-height: 6vw;
    }

    .home-img {
        height: 50vw;
        top: -1vw;
        right: 20%;
    }

    .right-home {
        width: 37%;
    }

    img.home-beans {
        width: 35vw;
    }

    .btn {
        width: 11vw;
        height: 4.5vw;
        font-size: 1.2vw;
    }

    /* special */
    .sec-1 h1 {
        font-size: 5vw;
    }

    .sec-1 p {
        font-size: 1.1vw;
        width: 90%;
    }
}

@media (max-width: 1067px) {

    .product-container {
        justify-content: center;
    }
}

@media (max-width: 951px) {
    .footer-container {
        width: 100%;
        height: 30vw;
    }

    .footer h2 {
        font-size: 2vw;
    }

    .footer li {
        font-size: 1.4vw;
        line-height: 2.5vw;
    }

    .insta img {
        width: 28%;
    }

    img.insta-logo {
        width: 6%;
    }

    .cpyrght {
        font-size: 1.8vw;
    }
}

@media (max-width: 851px) {
    .dropdown {
        height: 30vw;
    }

    .menu-row {
        padding: 0vw 2vw;
        line-height: 2vw;
    }

    .menu-row li {
        line-height: 3.2vw;
        font-size: 1.3vw;
        font-weight: 100;
    }

    #menu-heading {
        font-size: 1.6vw;
        font-weight: 500;
    }

    /* about best seller */
    .right-sec-3 h1 {
        font-size: 3.7vw;
    }

    .right-sec-3 p {
        font-size: 2vw;
        line-height: 1.9vw;
    }

    /* heading */
    #heading,
    .marquee {
        font-size: 5vw;
    }

    /* story */
    .story {
        width: 33vw;
        height: 16vw;
        padding: 2vw;
        border-radius: 1.5vw;
        font-size: 1.3vw;
    }

    .story p {
        line-height: 1.8vw;
    }

    .story h2 {
        font-size: 1.7vw;
    }

    #text {
        line-height: 1.8vw;
    }

    /* as seen on */
    .row-1 img {
        height: 5vw;
    }

    .row-2 img {
        height: 8vw;
    }
}

@media (max-width: 701px) {
    .dropdown {
        display: none;
    }

    .links {
        display: none;
    }

    nav {
        display: flex;
        justify-content: space-between;
    }

    .nav-partition {
        display: none;
    }

    #nav-open,
    #nav-close {
        display: block;
    }

    .links {
        position: absolute;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        font-size: 2rem;
        padding: 0 5vw;
        backdrop-filter: blur(5px);
        top: 0;
        right: -100%;
        height: 100vh;
        background-color: #513026be;
        width: 80%;
        z-index: 9999;
    }

    #nav-close {
        position: absolute;
        right: 10%;
        top: 5%;
    }

    .cursor-follower {
        display: none;
    }

    .links li::before {
        background-color: #fff;
    }

    .links a li {
        color: #fff;
    }

    .links li {
        transform: translate(100px, 40px);
        opacity: 0;
    }

    #dropdown-btn {
        display: none;
    }

    #nav-bag {
        stroke: #fff;
        width: 40px;
        height: 40px;
        right: 0;
    }

    .highlight {
        width: 28%;
        height: 30vw;
        padding: 1vw 2vw;
        border-radius: 15px;
    }

    .one-high,
    .four-high {
        width: 40vw;
    }

    .highlight-content h1 {
        font-size: 4vw;
        line-height: 4vw;
    }

    .highlight-content p {
        font-size: 1.2vw;
    }

    /* backtotop */
    #backtotopsvg {
        width: 20px;
        height: 20px;
    }
    
    .loader h1{
        font-size: 2rem;
    }
}

@media (min-width: 701px) {

    #nav-bag {
        stroke: #2A2A2A;
    }
}

@media (max-width: 601px) {
    .home-content {
        flex-direction: column;
        align-items: center;
    }

    .left-home {
        width: 100%;
        top: 0;
        text-align: left;
    }

    .left-home h1 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .home-img-text img {
        width: 5.5rem;
    }

    .right-home {
        width: 35%;
        top: -5%;
    }

    img.home-beans {
        display: none;
    }

    .home-img {
        height: 20rem;
        top: -1vw;
        right: 20%;
    }

    .btn {
        width: 11vw;
        height: 5vw;
        font-size: 1.3vw;
        border-radius: 1vw;
    }

    .home-content .btn {
        width: 5rem;
        height: 2rem;
        font-size: 0.6rem;
        border-radius: 5px;
    }

    /* special */
    .sec-1 {
        height: 10rem;
    }

    .sec-1 h1 {
        font-size: 6vw;
    }

    .sec-1 p {
        font-size: 0.4rem;
        width: 80%;
    }

    /* about best seller */
    .sec-3-container {
        flex-direction: column;
    }

    .sec-3 #heading {
        text-align: center;
    }

    .right-sec-3,
    .left-sec-3 {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-sec-3 {
        left: 0;
    }

    .left-sec-3 img {
        width: 65%;
    }

    .right-sec-3 h1 {
        font-size: 6vw;
    }

    .right-sec-3 p {
        font-size: 1.8vw;
        line-height: 2.5vw;
        width: 90%;
    }

    .right-sec-3 .btn {
        width: 13vw;
        height: 6vw;
        font-size: 1.5vw;
    }

    nav {
        padding: 2.5rem 1.5rem;
    }

    /* story */
    .story-child-container {
        flex-direction: column;
    }

    .story {
        width: 15rem;
    }

    .story h2 {
        font-size: 0.7rem;
    }

    .story p {
        font-size: 0.4rem;
        line-height: 0.5rem;
    }
}

@media (max-width: 551px) {
    .product {
        width: 22rem;
        height: 22rem;
    }

    .content {
        font-size: 1rem;
    }

    .product svg {

        width: 15%;
        height: 15%;
    }

    #heading,
    .marquee {
        font-size: 7vw;
    }
}
/* footer// */
/*  */

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #c3b0b0;
    font-size: 32px; /* Increased font size */
    transition: color 0.3s;
}

.social-icons a.facebook:hover {
    color: #3b5998; /* Facebook color */
}

.social-icons a.twitter:hover {
    color: #1da1f2; /* Twitter color */
}

.social-icons a.instagram:hover {
    color: #e4405f; /* Instagram color */
}

.social-icons a.linkedin:hover {
    color: #0077b5; /* LinkedIn color */
}

.social-icons a.pinterest:hover {
    color: #bd081c; /* Pinterest color */
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #121111;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-image: url(./assets/Furniture.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    height: 52vh;
}
.footer-section {
    flex: 1;
    margin: 0 10px;
}
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #c3b0b0;
    font-size: 32px; /* Increased font size */
    transition: color 0.3s;
}

.social-icons a.facebook:hover {
    color: #3b5998; /* Facebook color */
}

.social-icons a.twitter:hover {
    color: #1da1f2; /* Twitter color */
}

.social-icons a.instagram:hover {
    color: #e4405f; /* Instagram color */
}

.social-icons a.linkedin:hover {
    color: #0077b5; /* LinkedIn color */
}

.social-icons a.pinterest:hover {
    color: #bd081c; /* Pinterest color */
}

.footer-page{
display: flex;
flex-direction: row; 
}
li{
display: flex;

}

.container-b{
height: 60px;
background-color: #9e9a9a7a;
margin: 0px;
}
h5{
align-items: center;
text-align: center;
padding-top: 15px;
}
/* footer end */