@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Concert+One&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
     font-family: 'Merriweather', serif;
}


.row {
    margin-left: 0;
    margin-right: 0;
}

p,
h6,
ul {
    padding: 0;
    margin: 0;
}

.bg-brand {
    background-color: #fff6ec;
}

.brand-text {
    color: #d37034;
}

.bgcolor-dark {
    background-color: #d37034;
}

.brand_logo img {
    width: 140px;
    cursor: pointer;
}




/* header css end  */


/* navbar css start  */
.cstm_nav {
    align-items: center;
}

.cstm_nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    overflow: hidden;
    transition: color 0.3s ease;
}

.cstm_nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(211, 112, 52, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
    transform: translateX(-50%);
}

.cstm_nav .nav-link:hover::before {
    width: 120%;
}

.cstm_nav .nav-link:hover {
    color: #bca37d;
}

.cstm_nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #bca37d;
    z-index: 1;
}

.cstm_nav .nav-link.active {
    color: #bca37d !important;
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    color: rgb(0, 0, 0);
    text-decoration: none;
    background-color: #bca37d;
}

.cstm_nav .nav-link:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.cstm_navbar {
    background: #ffffff !important;
    border-bottom: 2px solid #E1d3B8;
    height: 75px;
}

.cstm_nav li a {
    color: #000000 !important;
    padding: 5px 14px !important;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;

}

.cstm_nav li a:active {
    color: #fff !important;
    background-color: #bca37d;
}

.cstm_nav li a:focus {
    color: #fff !important;
    background-color: #bca37d;
}


.cstm_nav li a:hover {
    color: #bca37d !important;
    transition: color 0.3s ease;
}
.dropdown-item{
    color: #fff !important;
}
.dropdown-item {
    position: relative;
    overflow: hidden;
}

.dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff; /* Line color */
    transition: width 0.3s ease;
}

.dropdown-item:hover::after {
    width: 100%;
}

.dropdown-item:hover {
    color: #fff !important;
    background-color: transparent !important;    
    transition: background-color 0.3s ease, color 0.3s ease;
}


.full-width-dropdown .border-end {
    border-right: 5px solid #666;
    /* or your desired color */
}

/* .full-width-dropdown .dropdown-item {
    white-space: nowrap;
} */

/* @media (max-width: 991px) {
    .full-width-dropdown .border-end {
        border-right: none;
    }
} */



.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    background-color: #ffffff !important;
    color: rgb(0, 0, 0);
    width: 1050px !important;
}

@media (max-width: 800px) {
    .dropdown-menu {
        width: 500px !important;
    }
}

@media (max-width: 500px) {
    .dropdown-menu {
        width: 240px !important;
    }
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.navbar-toggler {
    border: none !important;
    color: transparent !important;
    background-color: transparent;
}


.active-toggler {
    background-color: transparent !important;
}

.navbar_logo {
    /* display: none; */
}

.navbar-nav {
    font-size: 14px;
}

.navbar-toggler {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.custom-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #d37034;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d37034;
    transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before {
    top: -8px;
}

.custom-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


@media (max-width: 1080px) {
    .navbar_logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80px;
        margin-right: auto;
    }

    .top_header {
        display: none;
    }

    .navbar-nav {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #222;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease-in-out;
        padding: 20px;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        font-size: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 0;
        color: #fff !important;
    }

    .navbar-toggler {
        border: none !important;
        background: transparent;
    }

    .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%28255, 255, 255, 1%27 stroke-width%3D%272%27 stroke-linecap%3D%27round%27 stroke-miterlimit%3D%2710%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
    }

    .cstm_navbar {
        height: 60px;
    }

    .cstm_nav {
        align-items: start;
    }
}


/* slide button design  start*/
.slide-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: white;
    font-weight: 600;
    z-index: 0;
    transition: transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.slide-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e1d3b8;
    z-index: -2;
    border-radius: inherit;
}

