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

:root{
  --lightbrown:#d1bda6;
  --lightgray:#f6f6f6;
  --light:#eadfd3;
  --darkbrown:#b09a7a;
  --white:#ffffff;
  --graycolor: #c6c6c6;
  --border-color:rgb(255 255 255 / 10%);
  --darkgrey:#4f4f4f;
  --black:#000000;
  --btn_color:#323232;
}
/* font Sizing 
======================================================= */
.fs-60{
  font-size: 60px;
}
.fs-44{
  font-size: 38px;
}
.fs-38{
  font-size: 38px;
}
.fs-34{
  font-size: 34px;
}
.fs-24{
 font-size: 24px;
}
.fs-20{
  font-size: 20px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
  font-size: 18px;
}
.fs-14{
    font-size: 14px;

}

/* Font WEight classes
======================================================== */
.fw-600{
  font-weight: 600;
}
.fw-500{
  font-weight: 500;
}
/* margin classes 
========================================================= */
.my_60{
 margin: 60px 0px 60px 0px  !important;
}
.py_60{
  padding: 60px 0px;
}

/* color classes
======================================================= */
.bg_gray{
  background-color: var(--lightgray);
position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: normal;
  color: #323232;
  margin-bottom: 12px;
  position: relative;
}
html{
  overflow-x: hidden;
}
body{
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

/*font class
========================================================*/
.barlow{
  font-family: "Barlow", sans-serif;
}
.barlowCondensed{
   font-family: "Barlow Condensed", sans-serif;
}
/* ==================== page Loader ================================ */
#loader {
  position: relative;
  width: 4px;
  height: 4px;
  padding: 0;
  display: inline-block;
 }    
 #preloader{
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100vh;
      background: #323232;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 500;
      overflow: hidden;
    }
#loader > div {
  content: "";
  background: white;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
 }
.dots-fade > div:nth-child(1) {
  animation: dotFade 1.2s infinite ease-in-out;
  animation-delay: 0s;
  transform: translate(-12px, 0);
  }  
.dots-fade > div:nth-child(2) {
  animation: dotFade 1.2s infinite ease-in-out;
  animation-delay: 0.2s;
  transform: translate(0, 0);
}    
.dots-fade > div:nth-child(3) {
  animation: dotFade 1.2s infinite ease-in-out;
  animation-delay: 0.4s;
  transform: translate(12px, 0);
}    
@keyframes dotFade {
  0%, 100% {
   opacity: 0.2;
   transform: scale(0.8) translateY(0);
  }
  50% {
   opacity: 1;
   transform: scale(1.2) translateY(-8px);
  }
}
/*theme button style
========================================================*/
.theme_btn {
  background: #b09a7a;
  color: white;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border:2px solid var(--lightbrown);
}
.theme_btn:hover {
  color: var(--lightbrown) !important;
  border-color: var(--lightbrown);
}
.theme_btn::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background: #323232;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.theme_btn:hover::before{
  width: 100%;
}

.theme_white_btn {
  background: transparent;
  color: #323232;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border:1px solid #323232;
}
.theme_white_btn:hover {
  color: var(--lightbrown) !important;
}
.theme_white_btn::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background: #323232;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.theme_white_btn:hover::before{
  width: 100%;
}

.theme_dark_btn {
  background: #323232;
  color: #fff;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 1px;
  border:1px solid #323232;
}
.theme_dark_btn:hover {
  color: #323232 !important;
}
.theme_dark_btn::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background: var(--lightbrown);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.theme_dark_btn:hover::before{
  width: 100%;
}

/* theme btn white border 
========================================================*/
.theme_btn_white_border{
  background: transparent;
  color: var(--white);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border:1px solid var(--white);
}
.theme_btn_white_border:hover {
  color: var(--btn_color) !important;
  border: none;
  background-color: var(--lightbrown);
}
.theme_btn_white_border::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background:var(--lightbrown);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.theme_btn_white_border:hover::before{
  width: 100%;
}
/*comman classes
=========================================================*/
.page_Color{
  background-color: var(--lightgray);
}
.py-60{
  padding: 60px 0px;
}
.pt-60{
    padding-top: 60px;
  }
.pb-60{
    padding-bottom: 60px;
  }

/*==================================================================
header section css
====================================================================*/
.top-bar {
  background: var(--lightbrown);
  color: black;
  font-size: 14px;
  text-align: center;
  padding: 5px 10px;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: none;
  text-decoration: none;
}
.top-bar:hover{
  color: black;
}

/* MAIN NAVBAR */
.main-navbar {
  background: #222;
  padding: 10px 0;
}
.search-wrap {
  display: flex;
  border: 1px solid #444;
  flex: 1;
  max-width: 520px;
}
.search-wrap input {
  background: white;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: 13px;
  flex: 1;
  color: #333;
}
.icon-text-box{
  line-height: 1;
}

.search-wrap button {
  background: white;
  border: none;
  border-left: 1px solid #ddd;
  padding: 8px 14px;
  color: #666;
  cursor: pointer;
}
.search-wrap button:hover {
  background: #f0f0f0;
}
.nav-icon {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-icon-label {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .35s;
}
.nav-icon{
  transition: 0.35s;
}
.main-navbar-icon:hover .nav-icon{
  color: var(--lightbrown);
}
.main-navbar-icon:hover .navbar_icon_box{
  border-color: var(--lightbrown);
}
.main-navbar-icon:hover .nav-icon-label{
  color: var(--lightbrown) !important;
}
.nav-icon-sub {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}
.nav-icon-sub:hover{
  color: var(--lightbrown);
}
.nav-icon i {
  font-size: 20px;
}
.navbar_icon_box{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SUB NAVBAR */
.sub-navbar {
  background: white;
  border-bottom: 1px solid #eee;
}
.sub-navbar .nav-link {
  color: rgb(50, 50, 50);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 17px 15px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.6px;
}
.sub-navbar .nav-link:hover {
  color: var(--lightbrown);
}
.sub-navbar .nav-link.active-nav {
  color: var(--lightbrown);
  border-bottom: 2px solid var(--lightbrown);
}
.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.dropdown-item {
  font-size: 13px;
  padding: 8px 16px;
}
.dropdown-item:hover {
  background: #f8f5f0;
  color: #b09a7a;
}

.wishlist-btn {
  background: none;
  border: 1px solid #ddd;
  color: #666;
  padding: 9px 12px;
  cursor: pointer;
  border-radius: 50%;
}
.wishlist-btn:hover {
  border-color: #b09a7a;
  color: #b09a7a;
}

/* HAMBURGER */
.hamburger-btn {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  transition: transform 0.3s ease;
  display: none;
}
.hamburger-btn.active {
  transform: rotate(90deg);
}

/* MOBILE ICON BAR */
.mobile-icon-bar {
  background: #1a1a1a;
  display: none;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #333;
}
.icon-link {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
}
.icon-link i {
  font-size: 17px;
}

/* SIDEBAR */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 1040;
  pointer-events: none;
  transition: background 0.35s ease;
}
.sidebar-overlay.open {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #1c1c1c;
  z-index: 1050;
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.open {
  left: 0;
}

.sidebar-header {
  background: #111;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
}
.sidebar-brand {
  color: white;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: "Barlow", sans-serif;
}
.sidebar-brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 4px;
  color: #888;
  font-family: sans-serif;
  font-weight: 400;
}
.close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s, transform 0.3s;
}
.close-btn:hover {
  color: white;
  transform: rotate(90deg);
}

