@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --themebg:#810909;
  --themebg2:#ec9049;
  --Jost: "Jost", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--Jost);
  background: #fff;
}

a {
  text-decoration: none;
}

.header_top {
  padding: 5px 0;
}
.header_top .logo_style {
  color: var(--white);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .fixedtop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  .navbar-nav {
    justify-content: space-between;
  }
  .header_top .logo_img {
    filter: brightness(0) invert(1);
  }
  .header_top .social_media_header a {
    color: #fff;
  }
  .header_top .menu_style {
    background: none !important;
  }
  .header_top .menu_style .nav-link {
    color: #fff !important;
  }
  .header_top .searchbox {
    position: relative;
  }
  .header_top .searchbox .form-control {
    background: transparent;
    font-size: 14px;
    height: 42px;
    padding-right: 40px;
  }
  .header_top .searchbox input::-webkit-input-placeholder {
    color: #fff;
  }
  .header_top .searchbox input:-moz-placeholder {
    color: #fff;
  }
  .header_top .searchbox .searchbtn {
    border: 0;
    background: none !important;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    color: #fff;
    z-index: 1;
  }
  .header_top:hover {
    background: #fff !important;
  }
  .header_top:hover .menu_style .nav-link {
    color: #000000 !important;
  }
  .header_top:hover .social_media_header a {
    color: #000;
  }
  .header_top:hover .logo_img {
    filter: none;
  }
  .header_top:hover .searchbox input::-webkit-input-placeholder {
    color: #000000;
  }
  .header_top:hover .searchbox input:-moz-placeholder {
    color: #000000;
  }
  .header_top:hover .searchbtn {
    color: #000;
  }
  .navsty {
    background: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .navsty .menu_style .nav-link {
    color: #000000 !important;
  }
  .navsty .social_media_header a {
    color: #000;
  }
  .navsty .logo_img {
    filter: none;
  }
  .navsty .searchbox input::-webkit-input-placeholder {
    color: #000000;
  }
  .navsty .searchbox input:-moz-placeholder {
    color: #000000;
  }
  .navsty .searchbox .searchbtn {
    color: #000;
  }
}
.logo_img img {
  max-height: 90px;
}

.menu_style {
  /* Mega menu */
  /* Navbar icons */
}
.menu_style .dropdown-menu {
  opacity: 0;
  transform: translateY(0px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.menu_style .dropdown-menu.show {
  animation: dropdownFade 0.3s ease forwards;
  visibility: visible;
}
.menu_style .nav-item.dropdown.dropdown-mega {
  position: static;
}
.menu_style .nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 0%;
}
.menu_style .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.menu_style .navbar-toggler:focus {
  box-shadow: none;
}
.menu_style .navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 0px;
  transition: transform 0.2s ease, background 0.2s ease;
  left: 0;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger span:last-child {
  bottom: 10%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  width: 0;
  left: 50%;
}
.menu_style .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
.menu_style .icons {
  display: inline-flex;
  margin-left: auto;
}
.menu_style .icons a {
  color: #ccc !important;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.menu_style .icons a:hover {
  color: #fff;
  text-shadow: 0 0 30px #fff;
}

/* scroll ke baad apply hone wali class */
/* Keyframes for smooth slideDown */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Large screens */
@media (min-width: 992px) {
  .menu_style .navbar-nav {
    gap: 15px;
  }
  .menu_style .nav-link {
    text-transform: uppercase;
    font-weight: 400;
  }
  .navbar {
    padding: 0;
  }
  .navbar .dropdown-menu {
    line-height: initial;
    display: block;
    opacity: 0;
    transform: translateY(0px);
    visibility: hidden;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    animation: dropdownFade 0.3s ease forwards;
    visibility: visible;
  }
  .dropdown:hover > .dropdown-menu {
    margin-top: 0rem;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
  }
  .banner_style .carousel-item {
    background: #000;
  }
  .banner_style .carousel-item img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.7;
  }
}
/* If you want different width for large screens */
@media only screen and (max-width: 768px) {
  .offcanvas.offcanvas-end,
  .offcanvas.offcanvas-start {
    max-width: 80%;
  }
  .searchbox {
    position: relative;
  }
  .searchbox .form-control {
    background: transparent;
    font-size: 14px;
    height: 42px;
    padding-right: 40px;
  }
  .searchbox .searchbtn {
    border: 0 !important;
    background: none !important;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    color: #000000;
    z-index: 1;
  }
}
.btn-1 {
  display: inline-block;
  text-align: center;
  padding: 0.6em 1.2em;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #070087 50%, rgb(81, 0, 255) 100%);
  color: #fff;
  font-size: 1.05em;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  box-shadow: inset 0 0 rgb(0, 0, 0);
}
.btn-1:hover {
  box-shadow: inset 12em 0 #000000;
  color: #fff;
}

.btn-2 {
  display: inline-block;
  text-align: center;
  padding: 0.6em 1.2em;
  letter-spacing: 1px;
  font-size: 1.05em;
  border: none;
  transition: all 0.3s ease-out;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgb(253, 29, 29) 50%, rgb(255, 149, 0) 100%);
  color: var(--white);
  border-radius: 5px;
}
.btn-2::before, .btn-2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 55%;
  background: var(--themebg);
  top: 0;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s ease-out;
}
.btn-2::before {
  left: 0;
}
.btn-2::after {
  right: 0;
}
.btn-2:hover {
  color: var(--white);
}
.btn-2:hover::before, .btn-2:hover::after {
  width: 0;
}