.slide-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    background: #e1d3b8;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(.2, .9, .2, 1);
    z-index: -1;
    border-radius: inherit;
}

.slide-btn:hover::after,
.slide-btn:focus::after {
    transform: translateX(0);
}

.slide-btn .label,
.slide-btn .ico {
    position: relative;
    z-index: 1;
    color: black !important;
}

.slide-btn .ico {
    display: inline-block;
    margin-left: 10px;
    transform: translateX(-4px);
    transition: transform .25s ease;
}

.slide-btn:hover .ico {
    transform: translateX(4px);
}



/* slide button end  */

/* navbar css end  */


/* main-hero section start css  */
/* Main Hero Section Background */
.main-hero {
    position: relative;
    /* background: url('../img/emanolffrmsrirhmwpru.webp') no-repeat center center/cover; */
    min-height: 100vh;
    overflow: hidden;
}

.main-hero .main-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    /* black shadow overlay */
    z-index: 1;
}

.main-hero {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.main-hero .container {
    z-index: 2;
    position: relative;
     max-width: 100% !important;
  width: 80% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
    
}

/* Room Boxes */
.room-box {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.room-box:hover {
    transform: scale(1.05);
}

.room-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* box overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.room-box:hover .room-box-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.room-title {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* main-hero section start end */


/* banner secction css start  */
.banner-section {
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-overlay {
    z-index: 2;
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 300px;
    }

    .banner-img {
        height: 100vh;
    }
}



@media (max-width: 768px) {
    .banner-section {
        min-height: 300px;
    }

    .banner-img {
        height: 100vh;
    }

}

/* banner secction css end  */

/* top main section css start  */
.video-hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(32, 22, 14, 0.45); */
    /* dark overlay, for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-btn {
    border-width: 2px;
    border-radius: 0;
    font-family: serif;
    font-size: 1rem;
    background: transparent;
    color: #fff;
    transition: background 0.25s, transform 0.25s;
}

.hero-btn:hover {
    background: #20160e;
    color: #fff;
    transform: translateY(-3px);
}

/* top main section css start  */


/* Classic Mahogany Furniture section css start  */
.classic_section {
    background-color: #ffffff;
}

.classic_line {
    width: 700px;
    height: auto;
    margin: auto;
}

.classic_line img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .classic_line {
        width: 300px;
        height: auto;
    }

    .classic_line img {
        width: 100%;
        height: auto;
    }
}

.custom-card {
    position: relative;
    height: 300px;
    border-radius: 0.3rem;
    overflow: hidden;
    font-family: serif;
    color: white;
}

.custom-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.092);
    z-index: 1;
}

.custom-card-text {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.custom-card-text h3 {
    margin-bottom: 0.8rem;
    font-weight: normal;
    font-size: 2rem;
}

.custom-card-text p {
    font-weight: 300;
    font-size: 1rem;
    margin: 0;
}

/* Classic Mahogany Furniture section css end  */


/* Production section start */
.production_section {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-align: center;
}

.play-btn-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseBtn 1.4s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

#video-thumbnail {
    max-height: 500px;
    overflow: hidden;
}

#video-thumbnail img {
    height: 100% !important;
    width: 100%;
}

#video-embed {
    max-height: 500px;
    overflow: hidden;
}

#video-embed iframe {
    height: 100% !important;
    width: 100%;
}

/* Production section end */



/* Timeless section css start  */

.hero-section {
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: url('../img/background.png') center center/cover no-repeat; */
    background-color: #e1d3b8;
    z-index: 1;
}

.hero-section>div {
    position: relative;
    z-index: 2;
}

.hero-btn {
    background: #20160e;
    color: #fff;
    border: none;
    font-size: 1.15rem;
    border-radius: 0;
    transition: background 0.25s, transform 0.25s;
    padding: 18px 85px;
}

.hero-btn:hover {
    background: #20160e;
    color: #fff;
    transform: translateY(-5px);
}