.sidebar-menu {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  color: #ccc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, padding-left 0.25s;
}
.menu-item:hover {
  background: #2a2a2a;
  color: #b09a7a;
  padding-left: 24px;
}
.menu-item a{
  color:  #ccc;
  text-decoration: none;
}
.menu-item.active-link {
  color: var(--lightbrown);
}
.menu-item a.active-link {
  color: var(--lightbrown);
}
.menu-item i.arrow {
  font-size: 10px;
  color: #555;
  transition: transform 0.3s;
}
.menu-item.expanded i.arrow {
  transform: rotate(90deg);
  color: #b09a7a;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #161616;
}
.submenu.open {
  max-height: 200px;
}
.submenu-item {
  display: block;
  padding: 10px 18px 10px 34px;
  color: #888;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid #222;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.4px;
}
.submenu-item:hover {
  color: var(--lightbrown);
  background: #1f1f1f;
}

.sidebar-footer {
  padding: 14px;
  border-top: 1px solid #2a2a2a;
  background: #111;
}
.call-btn-sidebar {
  width: 100%;
  background: var(--lightbrown);
  color: black;
  border: none;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.call-btn-sidebar:hover {
  background: var(--lightbrown);
}

.sidebar.open .menu-item {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}
.sidebar.open .menu-item:nth-child(1) {
  animation-delay: 0.05s;
}
.sidebar.open .menu-item:nth-child(2) {
  animation-delay: 0.1s;
}
.sidebar.open .menu-item:nth-child(3) {
  animation-delay: 0.15s;
}
.sidebar.open .menu-item:nth-child(4) {
  animation-delay: 0.2s;
}
.sidebar.open .menu-item:nth-child(5) {
  animation-delay: 0.25s;
}
.sidebar.open .menu-item:nth-child(6) {
  animation-delay: 0.3s;
}
.sidebar.open .menu-item:nth-child(7) {
  animation-delay: 0.35s;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.sub-navbar .dropdown:hover .dropdown-menu{
  display: block;
  margin-top: 0;
  animation: dropdownFade .25s ease;
}

@keyframes dropdownFade{
  from{
    opacity: 0;
    transform: translateY(8px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
/* ✅ MEGA MENU - Desktop */
.mega-menu-item {
  position: static !important;
}
.mega-dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 2px solid var(--lightbrown);
  z-index: 999;
  padding: 28px 0 32px;
  animation: dropdownFade 0.25s ease;
}
.mega-menu-item:hover .mega-dropdown {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.mega-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
}
.mega-link {
  display: block;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mega-link i {
  font-size: 10px;
  margin-right: 6px;
  color: var(--lightbrown);
}
.mega-link:hover {
  color: var(--lightbrown);
  padding-left: 6px;
}
.sub-navbar {
  position: relative;
}
.submenu-heading {
  display: block;
  padding: 8px 18px 4px 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lightbrown);
  border-bottom: 1px solid #2a2a2a;
}
.submenu.open {
  max-height: 500px; 
  overflow-y: auto;
}


/*=====================================================================
Home Page css
========================================================================*/

/*Hero section css ============================ */
.banner_img { background-image: url("../image/banner02.jpg");}
.banner_img2 { background-image: url("../image/banner.jpg"); }
.banner_img3 { background-image: url("../image/desk-banner.jpg"); }


.main_banner_slider {
    position: relative;
    overflow: hidden; 
}

.banner_item {
    height: 550px !important;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media screen and (min-width: 1300px){
  .banner_item{
    height: 100vh !important;
  }
}

.slider_navigation {
    position: absolute;
    top: 70% !important; 
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none; 
}

.custom-arrow {
    position: absolute;
    width: 40px; 
    height: 40px;
    background-color: var(--white); 
    border: none;
    border-radius: 50%;
    cursor: pointer;
   
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); 
    transition: all 0.3s ease;
    pointer-events: auto; 
}

.custom-prev {
    left: 30px;
}

.custom-next {
    right: 30px;
}

.custom-arrow i {
    color: var(--black); 
    font-size: 20px; 
}

.custom-arrow:hover {
    background-color: var(--darkbrown); 
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/* NATURAL STONES ============================================ */
.Natural_stone{
  position: relative;
}
.Natural_stone h1{
  font-size: 38px;
  margin-bottom: 12px;
  color: #323232;
}
.Natural_stone p{
  font-size: 18px;
  margin-bottom: 30px;
  color: #323232;
}
.Natural_stone_img{
  position: sticky;
  top:0px;
  z-index:10;
}
.Natural_stone_img img{
 max-width:100%;
  height: auto;

}
.Natural_stone_img::after {
    background: url("../image/side-line.png");
    width: 98px;
    height: 144px;
    bottom: -43px;
    left: -27px;
    position: absolute;
    content: "";
}
.Natural_stone_img::before {
  content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--white) !important;
    border-right: 58px solid transparent;
}

/* LOGO IMAGES ====================================== */
.logo_images{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.logo_image .icon{
  position: relative;
  margin-bottom: 22px;
  z-index: 2;
}
.logo_image .icon img{
  max-width: 120px;
  height: auto;
  z-index: 3;
}
.logo_image .icon::before{
  content: "";
  top: -6px;
  right:0px;
  left: 12px;
    position: absolute;
    margin: auto;
    width: 60px;
    height: 60px;
    background:var(--light);
    border-radius: 100%;
    z-index: -1;
}

/* Featured Products =================================== */


.Feature_Products{
  border-top: 1px solid var(--graycolor);
  padding-top: 60px;
}
.Feature_Products_row{
  padding-top: 30px;
  padding-bottom: 60px;
}


.feature_card img{
width: 100%;
height: auto;
transition:1s;
  background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));

}
.laptop_button{
      display: block;
    }
    .mobile_button{
      display: none;
      text-align: center;
    }
.feature_card:hover img{
     transform: scale(1.2 );
     transition: .5s;
}
.feature_card:hover .feature_card_content{
  color: var(--black) !important;
}
.feature_card:hover .feature_card_border{
  background-color: var(--black) !important;
}
.feature_card{
    position: relative;
    object-fit: center;
    overflow: hidden;
    cursor: pointer;
    }
.feature_card_content{
    position: absolute;
    bottom: 8px ;
    left: 20px ;
    content:"";
    color: var(--white);
    z-index: 2;
    transition: 0.35s;
}
.feature_card::after{
    background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));
   position: absolute;
  left: 0;
  right: 0;
  width: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}
.feature_card::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  background: var(--lightbrown);
  opacity: 0.7;
  transition: 0.5s ease-in-out;
  z-index: 2;
}

.feature_card:hover::before{
  width: 100%;
}
.feature_card_border{
  width: 20px;
  height: 2px;
  background-color: var(--white);
}
/* RECOMMENDATON TOP =================================  */
.recommend_section{
        padding: 60px 0;
      }
.recommend_card_img img{
    width: 100%;
height: auto;
transition:1s;
}
.recommend_card_img{

  background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));
     position: relative;
    object-fit: center;
}
.recommend_card{
    overflow: hidden;
    cursor: pointer;
}
.recommend_card_img::after{
    background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));
   position: absolute;
  left: 0;
  right: 0;
  width: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}
.recommend_card_img::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  background: var(--lightbrown);
  opacity: 0.7;
  transition: 0.5s ease-in-out;
  z-index: 2;
}

