p{
	margin:0 !important;
}

/* home page scroll section start  */
.scroll-section-container {
     width: 100%;
     overflow: hidden;
     position: relative;
 }
 
 .scroll-section-track {
     display: flex;
     align-items: center;
     width: max-content;
     gap: 40px;
     will-change: transform;
 }

 .scroll-section-contain {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-shrink: 0;
 }

 .scroll-section-titel {
     font-size: 24px;
     line-height: 32px;
     font-weight: 500;
     color: #030302;
     font-family: "Fahkwang", Sans-serif;
     white-space: nowrap;
 }

/* home page scroll section end  */


.button-with-icon svg {
    width: 20px;
}
.button-with-icon.elementor-widget.elementor-widget-button svg {
    width: 20px;
}



/* home page product cart section  */
.product-carts{
	cursor:pointer;
}
.product-carts .elementor-widget-image,
.product-carts .elementor-widget-image .elementor-widget-container {
    overflow: hidden;
	border-radius: 8px 8px 0px 0px;
	
}

.product-carts .elementor-widget-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    transform: scale(1);
}

.product-carts:hover .elementor-widget-image img {
    transform: scale(1.08);
}

.product-carts .elementor-button {
    position: relative;
    padding: 0 0 8px 0;
    background: transparent;
    border: none;
    overflow: visible;
}

.product-carts .elementor-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #AF843A;
    transition: width 0.6s ease;
}
.product-carts:hover .elementor-button::after {
    width: 100%;
}


.enquire-now-last h3 {
    margin-bottom: 5px;
    margin-top: 0;
}




/* footer style  */

.footer-link-button {
    position: relative;
    display: inline-block; /* Important for the underline width */
    text-decoration: none;
}

.footer-link-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #D8D8D8;
    transition: width 0.6s ease;
}

.footer-link-button:hover::after {
    width: 100%;
}