/* Timeless section css end */

/* Contact Info section css start  */
.contact_info_section {
    background: #ffffff;
    color: #000000;
    padding: 50px 0;
}

.contact_info_section h5 {
    font-weight: bold;
    margin-top: 15px;
}

.contact_info_section p {
    color: #000000;
    margin: 15px 0;
}

.custom-btn {
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 40px;
    font-size: 14px;
    background: black;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.custom-btn a {
    color: #fff;

}

.custom-btn:hover a {
    color: #1b120c !important;
}

.learnMore {
    text-decoration: none !important;
    color: #ffffff;
}

.custom-btn:hover {
       background-color: #e1d3b8 !important;
    color: #1b120c !important;
}

.custom-btn:hover {
    background: #fff;
    color: #1b120c !important;
}

.custom-btn:hover .learnMore {
    color: #1b120c !important;
}

.icon-style {
    font-size: 35px;
    margin-bottom: 15px;
    color: #000000;
}

/* Contact Info section css end */


/* accessories_section section css start   */
.accessories_section {
    background-color: #ffffff;
}

.custom_card_accessories {
    /* background: url('../img/background.png') no-repeat center center/cover; */
    background-color: #e1d3b8;
    color: #000000;
    border: none;
    padding: 30px;
    border-radius: 0;
}

.custom_card_accessories img {
    width: 100%;
    border-radius: 0;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 1px 0 10px;
    color: #000000;
    text-align: center;
}

.card-text {
    /* color: #e5e5e5; */
    text-align: center;
    font-size: 18px;
}

/* accessories_section section css end   */



/* FAQ Section css start  */

.fq {
    background-color: white !important;
}
.faq_section {
    background-color: #ffffff;
    color: #000 !important;
}

.accordion-collapse {
    color: #a68952 !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 2px #e1d3b8 !important;
    border-color: #e1d3b8 !important;
}

.faq_contant {
    background-color: #ffffff;
    color: #000;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
}

/* Default accordion button */
.accordion-button {
    background-color: transparent;
    color: white;
}

/* Arrow color default */
.accordion-button::after {
    filter: brightness(0) invert(1);
    /* makes arrow white */
}

/* When collapsed (closed) */
.accordion-button.collapsed::after {
    filter: brightness(0) invert(0.5);
    /* dimmed arrow */
}

/* Active (opened) button text & arrow */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: white;
    box-shadow: none;
}


/* FAQ Section css end  */

/* Ready to Ship section css start  */
.ready_center {
   background-color: #e1d3b8;
}


.custom-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
    }

    .custom-img {
        height: 140px;
    }
}

/* Ready to Ship section css end */

/* social-section start css  */

.social-section {
    /* background: url('../img/Classic_2.jpg') no-repeat center center/cover; */
    padding: 10px 0;
}