.recommend_card_img:hover::before{
  width: 100%;
}

.recommend_card_text h2{
  text-transform: uppercase;
}
.recommend_card_text_title{
  transition: 0.35s;
  color: #323232;
  letter-spacing: 0.2px;
}
.recommend_card_text_subtitle{
  transition: 0.35s;
  color: #323232;
  letter-spacing: 0.2px;
}
.recommend_card:hover .recommend_card_text_subtitle{
  color: var(--lightbrown);
}
.recommend_card:hover .recommend_card_text_title{
  color: var(--lightbrown);
}

/* Excellent Customer Service =============================*/

.Customer_Services_img{
  position: relative;
position: sticky;
top: 0px;
}
.Customer_Services {
  margin-top: 60px;
  margin-left: 14px !important;
  margin-right: 14px !important;
}
.Customer_Services_img::after {
    background: url("../image/side-line.png");
    width: 85px;
    height: 130px;
    bottom: -40px;
    left: -20px;
    position: absolute;
    content: "";
}
.Customer_Services_img::before {
  content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--white) !important;
    border-right: 58px solid transparent;
}
.Customer_Services_img_main{
  width: 100%;
  height: 353px;
  
}

.Customer_Services_overlay{
 position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 220px;
    border-top: 4px solid var(--lightbrown);
    padding: 25px 30px 30px;
    background: var(--white);
    content: "";
}
.Customer_Services_text ul{
  padding-left: 0px;
}
.Customer_Services_text li{
 list-style-type: none;
}
.Customer_Services{
  background-image: url("../image/tiles-pattern.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px 0px;


}
.Customer_Services .badgebox img{
  max-width: 100%;
  height: auto;   
}

.Customer_Services::before{
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    max-width: inherit;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100% !important;
    background: var(--white);
    z-index: -1;
    overflow: hidden;
    content: "";
}

/* Latest Natural Stone cards============================== */
 .Latest_card_img{
    position: relative;
    transition: 2s ease-in-out;
}
.latest_slider{
    padding-top: 40px ;
}
.Latest_card_before{
    width: 100%;
    height: auto;
    display: block;
}
.Latest_car_after{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.5s ease;
}

.Latest_card_text{
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 gap: 16px;
 padding: 24px 0px 24px 0;
}
.Latest_card:hover .Latest_car_after{
    opacity: 1;
}
.Latest_card_text p{
  text-transform: uppercase;
}

.Latest_card_text_dash{
  width: 25px;
  height: 2px;
  background-color: var(--black);
}

.Latest_card button{
  background: var(--btn_color);
  color: var(--white);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.3px;
  min-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.Latest_card:hover button{
  color: var(--btn_color) !important;
}
.Latest_card button::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background: var(--darkbrown);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.Latest_card:hover button::before{
  width: 100%;
}
.latest_slider .slick-slide {
    padding: 0 15px; 
}

.latest_slider {
    margin: 0 -15px; 
}

.Latest_card {
    margin-bottom: 20px; 
 
}
.slick-prev,
.slick-next{
   display: none !important;
}
.cards_arrow {
    position: absolute;
    width: 40px; 
    height: 40px;
    background-color: var(--white); 
    border: none;
    border-radius: 50%;
    cursor: pointer;
       box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: auto; 
}

.cards_prev {
    left: 25%;
}
.cards_next {
    right: 25%;
}


.cards_arrow i {
    color: var(--black); 
    font-size: 20px; 
}

.cards_arrow:hover {
    background-color: var(--darkbrown); 

}
.slider_btn_hide{
  display: block;
}
.mobile_slide_btn{
  display: none;
}
/* shop_collection======================= */

.shop_collection_heading{
  background-color: var(--border-color);
  width: 100%;
  height: 2px;
  margin: 30px 0px;
}
.shop_slider_btns{
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 30px;
}
.shop_arrow {
    position: relative;
    width: 40px; 
    height: 40px;
    background-color: transparent; 
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.shop_prev, .shop_next {
    left: auto;
    right: auto;
}

.shop_arrow i {
    color: var(--black); 
    font-size: 20px; 
}

.shop_arrow:hover {
    background-color: var(--darkbrown); 
}
.shop_collection_btn{
  padding-top: 20px;
}
.shop_collection_section {
   background-image: url('../image/collection-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  color: var(--white);
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
}
.shop_collection_section::after {
    background: url('../image/side-line.png');
  width: 98px;
    height: 144px;
    bottom: -92px;
    left: 5px;
    content: "";
    position: absolute;
}
.shop_collection_section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 78px solid var(--lightgray);
    border-right: 58px solid transparent;
}
.partial_slider_wrapper {
   
    margin-left: calc((100vw - 1140px) / 2 + 15px); 
    overflow: hidden !important;
}

.recommend_slider .slick-list {
    overflow: visible !important; 
}

.recommend_slider .slick-slide {
    padding-right: 25px;
}
/*stone mart  =====================================*/
.stone_mart_slider{
  padding-top: 40px;
}
.Stone_Mart{
  padding:60px 0;
}
.stone_mart_slider .slick-slide {
    padding: 0 15px; 
}

.stone_mart_slider {
    margin: 0 -15px; 
}
.stone_arrow {
    position: relative;
    width: 40px; 
    height: 40px;
    background-color: var(--white); 
    border: none;
    border-radius: 50%;
    cursor: pointer;
    border:1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: auto; 
}
.stone_mart_btn{
  padding-top: 20px;
}

.stone_prev {
    left:auto;
}
.stone_next {
    right: auto;
}

.stone_arrow i {
    color: var(--black); 
    font-size: 20px; 
}

.stone_arrow:hover {
    background-color: var(--darkbrown); 

}
.stone_card_border{
border: 2px solid var(--lightgray);
  }
/* usefull links ================================*/
.useful_img_card{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.useful_links_row{
  justify-content: space-around;
  flex-wrap: wrap;
}
.Useful_link_img_card{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px ;
  border-radius: 50%;
  background-color: var(--white);
  margin-bottom: 15px;
  
}
.Useful_link_img_card img{
max-width: 100%;
height: auto;
object-fit: contain;
}
.Natural_stone_border{
  background-color: var(--graycolor);
  width: 100%;
  height: 1px;
  margin: 60px 0px;
}
.useful_links_section{
position: relative;
}
.uselink_img{
  position: relative;
  position: sticky;
  top: 0px;
}
.uselink_img img{
  max-width: 100%;
  height: auto;
  
}
.uselink_img::after {
    background: url("../image/side-line.png");
    width: 85px;
    height: 130px;
    bottom: -40px;
    left: -20px;
    position: absolute;
    content: "";
}
.uselink_img::before {
  content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--lightgray) !important;
    border-right: 58px solid transparent;
}
/*blog section*/
.blog_section{
    padding: 60px 0;
}
.blog_row{
  padding-top: 40px;
}
/*===========================================================================
category page
============================================================================*/
.category_banner{
  min-height: 350px;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../image/about-inner.webp");
  background-size: cover;
  position: relative;
  z-index: 1;
}
.category_banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #323232;
  z-index: -1;
  opacity: 0.2;
}
.category_banner h1{
  color: white;
  font-weight: 400;
  font-size: 38px;
  text-transform: uppercase;
}
.category_row{
  row-gap: 40px;
}
.category_card{
  text-decoration: none;
}
.category_card:hover .category_title{
  color: var(--lightbrown);
}
.category_card_body{
  padding-top: 20px;
}
.category_title{
  font-size: 19px;
  font-weight: 600;
  color: rgb(50, 50, 50);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  text-transform: uppercase;
}
.category_card_image_box{
  overflow: hidden;
  position: relative;
}
.category_card_image_box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
  z-index: 1;
  background: rgb(209 189 166 / 70%);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;

}
.category_card_image{
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.category_card:hover .category_card_image{
  transform: scale(1.1);
}
.category_card:hover .category_card_image_box::before{
  width: 100%;
}
.page_text_section{
  border-top: 1px solid #e9e9e9;
}
.page_text_section p{
  color: rgb(50, 50, 50);
  letter-spacing: 0.2px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
}
.page_text_section a{
  font-weight: 600;
  color: #323232;
}
/*=========================================================================
sub category page
==========================================================================*/
.filer_row{
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  margin-bottom: 50px;
  padding: 10px 0px;
}
.filer_row p{
  color: rgb(50, 50, 50);
  font-weight: 400;
  font-size: 18px;
}
.filer_row label{
  color: rgb(50, 50, 50);
  font-weight: 700;
  font-size: 18px;
}
.filer_row select{
  color: rgb(50, 50, 50);
  font-weight: 400;
  font-size: 18px;
  background: none;
  border: none;
  margin-left: 10px;
}
.filter_selction{
  text-align: right;
}
.category-box{
  background:#fff;
  border-radius:1px;
  margin-bottom: 20px;
}
.main-title{
  font-size:18px;
  font-weight:500;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #323232;
  padding: 16px 20px;
}
.main-title i{
  font-size: 15px;
}
.category_collapse_body{
  padding: 16px 20px ;
  border-top:1px solid #CECECE;
}
.sub-item{
  padding-bottom:10px 0;
}
.sub-btn{
  width:100%;
  background:none;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:18px;
  padding:0;
  font-weight: 400;
  color: rgb(50, 50, 50);
  text-decoration: none;
}
.sub-btn a{
  text-decoration: none;
  color: rgb(50, 50, 50);
}
.sub-btn a:hover{
  color: var(--lightbrown);
}
.sub-btn i{
  font-size: 12px;
}
.sub-item ul{
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.sub-item ul li a{
  font-weight: 400;
  color: rgb(50, 50, 50);
  text-decoration: none;
}
.sub-item ul li a:hover{
  color: var(--lightbrown);
}
.sub-item ul li a.active,
.sub-btn a.active,
a.sub-btn.active{
  color: var(--lightbrown);
  font-weight: 700;
}
.icon{
  transition:0.3s;
  font-weight:bold;
}
.main-title[aria-expanded="true"] .arrow{
  transform:rotate(180deg);
}
.Application_list{
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.Application_list li a{
  color: rgb(50, 50, 50);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}
.Application_list li a:hover{
  color: var(--lightbrown);
}
.Application_list li a.active{
  color: var(--lightbrown);
  font-weight: 700;
}
.price-box{
    width:100%;
}
.range-slider{
    position:relative;
    height:40px;
}

.slider-track{
    position:absolute;
    width:100%;
    height:3px;
    background:gray;
    top:18px;
    border-radius:5px;
}

.range-slider input[type="range"]{
    position:absolute;
    width:100%;
    top:10px;
    background:none;
    pointer-events:none;
    -webkit-appearance:none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
    pointer-events:auto;
    -webkit-appearance:none;
    width:16px;
    height:16px;
    background:#3b3b3b;
    border-radius:50%;
    cursor:pointer;
    border:none;
}
.range-slider input[type="range"]::-moz-range-thumb{
    width:16px;
    height:16px;
    background:#3b3b3b;
    border-radius:50%;
    cursor:pointer;
    border:none;
}
.price-values{
    display:flex;
    justify-content:space-between;
}
.price-input{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:18px;
    font-weight:500;
    color: rgb(50, 50, 50);
}

.price-input input{
    width:70px;
    border:none;
    background:transparent;
    font-size:18px;
    color:rgb(50, 50, 50);
    outline:none;
    -moz-appearance: textfield;
}
.price-input input::-webkit-outer-spin-button,
.price-input input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.dollar{
    font-size:18px;
    color:rgb(50, 50, 50);
}
.price-filter-form{
    width: 100%;
}
.price-filter-btn{
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 8px 0;
    background: #323232;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.price-filter-btn:hover{
    background: var(--lightbrown);
    color: #323232;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1040;
}
.sidebar-overlay.show { display: block; }
@media (max-width: 767px) {
  .sidebar-col {
    position: fixed;
    top: 0;
    left: -100%;          /* chhupa hua */
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #f8f8f8;
    z-index: 1050;
    padding: 16px;
    transition: left 0.3s ease;
    box-shadow: none;
}
.sidebar-col.open {
  left: 0;                /* slide in */
  box-shadow: 4px 0 20px rgba(0,0,0,0.12);
}
.btn-close-sidebar { display: flex !important; }
.btn-open-filter { display: inline-flex !important; }
}
.btn-close-sidebar { display: none; }
.btn-open-filter   { display: none; }
.btn-open-filter {
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid #323232;
  border-radius: 4px;
  background: #323232;
  font-size: 15px;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 16px;
}
.sidebar-close-row {
  display: none;
  justify-content: flex-end;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .sidebar-close-row { display: flex; }
}
.btn-close-sidebar {
  background: none;
  border: none;
  font-size: 20px;
  color: #323232;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.sub_category_row{
  row-gap: 30px;
}
.sub_cat_card_image_box{
  border:1px solid #E9E9E9;
  overflow: hidden;
}
.sub_cat_card_image{
  transition: 0.5s all ease-in-out;
}
.sub_cat_card_image_box:hover .sub_cat_card_image{
  transform: scale(1.2);
}
.sub_cat_card_body{
  padding: 20px 10px;
  background: white;
}
.sub_cat_card_title{
  min-height: 45px;
  color: rgb(50, 50, 50);
  font-weight: 500;
  font-size: 18px;
}
.sub_cat_card_body{
  text-align: center;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.sub_cat_card_subtitle{
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px;
  min-height: 35px;
  color: #323232;
}
.sub_cat_card_subtitle::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background: #323232;
  z-index: 1;
}
.sub_cat_card_price{
  color: #000000;
  font-size: 18px;
  font-weight: 700;
}
.sub_cat_card_btn{
  background: rgb(50, 50, 50);
  padding: 13px 20px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 46px;
  z-index: 1;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.sub_cat_card_btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
  background: var(--lightbrown);
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.sub_cat_card:hover .sub_cat_card_btn::before{
  width: 100% !important;
}
.sub_cat_card:hover .sub_cat_card_btn{

  color: #323232;
} 

/*Pagination
======================================================*/
.stonemart-pagination{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.stonemart-pagination ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.stonemart-pagination ul li a,
.stonemart-pagination ul li span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #323232;
  background: #ffffff;
  border: 1px solid #E9E9E9;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.stonemart-pagination ul li a:hover{
  background: var(--lightbrown);
  border-color: var(--lightbrown);
  color: #323232;
}
.stonemart-pagination ul li span.current{
  background: #323232;
  border-color: #323232;
  color: #ffffff;
}
.stonemart-pagination ul li .prev,
.stonemart-pagination ul li .next{
  font-size: 14px;
}
.stonemart-pagination ul li .dots{
  border: none;
  background: transparent;
  cursor: default;
}

/*call section css
======================================================*/
.call_section{
  background-color: var(--lightgray);
}
.call_section_box{
  padding: 60px 20px;
  background-image: url("../image/call_section.jpg");
  background-size: cover;
  position: relative;
  background-position: center;
  z-index: 1;
}
.call_section_box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 75%);
  z-index: -1;
}
.call_section_box .subtitle{
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lightbrown);
  margin-bottom: 15px;
}
.call_section_box .title{
  max-width: 860px;
  margin: 0px auto 12px auto;
}
.call_section_box .title span{
  letter-spacing: 0.2px;
  font-size: 38px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
}
/*Follow us section
======================================================*/
.follow_us_insta h3{
  font-size: 30px;
  color: rgb(50, 50, 50);
  font-weight: 400;
  text-transform: uppercase;
}
.follow_us_link{
  text-align: right;
}
.follow_us_link a{
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: rgb(50, 50, 50);
  transition: 0.5s;
  font-weight: 700;
}
.follow_us_link:hover{
  color: var(--lightbrown);
}

/*======================================================================
contact page 
=======================================================================*/
.contact_banner{
  min-height: 350px;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../image/contact-banner.webp");
  background-size: cover;
  position: relative;
  z-index: 1;
}
.contact_banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #323232;
  z-index: -1;
  opacity: 0.2;
}
.contact_banner h1{
  color: white;
  font-weight: 400;
  font-size: 38px;
  text-transform: uppercase;
}
.contact_info{
  padding: 60px 0;
}
.contact_info h2{
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
  color: #323232;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.contact_info h1{
  font-size: 30px;
  font-weight: bold;
  color: #323232;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact_info p{
  margin-bottom: 25px;
  letter-spacing: 0.2px;
  line-height: 166%;
  font-size: 18px;
  font-weight: normal;
}
.contact_info span{
  letter-spacing: 0.2px;
  line-height: 166%;
  font-size: 18px;
  font-weight: 700;
}
.contact_info p a{
  color: #323232;
  font-weight: 600;
}
.contact_info span a{
  color: #323232;
  font-weight: 500;
}
.contact_info_image_box{
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.contact_info_image{
  position: relative;
}
.contact_info_image::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 78px solid #f6f6f6;
  border-right: 58px solid transparent;
}
.contact_info_image::after{
  content: "";
  position: absolute;
  background: url(../image/side-line.png);
  width: 98px;
  height: 144px;
  bottom: -43px;
  left: -27px;
}
.contact_form{
  padding-bottom: 60px;
  border-bottom: 2px solid #CECECE;
}
.contact_form_box{
  background: #fff;
  padding: 50px;
}
.contact_form_row{
  row-gap: 35px;
}
.contact_form h2{
  font-size: 30px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #323232;
  margin-bottom: 30px;
}
.contact_form_box_icon{
  max-width: 40px;
  max-height: 40px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #d1bda6;
  display: flex;
  justify-content: center;
  align-items: center;

}
.contact_form_box span{
  color: #323232;
  font-size: 18px;
  font-weight: 600;
}
.contact_form_box p{
  color: #323232;
  font-size: 18px;
  font-weight: 400;
}
.contact_form_box a{
  color: #323232;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}
.contact_form_box a:hover{
  color: var(--lightbrown);
}
.contact_form_box input{
  border:1px solid #e9e9e9 !important;
  height: 46px;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: all 0.5s ease-in-out;
  padding: 12px 15px;
  border-radius: 0px !important;
  font-family: "Barlow", sans-serif;
}
.contact_form_box input:focus{
  box-shadow: 0 0 0 white;
}
.contact_form_box textarea{
  border:1px solid #e9e9e9 !important;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: all 0.5s ease-in-out;
  padding: 12px 15px;
  border-radius: 0px !important;
  font-family: "Barlow", sans-serif;
}
.contact_form_box textarea:focus{
  box-shadow: 0 0 0 white;
}
.form_row{
  row-gap: 20px;
}
.contact_form_box button{
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2px;
  padding: 10px 30px;
  background: #1a1818;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  font-weight: 700;
  border:none;
  text-transform: uppercase;

}
.form_btn{
  text-align: right;
}
.contact_form_box button:hover{
  background: var(--lightbrown);
}
/*============================================================================
about us page
================================================================================*/
.about_banner{
  min-height: 350px;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../image/about-inner.webp");
  background-size: cover;
  position: relative;
  z-index: 1;
}
.about_banner::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #323232;
  z-index: -1;
  opacity: 0.2;
}
.about_banner h1{
  color: white;
  font-weight: 400;
  font-size: 38px;
  text-transform: uppercase;
}
/* NATURAL STONE SECTION 
==========================================*/
.wel_Natural_stone {
    position: relative;

}

.wel_Natural_stone_img {
    position: sticky;
    top: 0px;
    z-index: 10;
}

.wel_Natural_stone_img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.wel_Natural_stone_img::after {
    background: url("../image/side-line.png");
    width: 98px;
    width: 98px;
    height: 144px;
    bottom: -43px;
    left: -27px;
    position: absolute;
    content: "";
}

.wel_Natural_stone_img::before {
    content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--lightgray) !important;
    border-right: 58px solid transparent;
}