.btn-3 {
  display: inline-block;
  text-align: center;
  padding: 0.6em 1.2em;
  letter-spacing: 1px;
  font-size: 1.05em;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  position: relative;
  background: linear-gradient(-45deg, #b60000, #ffdd00, #c00, #ff5500);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #fff;
  z-index: 1;
}
.btn-3:hover {
  color: var(--white);
}
.btn-3::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgb(22, 0, 163) 50%, rgb(3, 0, 84) 100%);
  right: 0;
  top: 0;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s ease-out;
}
.btn-3:hover::after {
  width: 100%;
}

.title_head {
  text-align: center;
  margin-bottom: 2em;
}
.title_head h2 {
  font-size: 2.2rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0px;
  margin: 0;
}
.title_head p {
  margin: 0;
  padding: 0;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Hidden by default */
  z-index: 1000;
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: #555;
}

.product_list {
  display: block;
  text-align: center;
  background: #fff;
  overflow: hidden;
  padding: 0px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.product_list img {
  width: 100%;
  height: clamp(180px, 25vw, 250px);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.product_list h6 {
  font-size: 1rem;
  font-weight: 400;
  border-bottom: #555 1px solid;
  display: inline-block;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product_list:hover {
  transform: translateY(-5px);
}
.product_list:hover h6 {
  color: #CF7B69;
}
.product_list:hover img {
  transform: scale(1.05);
}

.product_list_page {
  display: block;
  text-align: center;
  background: #fff;
  overflow: hidden;
  padding: 0px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}
.product_list_page .new_bx {
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 999;
  background: #CF7B69;
  color: #fff;
  border-radius: 25px;
  padding: 0.1em 0.8em;
}
.product_list_page img {
  width: 100%;
  height: clamp(180px, 25vw, 300px);
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.product_list_page h6 {
  font-size: 0.8rem;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
}
.product_list_page p {
  font-size: 0.8em;
  color: #212529;
  font-weight: 300;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
.product_list_page:hover {
  transform: translateY(-5px);
}
.product_list_page:hover h6 {
  color: #CF7B69;
}
.product_list_page:hover img {
  transform: scale(1.05);
}

.filer_left {
  top: 160px;
}

@media (max-width: 678px) {
  .product_list {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .product_list img {
    height: clamp(200px, 25vw, 280px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about_sty {
  margin-bottom: 1.8em;
}
.about_sty h1 {
  font-size: 1.5em;
}
.about_sty .abtn {
  color: #191919;
  text-decoration: underline;
  font-style: italic;
}
.about_sty .abtn:hover {
  color: #CF7B69;
}

.footer_style {
  background: #fff;
  color: #191919;
  padding: 50px 0;
  font-family: var(--Jost);
  animation: fadeUp 0.8s ease-in-out;
  border-top: rgba(51, 51, 51, 0.2) 1px solid;
}
.footer_style h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.footer_style h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #CF7B69;
  margin-top: 8px;
}
.footer_style ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_style ul li {
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
.footer_style ul li:nth-child(2) {
  animation-delay: 0.5s;
}
.footer_style ul li:nth-child(3) {
  animation-delay: 0.7s;
}
.footer_style ul li:nth-child(4) {
  animation-delay: 0.9s;
}
.footer_style ul li:nth-child(5) {
  animation-delay: 1.1s;
}
.footer_style ul li a {
  color: #191919;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}
.footer_style ul li a:hover {
  color: #CF7B69;
}
.footer_style ul li a:hover::after {
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social_media {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.social_media a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 1em;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social_media a:hover {
  background: #CF7B69;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.story_bx {
  display: block;
  position: relative;
  overflow: hidden;
}
.story_bx h4 {
  margin-top: 0.5em;
  color: #000;
}
.story_bx img {
  border-radius: 0.5em;
}

.owl_gallery {
  background: #f0f1f2;
  padding: 3em 0;
}
.owl_gallery .r_box {
  color: #000;
  text-align: center;
  display: block;
}
.owl_gallery .r_box h6 {
  margin-top: 0.5em;
  border-bottom: #333 1px solid;
  display: inline-block;
}
.owl_gallery .r_box img {
  height: 320px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.owl_gallery .r_box:hover h6 {
  color: #CF7B69;
  border-color: #CF7B69;
}

.concept_bx {
  color: #000;
  display: block;
  text-align: center;
}
.concept_bx img {
  max-width: 100%;
  height: 90px;
}
.concept_bx h5 {
  margin: 1em 0 0.5em 0;
  text-transform: uppercase;
}
.concept_bx p {
  color: #333;
}

.breadcrumb_style {
  background-position: center;
  background-size: cover;
  position: relative;
}
.breadcrumb_style img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.breadcrumb_style::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.breadcrumb_style .breadcrumbb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.breadcrumb_style .breadcrumbb a {
  color: #fff;
}
.breadcrumb_style .breadcrumbb .active {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb_style .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.product_page h1 {
  font-size: 2em;
}

a {
  color: #000;
}

.showzoom {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

#show-img {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-img {
  width: 350px;
  height: 70px;
  margin-top: 10px;
  position: relative;
  left: 25px;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left {
  transform: rotate(180deg);
}

.small-img .icon-right {
  right: 0;
}

.small-img .icon-left:hover, .small-img .icon-right:hover {
  opacity: 0.5;
}

.small-container {
  width: 310px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
  -o-object-fit: cover;
     object-fit: cover;
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

#big-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.pd_list h5 {
  color: #CF7B69;
  margin-bottom: 1em;
}
.pd_list ul {
  margin: 0;
  padding: 0;
}
.pd_list ul li {
  display: block;
  width: 50%;
  margin-bottom: 0.5em;
}
.pd_list ul li span {
  font-weight: 300;
}
.pd_list h6 {
  margin: 0;
  padding: 0 0 0.1em 0;
  text-transform: capitalize;
}

.list_Bx {
  margin-top: 1em;
}
.list_Bx ul {
  margin: 0;
  padding-left: 0.8em;
}
.list_Bx ul li {
  font-size: 12px;
  line-height: 22px;
}

.product_Datails {
  font-size: 0.9em;
}

.hwork {
  background: #eaeaea;
  padding: 1em;
  text-align: center;
}
.hwork h5 {
  margin: 6px 0;
  text-transform: capitalize;
}/*# sourceMappingURL=styles.css.map */


/* Pagination Wrapper */
.pagination {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 10px;
}

/* Pagination List Item */
.pagination li {
  display: inline-block;
}

/* Pagination Links */
.pagination li a {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  background: #f3f3f3;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.pagination li a:hover {
  background: linear-gradient(45deg, #333, #545153);
  color: #fff;
  /* transform: translateY(-3px); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Active Page */
.pagination li.active a {
  background: linear-gradient(45deg, #cf7b69, #e5895b);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .pagination li a {
    padding: 8px 14px;
    font-size: 13px;
  }
}

.product_list_page .collection-carpet-image {
  height: clamp(200px, 40vw, 340px) !important;
}

/*============================Contact Page CSS=================================*/
.contact-section {
  padding: 60px 0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  background: #f8f9fa;
  padding: 50px 40px;
}

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
  color: #555;
}

.info-box {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.info-box h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.info-box h5 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.info-flex {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.icon {
  min-width: 40px;
  height: 40px;
  background: #2c2d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-text {
  font-size: 14px;
  color: #555;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  padding: 50px 40px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

/* .form-group input,
.form-group textarea {
 width: 100%;
 padding: 14px;
 border-radius: 8px;
 border: 1px solid #ddd;
}

textarea {
 height: 120px;
 resize: none;
} */

.btn-submit {
  background: #333;
  color: #fff;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #3a3939;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/*============================Contact Page CSS END=================================*/

 header .input-group .form-control::placeholder {
  color: #fff !important;
 }

 header:hover .input-group .form-control::placeholder {
  color: #333 !important;
 }

header.scroll-top .input-group .form-control::placeholder {
  color: #333 !important;
 }
 