.social-card {
    background: #ffffff;
    color: #000000;
    padding: 30px;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.social-card h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

.line_4 {
    width: 400px;
    height: auto;
    margin: auto;
}

.line_4 img {
    width: 100%;
    height: auto;
}


@media (max-width: 1024px) {
    .line_4 {
        width: 290px;
        height: auto;
        margin: auto;
    }

    .line_4 img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .line_4 {
        width: 250px;
        height: auto;
        margin: auto;
    }

    .line_4 img {
        width: 100%;
        height: auto;
    }
}

.social-card p {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 20px;
}

.social-btn {
    background: #e1d3b8;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 12px;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}

.social-btn i {
    margin-right: 8px;
}

.social-btn:hover {
    background: #20160e;
    color: #fff;
    transform: translateY(-5px);
}

/* social-section start end */

/* Get in Touch section css start   */

.get_section {
    background-color: #ffffff;
}

/* Get in Touch section css end */


/* footer section css start  */
.footer-section {
    border-top: 2px solid #e1d3b8;
    background-color: #ffffff;
    font-family: serif;
}

.footer-section a {
    position: relative;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 7px 0px;
}

.footer-section a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

/* footer section css end */

/* overlay section css start  */
.overlay-section {
    min-height: 60vh;
    position: relative;
    background: url('../img/Classic_2.jpg') center center/cover no-repeat;
    color: #000000;
    overflow: hidden;
}

.overlay-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(32, 22, 14, 0.409);
    /* dark overlay */
    z-index: 1;
}

.overlay-section>div {
    position: relative;
    z-index: 2;
}

.overlay-title {
    font-size: 3rem;
    font-family: serif;
    font-weight: 400;
}


.overlay-text {
    font-size: 1.3rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .overlay-title {
        font-size: 2rem;
    }

    .overlay-text {
        font-size: 1rem;
    }

    .overlay-hr {
        width: 80%;
    }
}

/* overlay section css end */

/* establishment_section css start  */

.establishment_section {
    background-color: #ffffff;
}

.Establishment_imgbox {
    width: 100%;
    height: 600px;
}

.Establishment_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.line_5 {
    width: 500px;
    height: auto;
}

.line_5 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


@media (max-width: 768px) {
    .line_5 {
        width: 300px;
        height: auto;
    }

    .line_5 img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 500px) {
    .line_5 {
        width: 260px;
        height: auto;
    }

    .line_5 img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}



.line_6 {
    width: 400px;
    height: auto;
}

.line_6 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


@media (max-width: 768px) {
    .line_6 {
        width: 300px;
        height: auto;
    }

    .line_6 img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 500px) {
    .line_6 {
        width: 260px;
        height: auto;
    }

    .line_6 img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* establishment_section css end */

/* order card section css start  */
.order_card_section {
    background-color: #ffffff;
}

/* order card section css end */

/* Production overlay section css start  */
.production_overlay {
    min-height: 70vh;
    position: relative;
    background: url('../img/Production_1.png') center center/cover no-repeat;
    font-family: serif;
    color: #fff;
    overflow: hidden;
}

.production_overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(32, 22, 14, 0.56);
    z-index: 1;
}

.production_overlay .content-wrapper {
    position: relative;
    z-index: 2;
    padding: 4vw 0;
}

.section-title {
    font-size: 2.6rem;
    font-family: serif;
    font-weight: 400;
}


.section-desc {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.production_btn {
    border-radius: 0;
    font-size: 1.09rem;
    padding: 20px 50px;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, border 0.25s, transform 0.21s;
    border-width: 2px;
}

.production_btn.filled {
    background: #e1d3b8;
    color: #20160e;
    border: 2px solid #fff;
}

.production_btn.filled:hover {
    background: #e1d3b8;
    color: #fff;
    transform: translateY(-4px);
}

.production_btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.production_btn.outline:hover {
    background: #20160e;
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .divider {
        width: 55%;
    }
}

/* Production overlay section css end */

/* blog-overlay-section css start  */
.blog-overlay-section {
    background: url('../img/blog_background.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.blog-overlay-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(32, 22, 14, 0.281);
    z-index: 1;
}

.blog-overlay-section .container {
    position: relative;
    z-index: 2;
}

.blog-title {
    font-size: 2.5rem;
    font-family: serif;
    font-weight: bold;
}

.blog-desc {
    font-size: 1.09rem;
    font-weight: 300;
    line-height: 1.6;
}

.subscribe-box {
    background: rgba(32, 22, 14, 0.78);
    border-radius: 8px;
    box-shadow: 0 4px 32px 0 rgba(32, 22, 14, 0.09);
}

.subscribe-input {
    background: #fff;
    border-radius: 4px;
}

.subscribe-btn {
    background: #bca37d;
    color: #20160e;
    font-family: serif;
    border-radius: 4px;
    border: none;
    font-weight: 500;
}

.subscribe-btn:hover {
    background: #a68952;
    color: #fff;
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 2rem;
    }

    .subscribe-box {
        margin-top: 2rem;
    }
}

/* blog-overlay-section css end */


/* blog_card_section css start  */
.blog_card_section {
    background-color: #242424;
    border: none;
    text-align: start;
    color: #FFF;
}

.blog_card {
    background: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog_card_imgbox {
    overflow: hidden;
}

.blog_card-img-top {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.blog_card-body {
    padding: 15px;
    position: relative;
}

.blog_card-title {
    color: #fff;
    font-size: 1.25rem;
    position: relative;
    transition: color 0.3s ease;
}

.blog_card:hover .blog_card-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #fff;
    margin-top: 5px;
    border-radius: 2px;
    transition: color 0.3s ease;
}

.blog_card:hover .blog_card-img-top {
    transform: translateY(-10px) scale(1.05);
}

/* Responsive: Mobile adjustments */
@media (max-width: 768px) {
    .blog_card {
        margin-bottom: 20px;
    }

    .blog_card-img-top {
        transform: none !important;
    }

    .blog_card-title::after {
        display: none;
    }

    .blog_card-title {
        font-size: 1.1rem;
    }

    .blog_card-text {
        font-size: 14px;
    }
}

.truncated {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* blog_card_section css end */

/* contact-hero section css start  */
.contact-hero {
    background: url("../img/Establishment_1.jpg") no-repeat center center/cover;
    position: relative;
    min-height: 60vh;
}

/* Dark overlay */
.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: white; */
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* contact-hero section css end   */

/* get_section_contact section css start  */
.get_section_contact {
    background-color: #ffffff;
}

/* get_section_contact section css end */


/* contact form section css start  */
.contact_from_section {
   
    background-color: #E1D3B8;

}

.custom-input {
    background: transparent;
    border: 2px solid black;
    color: black !important;
    border-radius: 20;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-input::placeholder {
    color: black;
}

.custom-input:focus,
.custom-input:hover {
    border-color: black;
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.025);
    color: #fff;
}

::placeholder {
    color: #fffdf9;
    opacity: 1;
}

/* contact form section css end */


/* sofas-overlay-section css start  */
.sofas-overlay-section {
    position: relative;
    width: 100%;
    min-height: 40vh;
    background: url('../img/blog_img/blog_5.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sofas-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 22, 14, 0.45);
    /* soft dark overlay */
}

.sofas-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.sofas-overlay-content h1 {
    color: #fff;
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .sofas-overlay-section {
        min-height: 110px;
    }

    .sofas-overlay-content h1 {
        font-size: 1.3rem;
    }
}

/* sofas-overlay-section css end */

/* LIVING ROOM section css start  */
.category-tab-btn {
    background: transparent;
    color: #000000;
    border: 2px solid #8d7c5a;
    margin-right: 10px;
    font-size: 1rem;
    padding: 0.7rem 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .5px;
    transition: background 0.2s, color 0.2s;

}

.category-tab-btn.active,
.category-tab-btn:hover {
    background: #8d7c5a;
    color: #000000;
}

.sidebar-nav {
    background: transparent;
    color: #dcc48c;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-nav .sidebar-title {
    color: #000000;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}


.sidebar-nav ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-nav li {
    margin-bottom: 7px;
    color: #000;
}

.sidebar-nav li>span {
    font-weight: 700;
    color: #dcc48c;
    margin-bottom: 8px;
    display: block;
}

.sidebar-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 0.97rem;
}

.sidebar-nav a:hover {
    color: #8d7c5a;
}

.bg-dark-cozy {
    background: #ffffff;
    min-height: 100vh;
    padding-top: 32px;
}
.card-product {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-product:hover {
    transform: translateY(-10px); /* Moves the card slightly up */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Optional: adds shadow on hover */
}

.card-product .card-img-container {
    overflow: hidden; /* Ensures zoomed image stays within bounds */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-product img {
    width: 100%;
    height: 330px !important;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.card-product:hover img {
    transform: scale(1.06); /* Zooms the image */
}

.card-product .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-product .card-text {
    font-size: 0.95rem;
    color: #dcc48c;
}

/* LIVING ROOM section css end  */

/* Entire card lifts on hover */
.card-link-wrapper:hover .card-product {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make sure the transition is smooth */
.card-product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image wrapper for zoom effect */
.card-img-wrapper {
    overflow: hidden;
}

/* Zoom the image on hover */
.card-product .card-img-top {
    transition: transform 0.4s ease;
}

.card-link-wrapper:hover .card-img-top {
    transform: scale(1.1);
}




/* @media (max-width: 768px) {
    .container, .container-sm {
        max-width: none !important;
    }
} */

.product_detail_section{
      background-color: #ffffff;
      color: #000000;
}
.addcart_product_more{
     background-color: #ffffff;
      color: #000000;
}
.border_bot{
    border-bottom: 2px solid #e1d3b8;
}
.darkcart_accordian{
     background-color: #ffffff;
      color: #000000;
}
.blog-post-section{
     background-color: #ffffff;
      color: #000000;
}
/* make sure sections don't flash before JS runs */
[data-animated-section] {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: none;
    /* GSAP will handle motion */
}

/* articlesection css start  */
.article_section{
      background-color: #ffffff;
      color: #000000;
}
.article-card-link {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px 0 rgba(0,0,0,.25);
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 400px;
}
.article-card-link:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px 0 rgba(0,0,0,.47);
  background: #ffffff;
}
.article-img {
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  min-height: 160px;
  max-height: 170px;
}
@media (max-width: 575px) {
  .article-img { min-height:90px; max-height:110px; }
  .article-card-link { min-height:250px; }
}

/* articlesection css end  */


/* addtocart accordian css start  */
  .custom-accordion .accordion-header {
    background: #ffffff;
    border: none;
    padding: 0;
  }

  .custom-accordion .accordion-button {
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    border: none;
    box-shadow: none;
    font-size: 1.10rem;
    padding-left: 2.2rem;
    position: relative;
  }

  .custom-accordion .accordion-button:after {
    filter: invert(75%);
  }

  .custom-accordion .accordion-body {
    background: #ffffff;
    color: #000000 !important;
    /* border-top: 1px solid #333; */
  }

  .accordion-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b89a59;
    font-size: 1.2rem;
  }

  .custom-accordion .accordion-item {
    border: none;
    border-bottom: 2px solid #fff;
    background: #232323;
  }
/* addtocart accordian css end */



/* addtocart dark accordian css start  */

  .custom-dark-accordion .accordion-item {
    background: #2e2823;
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    width: 700px;

  }
@media (max-width: 576px) {
   
  .custom-dark-accordion .accordion-item {  
    width: 300px;

  }
}
  .custom-dark-accordion .accordion-button {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border: none;
    box-shadow: none;
    border-radius: 8px !important;
    font-size: 1.08rem;
    padding-left: 2.1rem;
    transition: background 0.2s;
  }

  .custom-dark-accordion .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #000000;
    border-bottom: none;
  }

  .custom-dark-accordion .accordion-body {
    background: #ffffff;
    color: #000000;
    border-radius: 0 0 8px 8px;
    font-size: 1rem;
    font-family: 'Times New Roman', serif;
  }

  .accordion-custom-icon {
    position: absolute;
    left: 15px;
    color: #b89a59;
    font-size: 1.15rem;
  }

/* addtocart dark accordian css end */


/* addtocart thumbnail img  */
.img-thumbnail {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  width: 120px;
  height: auto;
}

/* 🔥 Hide image if src is missing or broken */
.img-thumbnail:not([src]), 
.img-thumbnail[src=""], 
.img-thumbnail[src="null"], 
.img-thumbnail[src="undefined"] {
  display: none !important;
}


@media (max-width: 576px) {
   
  .img-thumbnail {  
    width: 90px;

  }
}
/* addtocart thumbnail img  */