.about_Natural_stone_text {
    display: flex;
    flex-direction: column;
}

.mt-custom {
    margin-top: 80px;
}

/* LOGO IMAGES =========================*/
.logo_images {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo_image .icon {
    position: relative;
    margin-bottom: 22px;
    z-index: 2;
}

.logo_image .icon img {
    max-width: 120px;
    height: auto;
    z-index: 3;
}

.logo_image .icon::before {
    content: "";
    top: -6px;
    right: 0px;
    left: 12px;
    position: absolute;
    margin: auto;
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 100%;
    z-index: -1;
}

/* BACKGROUND IMAGE SECTUION ============================*/
.bg_img_section {
    position: relative;
    background-image: url("../image/tiles-pattern.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.bg_img_section::before {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
    max-width: inherit;
    left: 0;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100% !important;
    background: var(--white);
    z-index: -1;
    overflow: hidden;
    content: "";
}

/* VEDIO SECTION =============================== */
.vedio_bg_img {
    max-width: 100%;
    position: relative;
    background-image: url("../image/about/stone-warehouse.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    
}

.play_button {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid #eadfd3;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: 0;
    left: 0px;
    bottom: 0;
    margin: auto;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(234 223 211 / 60%);
        border-radius: 100%;
    }

    100% {
        box-shadow: 0 0 0 60px rgb(234 223 211 / 0.1%);
        border-radius: 100%;
    }
}

/* Design deriven section============================= */

.design_driven {
    position: relative;
}

.design_driven_img {
    position: sticky;

    top: 0;
    z-index: 10;
}

.design_driven_img img {
    max-width: 100%;
    height: auto;
}

.design_driven_img::after {
    background: url("../image/side-line.png");
    width: 98px;
    width: 98px;
    height: 144px;
    bottom: -43px;
    left: -27px;
    position: absolute;
    content: "";
}

.design_driven_img::before {
    content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--white) !important;
    border-right: 58px solid transparent;
}

/* OUR PRODUCT RANGE =========================*/
.product_range_slider_wrapper {

    margin-left: calc((100vw - 1140px) / 2 + 15px);
    overflow: hidden !important;
}

.product_range_slider .slick-slide {
    padding: 0 10px;
    /* Cards ke beech gap */
}

.product_range_slider .slick-list {
    overflow: visible !important;
    /* Taki partial slides nazar aayein */
}

.product_range_arrow {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--darkbrown);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.product_range_prev {

    top: -200px;
    left: 100px;
    z-index: 2;
}

.product_range_next {
    right: 0;
    left: 350px;
}

.product_range_arrow i {
    color: var(--black);
    font-size: 20px;
}

.product_range_arrow:hover {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--light);
}

.product_range_btns {
    justify-content: flex-start !important;
    gap: 30px;
}

.Product_range_section {
    background-image: url('../image/collection-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    color: var(--white);

    position: relative;
}

.Product_range_section::after {
    background: url('../image/side-line.png');
    width: 98px;
    height: 144px;
    bottom: -92px;
    left: 5px;
    content: "";
    position: absolute;
}

.Product_range_section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 78px solid var(--lightgray);
    border-right: 58px solid transparent;
}

.product_range_card:hover .zoom_img::after {
    transform: scale(1);
}

.zoom_img {
    position: relative;
}

.zoom_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url("../image/svg/zoom.svg");
    width: 44px !important;
    height: 44px !important;
    z-index: 3;
    transform: scale(0);
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
}


.product_range_card_img img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;

}

.product_range_card_img:hover img {
    transform: scale(1.2);
    transition: 0.5s;

}

.product_range_card_img {
    overflow: hidden;
    background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));
    position: relative;
    object-fit: center;
}

.product_range_card {
    overflow: hidden;
    cursor: pointer;
}

.product_range_card_img::after {
    background-image: linear-gradient(to bottom, transparent 40%, rgb(0 0 0 / 80%));
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
}

.product_range_card_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    bottom: 0;
    margin: 0 auto;
    height: 100%;
    background: var(--lightbrown);
    opacity: 0.7;
    transition: 0.5s ease-in-out;
    z-index: 2;
}

.product_range_card_img:hover::before {
    width: 100%;

}
.product_range_card_text h2{
  color: white;
}

.product_range_card:hover .product_range_card_text {
    color: var(--lightbrown);

}


/* usefull links ====================== */
.useful_img_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Useful_link_img_card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--white);
    margin-bottom: 15px;

}

.Useful_link_img_card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.Natural_stone_border {
    background-color: var(--graycolor);
    width: 100%;
    height: 1px;
    margin: 60px 0px;
}

.useful_links_section {
    position: relative;
}

.uselink_img {
    position: relative;
    position: sticky;
    top: 0px;
}

.uselink_img img {
    max-width: 100%;
    height: auto;

}

.uselink_img::after {
    background: url("../image/side-line.png");
    width: 85px;
    height: 130px;
    bottom: -40px;
    left: -20px;
    position: absolute;
    content: "";
}

.uselink_img::before {
    content: "";
    width: 0;
    position: absolute;
    height: 0;
    bottom: 0px;
    left: 0px;
    border-bottom: 78px solid var(--lightgray) !important;
    border-right: 58px solid transparent;
}

.useful_card_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.useful_links {
    justify-content: flex-end;
}


/*============================================================================
Product Detail Page 
==============================================================================*/
.product-section{
  padding:60px 0;
}
.gallery-wrapper{
  display:flex;
  gap:20px;
}
.thumb-side{
  width:80px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.thumb-slider{
  height:330px;
  overflow:hidden;
  position:relative;
  width:100%;
}
.thumb-track{
  transition:0.4s;
}
.thumb-item{
  width:100%;
  height:80px;
  border:1px solid #ddd;
  margin-bottom:12px;
  cursor:pointer;
  overflow:hidden;
  background:#fff;
}
.thumb-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumb-arrow{
  width:40px;
  height:40px;
  border-radius:50%;
    border:1px solid #ccc;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:14px;
}
.thumb-arrow.d-none{
  display:none !important;
}
.main-image{
  flex:1;
  border:1px solid #ddd;
  background:#fff;
  position:relative;
  overflow:hidden;
}
.main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-icons{
  position:absolute;
  top:15px;
  right:15px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gallery-icons button{
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.product-title{
  font-size:38px;
  font-weight:400;
  letter-spacing:0.2px;
  line-height: 1.2;
  text-transform:uppercase;
}
.product-meta{
  font-size:20px;
  font-weight: 500;
  color:#4F4F4F;
}
.product-meta a{
  color:#4F4F4F;
  text-decoration: none;
}
.product-meta a:hover{
  color:#4F4F4F;
}
.product-price{
  font-size:24px;
  font-weight:700;
  margin:25px 0;
}
.product-desc{
  line-height:1.6;
  color:#323232;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.custom-select{
  height:46px;
  border-radius:0;
}
.btn-cart{
  background:#7f7f7f;
  color:#fff;
  border-radius:0;
  padding:14px 30px;
  font-weight:600;
}

.share-icons a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--lightbrown);
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition: all 0.5s ease-in-out;
}
.share-icons_icon{
  transition: all 0.5s ease-in-out;
}
.share-icons a:hover .share-icons_icon{
  color: white;
}
.share-icons a:hover{
  background: #323232;
}
.nav-tabs{
  border:none;
  background: white;
}
.nav-tabs .nav-item{
  width: 50%;
}
.nav-tabs .nav-item button{
  width: 100%;
}
.nav-tabs .nav-link{
  border:none;
  color:#323232;
  font-weight:700;
  padding:20px 25px;
  border-top:4px solid #323232;
  background:#fff;
  border-radius: 0px;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.nav-tabs .nav-link.active{
  border-top:3px solid var(--lightbrown);
}
.spec-table td{
  padding:16px;
  font-size: 18px;
}
.keyfactor_list{
  display: flex;
  gap: 24px;
  list-style: none;
  padding-top: 40px;
  padding-left: 0;
}
.keybox .icon{
  position: relative;
  margin-bottom: 22px;
  z-index: 1;
}
.keybox .icon::before{
  content: "";
  position: absolute;
  top: -6px;
  left: 12px;
  right: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #eadfd3;
  z-index: -1;
}
.keybox p{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.detail_box{
  padding-left: 50px;
}
@media(max-width:991px){
.gallery-wrapper{
  flex-direction:column-reverse;
  }
.thumb-side{
  width:100%;
}
.thumb-slider{
  height:auto;
  overflow-x:auto;
  overflow-y:hidden;
}
.thumb-track{
  display:flex;
  gap:10px;
}
.thumb-item{
  min-width:80px;
  margin-bottom:0;
}
.thumb-arrow{
  display:none !important;
}
.product-title{
  font-size:36px;
}
.product-price{
  font-size:32px;
}
}
/*==================================================================================
  FOOTER SECTION CSS STRATED
  =================================================================================*/
.footer {
  background: url("../image/collection-bg.jpg");
  object-fit: cover;
  height: 100% !important;
  color: var(--graycolor);
  font-family: "Barlow", sans-serif;
}

.footer_top{
  padding: 52px 0px;
}
.footer_top  h2{
  color: #c6c6c6;
}
.footer_top_btn{
  border: 1px solid var(--lightbrown);
    min-height: 46px;
  padding: 12px 22px;
  background-color: transparent;
  color: var(--lightbrown);
  font-weight: 700;
}
.footer_logo{
  border-right:  1px solid var(--border-color);
  padding:52px 50px 0px 0px;
}
.footer_logo img{
  width: 100%;
}
.company_info{
  border-top:1px solid var(--border-color) ;
  border-bottom: 1px solid var(--border-color);
}

.middle_footer_link{
   padding: 52px 0px 52px 52px;
}
.padding_top{
    padding: 52px 0px;
}

.footer_description {
  color: var(--graycolor);
  margin: 0;
}

.footer_heading {
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lightbrown);
  display: inline-block;
}

.footer_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_list li {
  margin-bottom: 8px;
}

.footer_link {
  color: var(--graycolor);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
  padding-bottom: 3px;
}

.footer_link:hover {
  color: var(--white);
  text-decoration: none;
}
.follow_us_title {
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  margin-top: 0;
}

.social_icons {
  display: flex;
  gap: 12px;
  padding-top: 15px;
}

.social_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lightbrown);
  border-radius: 50%;
  color: var(--lightbrown);
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.social_icon:hover {
  background: var(--lightbrown);
  color: #1a1a1a;
}

.contact_text {
  color: var(--graycolor);
}

.contact_text a {
  color: var(--graycolor);
  text-decoration: none;
  transition: 0.3s ease;
}

.contact_text a:hover {
  color: var(--lightbrown);
}

.newsletter_box{
  position: relative;
    background: var(--darkgrey);
    padding: 30px;
  clip-path: polygon(0% 0%, 100% 0, 100% 75%, 85% 100%, 0% 100%);
    overflow: visible;
}
.newsletter_box::before{
 content: "";
    position: absolute;
    bottom: 55px;
    right: -48px;
    width: 105px;
    height: 1px;
    background: var(--darkgrey);
    transform: rotate(130deg);
}
.newsletter_box:after {
    content: "";
    position: absolute;
    bottom: 4px;
    right: -15px;
    width: 105px;
    height: 1px;
    background: var(--white);
    transform: rotate(130deg);}
    .newsletter_box::before,
.newsletter_box::after{
  z-index: 2;
}
.newsletter_desc {
  font-size: 12px;
  color: var(--graycolor);
  line-height: 1.5;
  margin-bottom: 15px;
}

.newsletter_form {
  display: flex;
  flex-direction: column;
}

.newsletter_input {
  background: var(--white);
  border: 1px solid var(--graycolor);
  padding: 12px 15px;
  font-size: 13px;
  color: var(--btn_color);
  border-radius: 0;
  transition: 0.3s ease;
}

.newsletter_input:focus {
  background: var(--white);
  border-color: var(--lightbrown);
  box-shadow: none;
  color:/* #333*/ var(--btn_color);
  outline: none;
}

.newsletter_input::placeholder {
  color:  var(--darkgrey);
}

.newsletter_btn {
  padding: 12px 22px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer_bottom {
  background: var(--black);
  border: none;
}

.payment_label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  white-space: nowrap;
}
.payment_methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.payment_methods img{
height: auto;
    max-width: 100%;
}
.payment_icon {
  height: 25px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}
.payment_icon:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.footer_bottom_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer_bottom_alignment{
  display: flex;
  align-items: center;
  padding: 20px 0px;
}

.footer_links_tablet {
  display: none;
}
.footer_link_bottom {
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer_link_bottom:hover {
  color: var(--lightbrown);
  text-decoration: none;
}

.footer_copyright p {
  color: var(--graycolor);
}
.copyright-link {
  color:var(--graycolor);
  text-decoration: none;
  transition: 0.3s ease;
}

.copyright-link:hover {
  color: var(--lightbrown);
}




/*===============================================================================
   RESPONSIVE CSS
  =============================================================================*/

  /*responsive for laptop screen
  =============================*/
@media (max-width: 1024px) {
  .sub-navbar .nav-link{
    padding: 15px 10px;
    font-size: 17px;
  }
  .partial_slider_wrapper { margin-left: calc((100vw - 960px) / 2 + 15px); }
}

/*responsive for table screen
  =============================*/
@media (max-width: 991px) {
  /* margin class*/
  .my_60 {
      margin: 30px 0px 30px 0px !important;
  }
    /* font sizing classes  */
    .fs-60{
    font-size: 40px;
  }
  .fs-44{
    font-size: 30px;
  }
  /* banner section */
  .slider_navigation {
      top: 50% !important;}
  .banner_item {
      height: 400px !important;}


  /* Excellent Customer Servicee */
  .Customer_Services_overlay {
        padding: 15px 15px 15px;
  }
  .Feature_Products {
      padding-top: 30px;
    }
    /* useful link  */
      .useful_img_card{
       gap: 20px;
      }
      .shop_collection_btn{
      padding-top: 12px;
    }

  .useful_img_card {
      
      justify-content: flex-start;
  }
  .Useful_link_img_card {
    
      width: 100px;
      height: 100px;
      padding: 20px;
  }
  .Useful_link_img_card img{
    width: 100%;
  }
  .sub-navbar {
    display: none !important;
  }
  .desktop-search {
    display: none !important;
  }
  .desktop-icons {
    display: none !important;
  }
  .hamburger-btn {
    display: block !important;
  }
  .mobile-icon-bar {
    display: flex !important;
  }
  .top-bar {
    font-size: 14px;
    display: block;
  }
  .logo{
    width: 100px;
    height: auto;
  }
  .hamburger-btn {
    display: block !important;
  }
  /* footer ===== */
 .footer_top {
    padding: 40px 0 20px 0;
  }
  .footer_top_btn {
    max-width: 250px;
  }

  .footer_logo {
    border-right: none;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 0px;
    text-align: center;
  }
  .footer_logo img {
    min-width: 130px;
  }
   .social_icons{
    padding-top: 5px;
    justify-content: center;
   }
  .middle_footer_link {
    padding: 0px 14px 30px 14px;
  }
  .footer_links_desktop {
    display: none;
  }
  .footer_links_tablet {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .footer_links_tablet .accordion-item {
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    margin-bottom: 12px;
    border-top: 1px solid var(--border-color);
    border-bottom: 0px;
    border-right: 0px;
    border-left: 0px;
  }
  .footer_links_tablet .accordion-button {
    background: transparent !important;
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    border: none;
    padding: 18px 20px 18px 0px;
    box-shadow: none;
    border-radius: 0;
  }
  .footer_links_tablet .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: var(--white) !important;
  }
  .footer_links_tablet .accordion-button::after {
    color: var(--white ) !important;
    font-size: 18px;
  }
  .accordion-button::after{
    background-image: url(../image/svg/angle-down.svg) !important;
  }
  .footer_links_tablet .accordion-body {
    background: transparent;
    padding: 16px 22px 18px 22px;
    border-top: none;
  }
  .footer_links_tablet .footer_list {
    display: block;
  }
  .footer_links_tablet .footer_list li {
    margin-bottom: 10px;
  }
  .footer_links_tablet .footer_link {
    color: var(--graycolor);
    display: block;
  }
     .footer_bottom_links {
    justify-content: flex-start;
    display: block;
    margin-top: 10px;
  }
  .border_top_contact{
    padding-top: 30px !important;
    text-align: center;
  }
  .footer_bottom_alignment{
    text-align: center;
  }
  .newsletter_box {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0% 100%);
  }
  .newsletter_box::before{
    display: none;
  }
  .newsletter_box::after{
    display: none;
  }

  /*categorybanner =*/
  .category_banner{
    min-height: auto;
  }
  .category_banner h1{
    font-size: 32px;
  }
  /*contact page */
  .contact_banner{
    min-height: auto;
  }
  .contact_banner h1{
    font-size: 32px;
  }
  /*about page */
  .cabout_banner{
    min-height: auto;
  }
  .about_banner h1{
    font-size: 32px;
  }
  .about_banner{
    min-height: auto;
  }
  .py_60{
    padding: 40px 0;
  }
  .wel_Natural_stone_img::after{
    display: none;
  }
  .wel_Natural_stone_img::before{
    display: none;
  }
  /*call section =*/
  .call_section_box .title span{
    font-size: 32px;
  }

  /*contact section =*/
  .contact_info_image{
    padding-top: 40px;
  }
  .contact_info_image::before{
    display: none;
  }
  .contact_info_image::after{
    display: none;
  }
  /*detail page */
  .detail_box{
      padding-left: 0;
      padding-top: 40px;
    }
  /*about us page */
      .wel_Natural_stone_img::after {

          width: 70px;
          height: 125px;
          bottom: -50px;
          left: -9px;

      }

      /* OUR PRODUCT RANGE  */
      .product_range_prev {
          top: 0;
          left: 45%;
          right: 0px;
          z-index: 2;
      }
      .product_range_next {
          right: 0;
          left: 340px;}

      }


/*========================================
 media query for mobile
============================================*/
@media screen and (max-width: 767px){
  /*comman classes
  =====================*/
  .py-60{
    padding: 40px 0px;
  }
  .pt-60{
    padding-top: 40px;
  }
  .pb-60{
    padding-bottom: 40px;
  }
  /* banner section 
===================================== */

  .custom-arrow{
    display: none !important;
  }
  .custom-next,.custom-prev{
    display: none !important;
  }
    /* Excellent Customer Service
  ================================================== */
  .Natural_stone h1{
    font-size: 27px;
  }
  .Natural_stone p{
    font-size: 16px;
  }


  .Natural_stone_img{
    display: none;
  }
  /* Latest Natural Stone cards
    ===================================== */
    .Feature_Products{
      padding-top: 30px;
    }
  .Feature_Products_row{
      padding-top: 30px;
      padding-bottom: 40px;
    }
    .laptop_button{
      display: none;
    }
    .mobile_button{
      display: block;
      text-align: center;
      padding-bottom: 40px;
    }
    .Feature_Products {
      padding-top: 20px;
    }

  .cards_prev {
      left: 10%;
  }
  .cards_next {
      right: 10%;
  }
    
  .shop_slider_btns {
      justify-content: flex-start !important;
       gap: 30px;
      }
      .recommend_card_img::after{
        display: none;
      }
      .shop_collection_section::after{
        display: none;
      }
      .shop_collection_section::before{
        display: none;
      }
      .shop_slider_btns{
        justify-content: center !important;
      }
      .shop_collection_section{
        padding: 40px 0;
      }
      .latest_slider{
        padding: 30px 14px;
      }
      .Latest_card_text{
        text-align: center;
      }
      .latest_slider .slick-slide{
        padding: 0 6px;
      }
      .Customer_Services{
        margin-top: 40px;
        margin-left: 14px !important;
        margin-right: 14px !important;
        margin-bottom: 0px !important;
      }
      .Customer_Services_img::after{
        display: none;
      }
      .Customer_Services_img::before{
        display: none;
      }
      .recommend_section{
        padding: 40px 0;
      }
      .Stone_Mart{
        padding:40px 0;
      }
      .stone_mart_slider{
        padding-top: 20px;
      }
      .slider_btn_hide{
        display: none;
      }
      .mobile_slide_btn{
        display: block;
      }
      .useful_links_row{
        flex-wrap: wrap;
        gap: 20px 0px !important;
      }
      .Useful_link_img_card{
        width: 85px;
        height: 85px;
        padding: 20px;
        justify-content: flex-start;
        
      }
      .Useful_link_img_card img{
        width: 100%;
      }
      .useful_card_center{
        width: 33%;
        display: flex;
        flex-direction: column;
        align-items: center;

      }
      .uselink_img::after{
        display: none;
      }
      .uselink_img::before{
        display: none;
      }
      .blog_section{
        padding: 40px 0;
      }
      .blog_row{
        padding-top: 25px;
      }
      .shop_slider_btns{
        display: none;
      }
  /*
  FOOTER RESPONSIVE CSS
  ======================================================*/
  .footer_main {
    padding: 3px 0 20px 0;
  }

  .footer_heading {
    font-size: 14px;
    border-bottom: 0px;
    margin-bottom: 15px;
  }
  .border_top_contact{
      border-top: 1px solid var(--border-color);
     padding-top: 10px;
  }
  .footer_link {
    font-size: 12px;
  }

  .newsletter_desc {
    font-size: 11px;
  }

  .payment_label {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .payment_methods {
    gap: 10px;
  }

  .payment_icon {
    height: 22px;
  }
  /*categorybanner
  =====================*/
  .category_banner h1{
    font-size: 28px;
  }
  .category_title{
    font-size: 16px;
  }
  .category_row{
    row-gap: 30px;
  }
  .page_text_section p{
    font-size: 16px;
  }
  /*sub category
  =====================*/
  .mobile_hide{
    display: none;
  }
  .filter_selction{
    text-align: left;
  }
  .filer_row{
    margin-bottom: 20px;
  }
  /*call section 
  =====================*/
  .call_section_box{
    padding: 40px 20px;
  }
  .call_section_box .title span{
    font-size: 25px;
  }
  /*Follow section
  ====================*/
  .follow_us_insta{
    justify-content: center;
  }
  .follow_us_link{
    text-align: center;
  }
  /*contact page*/
  .contact_banner h1{
    font-size: 28px;
  }
  .contact_info{
    padding: 40px 0;
  }
  .contact_info h1{
    font-size: 24px;
  }
  .contact_info p{
    font-size: 16px;
    margin-bottom: 12px;
  }
  .contact_info span{
    font-size: 16px;
  }
  .contact_form{
    padding-bottom: 40px;
  }
  .contact_form_box{
    padding: 30px;
  }
  .contact_form h2{
    font-size: 24px;
    margin-bottom: 18px;
  }
  .contact_form_box span{
    font-size: 16px;
  }
  .contact_form_box p{
    font-size: 16px;
  }
  .contact_form_box a{
    font-size: 16px;
  }
  .contact_form_row{
    gap: 24px;
  }
  .form_box{
    padding-top: 30px;
  }
  .form_btn{
    text-align: center;
  }

  /*about page
  =======================*/
  .about_banner h1{
    font-size: 28px;
  }
  .Product_range_section::after{
    display: none;
  }
  .Product_range_section::before{
    display: none;
  }



  /*product detail page 
  =========================*/
  .product-section{
    padding: 40px 0;
  }
  .keyfactor_list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-meta{
    font-size: 16px;
  }
  .product-title{
    font-size:28px;
  }
  .product-price{
    font-size:18px;
    margin: 12px 0;
  }
  .spec-table td{
    font-size: 16px;
  }
  /*about us page*/
  .product_range_prev {
        top: 0;
        left: 40%;
        right: 0px;
        z-index: 2;
    }
    .product_range_next {

        left: 35%;
    }
    .vedio_bg_img{
      aspect-ratio: ;
    }
  

}

@media (min-width: 992px) {
  
  .mobile-icon-bar {
    display: none !important;
  }
  .sidebar-overlay {
    display: none !important;
  }
  .sidebar {
    display: none !important;
  }
}
