@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", serif;
}

a {
  text-decoration: none;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

.error {
  color: red;
}

.success {
  color: green;
}

a:hover {
  text-decoration: none;
}

.headline {
  margin-bottom: 50px;
}

.headline h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.headline h3 {
  font-size: 18px;
  margin-top: 0;
}

.headline-white {
  color: #fff;
}

.bg-gray {
  background: #f2f3f3 !important;
}

.bg-white {
  background: #ffffff !important;
}

.top {
  width: 100%;
  height: 40px;
  /* background: #ececec; */
  background: #131921;
}

.top .left {
  float: left;
}

.top .left ul {
  padding-top: 8px;
}

.top .left ul li {
  list-style-type: none;
  float: left;
  margin-right: 14px;
  /* color: #0d1452; */
  color: white;
}

.top .left ul li i {
  /* color: #0d1452; */
  color: white;
}

.top .right {
  float: right;
}

.top .right ul {
  padding-top: 8px;
}

.top .right ul li {
  list-style-type: none;
  float: left;
  margin-left: 5px;
}

.top .right ul li a {
  /* color: #0d1452; */
  color: white;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: all 0.4s ease;
}

.top .right ul li a:hover {
  background: #1c257e;
  color: #fff;
}

.header {
  width: 100%;
  padding: 1em 0;
  height: auto;
  background: #fff9e9;
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure it stays above other content */
}

.header .inner {
  height: auto;
  display: table;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.header .logo {
  float: none;
}

.header .logo img {
  height: 4em;
}

.header .navbar-form .form-control {
  width: 300px;
}

/* Ensures container alignment */
.search-area {
  display: flex;
  justify-content: flex-start; /* Aligns content to the left */
  align-items: center; /* Centers vertically */
}

/* Wrapper for input and button */
.input-with-button {
  position: relative;
  width: 100%; /* Ensures adaptability */
  max-width: 300px; /* Optional: Limit input width */
}

.input-with-button i {
  position: absolute;
  left: 10px; /* Adds spacing for the icon */
  top: 50%;
  transform: translateY(-50%); /* Centers icon vertically */
  color: #aaa; /* Adjust icon color */
  font-size: 16px;
  pointer-events: none; /* Prevents blocking clicks */
}

/* Input styling */
.input-with-button input {
  width: 100%; /* Full width */
  padding-left: 35px; /* Space for icon */
  padding-right: 90px; /* Space for button */
  height: 40px;
  box-sizing: border-box;
  border-radius: 2em;
  border: 1px solid #ccc;
  font-size: 12px;
}

/* Button styling */
.input-with-button button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 2em;
  color: #fff;
  background-color: #000; /* Bootstrap danger button color */
  font-size: 12px;
}

.header .navbar-form .search-top {
  width: 100%;
}

.navbar {
  background-color: #fff9e9;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-right: 1em;
}

.dropdown-menu {
  background-color: #fff9e9;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: #fff9e9;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0.1rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.navbar-toggler {
  border: none;
  color: #1b1b1b !important; /* Ensure visibility */
  padding: 10px; /* Adjust padding */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.navbar-toggler-icon {
  color: #1b1b1b !important; /* Ensure visibility */
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu-container {
  width: 100%;
  margin: 0 auto;
  color: #333;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile {
  display: none;
  padding: 20px;
  color: #fff;
}

.menu-mobile:hover {
  color: #fff;
}

.menu-mobile:after {
  content: "\f067";
  font-family: "FontAwesome";
  font-size: 2.5rem;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
}

.menu-dropdown-icon:before {
  content: "\f067";
  font-family: "FontAwesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: #fff9e9;
  color: #333;
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
  right: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.5em 20px;
  display: block;
  color: blue;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #fff9e9;
  padding: 20px;
  position: absolute;
  z-index: 999999;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  padding: 0.2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #7f1323;
}

.menu > ul > li > ul.normal-sub {
  width: 220px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accnt .dropdown-menu {
  background-color: #fff9e9;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.accnt .dropdown-menu {
  margin: 0 !important;
  left: 18%;
}

.accnt .dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  display: none;
}

.accnt a {
  color: #333;
}

/***** Bx-Slider *****/
.bx-wrapper {
  position: relative;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
}

.bx-controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}

.welcome {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #333;
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

.welcome .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #333;
}

.welcome h2 {
  color: #fff;
  margin-bottom: 25px;
}

.welcome p {
  color: #fff;
}

.welcome p.button {
  color: #fff;
  margin-top: 35px;
}

.welcome p.button a {
  background: #0d1452;
  color: #fff;
  padding: 10px 14px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.welcome p.button a:hover {
  background: #fff;
  color: #0d1452;
}

.service {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Ensures even spacing */
  gap: 5%; /* Adds spacing between items */
}

.service .item {
  background-color: #fff2cf;
  padding: 1em;
  border-radius: 20px;
  display: flex;
  flex-direction: row; /* Change to row */
  align-items: center; /* Align items vertically */
  justify-content: center; /* Space them nicely */
  width: 22%; /* Adjust width */
  box-sizing: border-box;
  gap: 10px; /* Adds spacing between image and text */
}

.service .photo img {
  width: 50px; /* Adjust image size */
  height: 50px; /* Ensures uniform size */
  object-fit: cover; /* Keeps image aspect ratio */
  border-radius: 50%; /* Optional: Makes the image round */
}

.service .item p {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}
.service .icon {
  text-align: center;
}

.service .icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #0d1452;
  color: #fff;
  font-size: 38px;
  border-radius: 50%;
}

.product .product-carousel {
  position: relative;
}

.product .owl-controls {
  position: absolute;
  top: -60px;
  right: 0;
}

.product .owl-controls .owl-prev,
.product .owl-controls .owl-next {
  background: #353535;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding-left: 13px;
  padding-right: 13px;
}

.product .owl-controls .owl-prev i,
.product .owl-controls .owl-next i {
  font-size: 14px;
}

.product .owl-controls .owl-prev:hover,
.product .owl-controls .owl-next:hover {
  background: #0d1452;
}

.product .item {
  border: 2px solid #181616;
  border-radius: 20px;
}

.product .text {
  background: #000;
  color: #fff;
  padding: 15px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.product .text a {
  color: #fff;
}

.product .text .h-20 {
  height: 4em;
}
.product button {
  background-color: #000 !important;
  border: 1px solid #fff;
  color: #fff;
  padding: 1em 1.5em;
  width: 100%;
  border-radius: 50px; /* Smooth curved edges */
  font-size: 0.8em;
  right: 0;
}

.product .text del {
  color: #9d9d9d;
}

.product .text h3 {
  font-weight: 700;
  text-align: center;
  color: #353535;
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.product .text h3 a {
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.product .text h3 a:hover {
  text-decoration: none;
}

.product .text h4 {
  color: #0d1452;
  text-align: center;
  font-size: 18px;
}

.product .text p {
  font-size: 14px;
  margin-top: 20px;
}

.product .text p a {
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}
.product .out-of-stock {
  width: 100%;
  text-align: center;
}

.product .out-of-stock .inner {
  display: inline-block;
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
  text-decoration: line-through;
}

.product .text .rating {
  text-align: center;
}

.product .item .thumb {
  position: relative;
  overflow: hidden;
  width: 100%; /* Ensures the container fills its parent */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px; /* Set fixed height for all thumbs */
}

.product .item .thumb .photo {
  width: 100%;
  height: 100%;
  background-color: rgb(236, 234, 234);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .item .thumb .photo img {
  max-width: 250px; /* Ensures images do not exceed 250px width */
  max-height: 250px; /* Ensures images do not exceed 250px height */
  width: auto; /* Maintains original width */
  height: auto; /* Maintains original height */
  object-fit: contain; /* Ensures the whole image fits within the box without cropping */
}
.product .item .thumb .overlay {
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: rgba(255, 255, 255, 0.6);
}

.product .item:hover .thumb .overlay {
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.product-cat {
  padding-top: 14px;
}

.product-cat .item {
  margin-bottom: 30px;
}

.product .item-product-cat {
  border: 0;
}
.product .item-product-cat .inner {
  border-radius: 20px;
  margin-bottom: 2em;
}

.product .item-product-cat .thumb .photo {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px; /* Rounded top-left corner */
  border-top-right-radius: 20px; /* Rounded top-right corner */
}

.product .item-product-cat .thumb .photo img {
  border-radius: 20px;
}

.product .item-search-result {
  border: 0;
}
.product .item-search-result .inner {
  border: 2px solid #e5e5e5;
}
.product .item-search-result:nth-of-type(4n + 1) {
  clear: both;
}
.product .item-product-cat:nth-of-type(3n + 1) {
  clear: both;
}

.testimonial-v1 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.testimonial-v1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #353535;
  opacity: 0.7;
}

.testimonial-v1 .container {
  position: relative;
  z-index: 9999;
}

.testimonial-v1 .heading {
  margin-bottom: 50px;
}

.testimonial-v1 .heading h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .heading p {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.testimonial-v1 .testimonial-carousel {
  text-align: center;
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.testimonial-v1 .content .comment {
  color: #fff;
  padding: 14px 50px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
}

.testimonial-v1 .content .comment p {
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
}

.testimonial-v1 .author {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.testimonial-v1 .photo {
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
}

.testimonial-v1 .photo img {
  width: 80px;
  height: 80px;
  float: right;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.testimonial-v1 .text {
  display: inline-block;
  vertical-align: top;
}

.testimonial-v1 .text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  margin-top: 10px;
}

.testimonial-v1 .text h4 {
  font-size: 13px;
  color: #fff;
  text-align: left;
}

.testimonial-v1 .owl-nav {
  margin-top: 20px;
}

.testimonial-v1 .owl-nav i {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 20px;
  text-align: center;
}

.testimonial-v1 .owl-nav .owl-prev,
.testimonial-v1 .owl-nav .owl-next {
  color: #fff;
  background: none;
  position: absolute;
  top: 14%;
}

.testimonial-v1 .owl-nav .owl-prev i,
.testimonial-v1 .owl-nav .owl-next i {
  font-size: 30px;
  font-weight: bold;
}

.testimonial-v1 .owl-nav .owl-prev {
  left: -80px;
}

.testimonial-v1 .owl-nav .owl-next {
  right: -80px;
}

.testimonial-v1 .owl-nav .owl-prev:hover,
.testimonial-v1 .owl-nav .owl-next:hover {
  background: none;
}

/*****Home Category *********/
.home-category1 {
  padding: 20px;
  border-radius: 20px; /* Smooth curved edges */
}

.home-category2 {
  padding: 20px;
  background-color: #7f1323;
  border-radius: 20px; /* Smooth curved edges */
  color: #fff;
  height: 50vh;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.home-category3 {
  padding: 20px;
  background-color: #7f1323;
  border-radius: 20px; /* Smooth curved edges */
  color: #fff;
  height: 50vh;
}

.home-category2 button {
  background-color: #7f1323 !important;
  border: 1px solid #fff;
  color: #fff;
  padding: 1em 2em;
  border-radius: 50px; /* Smooth curved edges */
  font-size: 12px;
}

/*****other Category *********/
.other-category1 {
  padding: 20px;
  background-color: #f0f0f0;
  height: 50vh;
}

.other-category2 {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 20px; /* Smooth curved edges */
  color: #000;
  height: 50vh;
}

.other-category3 {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 20px; /* Smooth curved edges */
  color: #000;
  height: 50vh;
}

.other-category1 button {
  background-color: #7f1323 !important;
  border: 1px solid #fff;
  color: #fff;
  padding: 1em 2em;
  border-radius: 50px; /* Smooth curved edges */
  font-size: 12px;
}

.home-blog {
  width: 100%;
  height: auto;
  padding: 70px 0;
  overflow: hidden;
}

.home-blog .item {
}

.home-blog .item .photo {
  width: 100%;
  height: 300px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-blog .text {
  padding: 14px;
  background: #f2f3f3;
}

.home-blog .text h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}

.home-blog .text p.button {
  margin-top: 25px;
}

.home-blog .text p.button a {
  background: #0d1452;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.4s ease;
}

.home-blog .text p.button a:hover {
  background: #333;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #e0eae9;
  padding: 50px 0 30px 0;
  color: #000;
  font-size: 14px;
}
#footer .footer-top {
  background: #e0eae9;
  border-bottom: 1px solid #7e7e7e;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info img {
  width: 100%;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #000;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #000;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  color: #000;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 3px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #797979;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #000;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #01b1d7;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #0187a4;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.scrollup {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  display: none;
}
.scrollup i {
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 50%;
  background: #0d1452;
  color: #fff;
  border: 4px solid #0d1452;
  text-align: center;
  font-size: 26px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.scrollup i:hover {
  opacity: 1;
  filter: alpha(opacity=1);
}

ul.prod-slider li {
  height: 450px;
  background-repeat: no-repeat;
  background-size: contain; /* Ensures the whole image fits inside */
  background-position: center center;
}
ul.prod-slider li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99999999;
}
.bx-controls {
  display: none;
}
.prod-pager-thumb {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: top center;
}
#prod-pager {
  margin-top: 20px;
}

#prod-pager a {
  float: left;
  margin-right: 3px;
}

ul.nav-tabs {
  margin-top: 50px;
}
.product .p-title h2 {
  color: #0d1452;
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

.product .p-status {
  margin-bottom: 10px;
}

.product .p-review {
  margin-bottom: 10px;
}

.product .p-price {
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.product .p-price span {
  font-size: 30px;
}

.product .p-price del {
  color: #c7c7c7;
}

.product .p-short-des {
  margin-bottom: 30px;
}

.product .p-quantity {
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 35px;
  font-size: 14px;
}

.product .p-quantity input[type="number"] {
  height: 30px;
  width: 100px;
  border: 2px solid #c7c7c7;
}

.product .p-quantity .select2-container--default .select2-selection--single {
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 12px;
}

.product
  .p-quantity
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 30px;
}

.product
  .p-quantity
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
  right: 10px;
}

.product
  .p-quantity
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.product .i-quantity {
  width: 100px;
}

.product .qty {
  text-align: center;
  padding: 8px 0; /* Space for buttons */
  -moz-appearance: textfield; /* Remove default arrows in Firefox */
  border: 0 solid #fff;
  font-size: 12px;
}

/* Remove number input arrows for Chrome, Safari, Edge, and Opera */
.product .qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  border: 0 solid #fff;
  font-size: 12px;
}

.product .qty-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: bold;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ececec !important;
}

.product .qty-minus {
  left: 0;
  border-radius: 5px;
  background-color: #ececec !important;
  color: #333;
}

.product .qty-plus {
  right: 0;
  border-radius: 5px;
  background-color: #ececec !important;
  color: #333;
}

.product .btn-cart {
  margin-bottom: 30px;
}

.product .btn-cart a {
  padding: 10px 14px;
  /* background: #0d1452; */

  color: #fff;
}

.product .btn-cart1 input[type="submit"] {
  background-color: #7f1323 !important;
  border: 1px solid #fff;
  color: #fff;
  padding: 1em 2em;
  border-radius: 50px; /* Smooth curved edges */
  font-size: 12px;
  right: 0;
  width: 100%;
}

.product .share {
  line-height: 30px;
  font-weight: 700;
}

.product .nav {
  background: transparent;
}

.product .nav-tabs li a {
  font-weight: 700;
  color: #333;
}

.product .tab-content > .tab-pane {
  padding-top: 20px;
}

.review-form h2 {
  font-size: 24px;
  font-weight: 700;
}
.review-form .btn-default {
  background: #0d1452;
  color: #fff;
  border-radius: 0;
  border: 0;
  padding: 10px 14px;
}
.rating-section {
  margin-bottom: 14px;
}

.page-banner {
  width: 100%;
  height: 50vh;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  /* padding-top: 80px;
  padding-bottom: 80px; */
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

.page-banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  /* background: #333; */
  background: #131921;
}

.page-banner h1 {
  color: #fff;
  text-align: center;
  z-index: 999;
  position: relative;
}

.page {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page h3.special {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.page h3.special:after {
  content: "";
  position: absolute;
  width: 50px;
  background: #0d1452;
  left: 0;
  bottom: -2px;
  height: 4px;
}

.cart {
  width: 100%;
  height: auto;
}

.cart .product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart .product-details {
  display: flex;
  flex-direction: column;
}

.cart-table {
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.cart table img {
  width: 100px;
}

.cart table tr td {
  vertical-align: middle;
}

.cart input[type="number"] {
  height: 30px;
  width: 100px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
}

.cart .select2-container--default .select2-selection--single {
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 12px;
}

.cart
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 30px;
}

.cart
  .p-quantity
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
  right: 10px;
}

.cart
  .p-quantity
  .select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}

.cart .i-quantity {
  width: 100px;
}

.cart .qty {
  text-align: center;
  padding: 8px 0; /* Space for buttons */
  -moz-appearance: textfield; /* Remove default arrows in Firefox */
  border: 0 solid #fff;
  font-size: 12px;
}

/* Remove number input arrows for Chrome, Safari, Edge, and Opera */
.cart .qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  border: 0 solid #fff;
  font-size: 12px;
}

.cart .qty-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: bold;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ececec !important;
}

.cart .qty-minus {
  left: 0;
  border-radius: 10px;
  background-color: #ececec !important;
  color: #333;
}

.cart .qty-plus {
  right: 0;
  border-radius: 10px;
  background-color: #ececec !important;
  color: #333;
}

.cart table tr td .fa-trash {
  color: #272727;
  font-size: 14px;
  text-align: center;
}

.cart table tr td.total-text,
.cart table tr th.total-text {
  text-align: right;
  font-size: 14px;
}

.cart table tr td.total-amount,
.cart table tr th.total-amount {
  text-align: right;
  font-size: 14px;
}

.cart-buttons {
  width: 100%;
  float: right;
  margin-top: 40px;
}

.cart-buttons ul {
  float: right;
}

.cart-buttons li {
  float: left;
  list-style-type: none;
  margin-left: 14px;
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  background: #19191a;
  border: 0;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}

.cart-buttons li input[type="submit"]:hover,
.cart-buttons li a:hover {
  background: #333;
  color: #fff;
}

/**** Delivery options *****/
.delivery-options {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.delivery-option {
  background-color: #f8f8f8;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  position: relative;
}

.delivery-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-left: auto; /* Pushes the radio button to the right */
}

.delivery-option label {
  cursor: pointer;
  width: 100%;
}

.delivery-option.active,
.delivery-option:hover {
  border: 1px solid black;
  background-color: white;
}

.text-success {
  font-weight: bold;
}

/**** Checkout form *****/
.cform input[type="submit"] {
  background: #0d1452;
  border: 0;
}

.cform address span,
.cform address a span {
  color: #0d1452;
}

.page iframe {
  width: 100%;
}

.gal-container {
  padding: 12px;
}
.gal-item {
  overflow: hidden;
  padding: 3px;
}
.gal-item .box {
  height: 350px;
  overflow: hidden;
}
.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gal-item a:focus {
  outline: none;
}
.gal-item a:after {
  content: "\e003";
  font-family: "Glyphicons Halflings";
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after {
  opacity: 1;
}
.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-open .gal-item .modal-body {
  padding: 0px;
}
.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}
.modal-open .gal-item button.close:focus {
  outline: none;
}
.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}
.gal-container .modal-dialogue {
  width: 80%;
}
.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}
.gal-container .description h4 {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}
@media (min-width: 768px) {
  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
}
@media (max-width: 768px) {
  .gal-container .modal-content {
    height: 250px;
  }
}
/* Footer Style */
i.red {
  color: #bc0213;
}
.gal-container {
  padding-top: 0px;
  padding-bottom: 75px;
}

.videos {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}
.videos .adv img {
  width: 100%;
  height: auto;
}
.videos .prop-4-col:nth-of-type(4n + 1) {
  clear: both;
}
.videos .prop-3-col:nth-of-type(3n + 1) {
  clear: both;
}
.videos h2 {
  color: #464646;
  font-family: "Open Sans", serif;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.videos h3 {
  color: #464646;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
}
.single-room {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.75);
}
.single-room .photo-col2 {
  width: 100%;
  height: 360px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room .photo-col3 {
  width: 100%;
  height: 150px;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-room-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.single-room-text h2 {
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0;
}
.single-room-text h2 a {
  color: #333;
  padding: 8px !important;
  font-weight: 600;
  display: block;
}

table.bill-address tr td:nth-of-type(1) {
  font-weight: bold;
  width: 200px;
}

.user-sidebar {
  max-width: 280px;
  margin: auto;
}

.user-sidebar ul {
  padding: 0;
  margin: 0;
}

.user-sidebar .btn {
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.user-sidebar .btn:hover {
  transform: scale(1.05);
}

.user-content h3 {
  margin-bottom: 20px;
}

/**
 * ---------------------------------------------------
 * Sidebar Style
 * ---------------------------------------------------
 */
.sidebar {
  width: 100%;
}

.widget {
  overflow: hidden;
  margin-bottom: 30px;
}

.widget-search input {
  height: 36px;
  border: 2px solid #afafaf;
  float: left;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.widget-search input:focus {
  border: 2px solid #0d1452;
}

.widget-search button {
  width: 42px;
  height: 36px;
  float: left;
  border: 2px solid #0d1452;
  background: #0d1452;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-left: 5px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.widget-search button:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0d1452;
}

.widget ul li {
  display: block;
  float: none;
  color: #333;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.widget ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  color: #333;
  top: 1px;
  left: 3px;
}

.widget ul li a {
  color: #333;
  font-size: 14px;
}

.widget ul li a:hover {
  color: #0d1452;
}

.widget ul.tag-cloud li {
  display: inline-block;
  padding-left: 0;
  padding: 4px 10px;
  border: 2px solid #afafaf;
  font-size: 12px;
  margin-right: 5px;
}

.widget ul.tag-cloud li:before {
  content: "";
}

.widget ul.tag-cloud li:hover {
  background: #0d1452;
  border: 2px solid #0d1452;
}

.widget ul.tag-cloud li:hover a {
  color: #fff;
}

.card .nav-tabs {
  border-bottom: 2px solid #ddd;
  background: #fff;
}
.card .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
}
.card .nav-tabs > li > a {
  border: none;
  color: #666;
}
.card .nav-tabs > li.active > a,
.card .nav-tabs > li > a:hover {
  border: none;
  color: #0d1452 !important;
  background: transparent;
}
.card .nav-tabs > li > a::after {
  content: "";
  background: #0d1452;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}
.card .nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}
.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff;
}
.tab-pane {
  padding: 14px 0;
}
.tab-content {
  padding: 20px;
}

.card {
  background: #fff none repeat scroll 0% 0%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.vid iframe {
  width: 100%;
  height: 250px;
}

div.pagination {
  padding: 3px;
  margin: 3px;
  z-index: 1000;
  font-size: 14px;
  margin-bottom: 20px;
}

div.pagination a {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  text-decoration: none; /* no underline */
  background-color: #0d1452;
  color: #fff;
  font-weight: bold;
}

div.pagination a:hover,
div.pagination a:active {
  border: 1px solid #cf0d42;
  color: #fff;
  background-color: #b20b39;
}

div.pagination span.current {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #cf0d42;
  font-weight: bold;
  background-color: #b20b39;
  color: #fff;
  font-weight: bold;
}

div.pagination span.disabled {
  padding: 5px 7px;
  margin: 2px;
  border: 1px solid #929693;
  color: #929693;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/1.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.ad-section img {
  width: 100% !important;
  height: auto !important;
}

.breadcrumb {
  background: #fff;
  margin-top: -40px;
}

.breadcrumb ul li {
  float: left;
  list-style-type: none;
  margin-right: 10px;
  color: #0d1452;
}
.breadcrumb ul li:last-child {
  color: #333;
}

.breadcrumb ul li a {
  color: #0d1452;
}

.bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 700px;
}

/*======================================
   End Header CSS
========================================*/

/*======================================
   02. Hero Area CSS
========================================*/
.hero-slider {
  position: relative;
}

.hero-slider .single-slider {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.back-slider {
  position: relative; /* Ensures child elements (like img) are positioned relative to this */
  overflow: visible; /* Ensures the image is not clipped */
  height: 65vh;
  z-index: 1; /* Adjusted to ensure the container doesn't interfere with the image */
}

.hero-slider img {
  position: absolute;
  right: 0;
  bottom: -100px; /* Adjust this value to control the overlap (more negative = more overlap) */
  width: 50%;
  height: auto;
  z-index: 999; /* Ensure the image is above other elements */
  /* Remove transform: translateY(50%); */
}

.hero-slider .hero-text {
  float: none;
  margin-top: 150px;
  z-index: 0;
  margin-left: 20%;
}

.hero-slider .hero-text .small-title {
  color: #fff;
  background: #8b0000;
  font-size: 18px;
  padding: 5px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  animation: fadeInUp 1s both 0.4s;
}

.hero-slider .hero-text h1 {
  font-family: "Bricolage Grotesque", serif !important;
  font-weight: 600;
  color: #7f1323;
  font-size: 60px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 25px;
}
.hero-slider .hero-text h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 25px;
  animation: fadeInUp 1s both 0.6s;
}

.hero-slider .hero-text h1 span {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
}

.hero-slider .hero-text p {
  color: #fff;
  font-size: 14px;
}

.hero-slider .hero-text .button .btn {
  border: 1px solid #8b0000;
  color: #8b0000;
  border-radius: 30px;
  padding: 8px 20px;
  transition: 0.3s;
  font-size: 1em;
  width: 10m;
  margin-top: 35px;
}

.hero-slider .hero-text .button .btn:hover {
  background: #8b0000;
  color: white;
}

.hero-slider .hero-image {
  margin-top: 175px;
}

/* Slider Dots*/
.hero-slider .home-slider {
  position: relative;
}

.hero-slider .tns-nav {
  display: inline-block;
  padding: 8px 20px 8px 20px;
  border-radius: 3px;
  position: absolute;
  left: 18%;
  bottom: 25%;
  border-radius: 10px 10px 0px 0;
  z-index: 9;
}

.hero-slider .tns-nav button {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  background: #000;
  display: inline-block;
  border: none;
  margin-right: 9px;
  border-radius: 30px;
}

.hero-slider .tns-nav button:last-child {
  margin: 0;
}

.hero-slider .tns-nav button.tns-nav-active {
  width: 3em;
}

.hero-slider .tns-controls {
  display: inline-block;
  margin: 10px auto 0;
  text-align: center;
  position: absolute;
  left: 10%;
  bottom: 25%;
  padding: 8px 20px 8px 20px;
  z-index: 9;
  background: transparent;
}

.hero-slider .tns-controls button {
  margin: 0;
  background: transparent !important;
  border: none;
  overflow: visible;
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
}

.hero-slider .tns-controls button + button {
  margin-left: 3em;
}

.hero-slider .tns-controls button .arrow {
  border: solid #000;
  border-width: 0 2px 2px 0; /* Increased border width for larger arrows */
  display: inline-block;
  padding: 0.6em; /* Adjust padding for larger arrow space */
  height: 1.2em; /* Increased height for larger arrow */
  width: 1em;
}

.hero-slider .tns-controls button .right-arrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.hero-slider .tns-controls button .left-arrow {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

/*=========================
   End Hero Area CSS
===========================*/

.home-newsletter {
  padding: 5em;
  background: linear-gradient(to right, #fff3e7, #fecbd2);
  border-radius: 20px;
  margin-bottom: -5%;
}

.home-newsletter .single {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}
.home-newsletter .single h2 {
  font-size: 22px;
  color: 000;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 0;
}

.home-newsletter .single .input-group {
  display: flex;
  align-items: center; /* Ensures alignment */
  position: relative;
  width: 100%;
  max-width: 380px;
}

.home-newsletter .single .input-group input {
  width: 100%;
  padding-left: 35px;
  padding-right: 90px;
  height: 50px;
  box-sizing: border-box;
  border-radius: 2em !important;
  border: 2px solid #fff;
}

.home-newsletter .single .btn {
  position: absolute;
  right: 1%;
  top: 50%;
  transform: translateY(-50%); /* Centers vertically */
  height: 80%; /* Adjust based on input height */
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 2em;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**** product card 1 ****/
.product-card {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 40vh;
  padding: 4em;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures the button stays at the bottom */
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.product-card .discount-badge {
  background: #8b0000;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  position: absolute;
  top: 15%;
  right: 5%;
  font-size: 12px;
}
/* Position the shop button at the bottom left */
.product-card .shop-btn {
  border: 1px solid #8b0000;
  color: #8b0000;
  border-radius: 30px;
  padding: 8px 20px;
  transition: 0.3s;
  font-size: 1em;
  width: 120px;
}

.product-card .shop-btn:hover {
  background: #8b0000;
  color: white;
}

.product-card .product-text {
  width: 45%;
}

/**** product card side ****/
.product-card2 {
  background: #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 85vh;
  padding: 4em;
  background-size: 150% 75%;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.product-card2 .discount-badge {
  background: #8b0000;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  position: absolute;
  top: 6%;
  right: 6%;
  font-size: 12px;
}
/* Position the shop button at the bottom left */
.product-card2 .shop-btn {
  border: 1px solid #8b0000;
  color: #8b0000;
  border-radius: 30px;
  padding: 8px 20px;
  transition: 0.3s;
  font-size: 1em;
  width: 10m;
}

.product-card2 .shop-btn:hover {
  background: #8b0000;
  color: white;
}

#left {
  width: 100%;
}

#menu-group-1 {
  padding-left: 0;
  width: 100%;
}

.list-group-item {
  padding: 10px;
  background: white;
  border-radius: 5px;
  margin-bottom: 5px;
  width: 100%;
}

.list-group-item a {
  display: block;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.3s;
}

.list-group-item a:hover {
  color: #8b0000 !important;
}

.collapse .list-group-item {
  padding-left: 15px;
}

/* Responsive design for smaller screens */

@media only screen and (max-width: 600px) {
  .menu-container {
    width: 100%;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
  .menu > ul > li:last-child,
  .menu > ul > li:nth-last-child(2) {
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  .menu > ul > li:last-child a,
  .menu > ul > li:nth-last-child(2) a {
    font-weight: bold;
  }

  .hero-slider {
    position: relative;
  }

  .hero-slider .single-slider {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .back-slider {
    position: relative; /* Ensures child elements (like img) are positioned relative to this */
    overflow: visible; /* Ensures the image is not clipped */
    height: 60vh;
    z-index: 1; /* Adjusted to ensure the container doesn't interfere with the image */
  }

  .hero-slider img {
    position: absolute;
    right: 0;
    bottom: -80px; /* Adjust this value to control the overlap (more negative = more overlap) */
    width: 90%;
    height: auto;
    z-index: 999; /* Ensure the image is above other elements */
    /* Remove transform: translateY(50%); */
  }

  .hero-slider .hero-text {
    float: none;
    margin-top: 15%;
    z-index: 0;
    margin-left: 8%;
  }

  .hero-slider .hero-text .small-title {
    color: #fff;
    background: #8b0000;
    font-size: 18px;
    padding: 5px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    animation: fadeInUp 1s both 0.4s;
  }

  .hero-slider .hero-text h1 {
    font-family: "Bricolage Grotesque", serif !important;
    font-weight: 600;
    color: #7f1323;
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 25px;
  }
  .hero-slider .hero-text h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 25px;
    animation: fadeInUp 1s both 0.6s;
  }

  .hero-slider .hero-text h1 span {
    font-family: "Bricolage Grotesque", serif;
    font-weight: 600;
  }

  .hero-slider .hero-text p {
    color: #fff;
    font-size: 12px;
  }

  .hero-slider .hero-text .button .btn {
    border: 1px solid #8b0000;
    color: #8b0000;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
    font-size: 1em;
    width: 10m;
    margin-top: 4%;
  }

  .hero-slider .hero-text .button .btn:hover {
    background: #8b0000;
    color: white;
  }

  .hero-slider .hero-image {
    margin-top: 5%;
  }

  /* Slider Dots*/
  .hero-slider .home-slider {
    position: relative;
  }

  .hero-slider .tns-nav {
    display: inline-block;
    padding: 8px 20px 8px 20px;
    border-radius: 3px;
    position: absolute;
    left: 33%;
    bottom: 33%;
    border-radius: 10px 10px 0px 0;
    z-index: 9;
  }

  .hero-slider .tns-nav button {
    width: 10px;
    height: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
    background: #000;
    display: inline-block;
    border: none;
    margin-right: 9px;
    border-radius: 30px;
  }

  .hero-slider .tns-nav button:last-child {
    margin: 0;
  }

  .hero-slider .tns-nav button.tns-nav-active {
    width: 3em;
  }

  .hero-slider .tns-controls {
    display: inline-block;
    margin: 10px auto 0;
    text-align: center;
    position: absolute;
    left: 8%;
    bottom: 32%;
    padding: 8px 20px 8px 20px;
    z-index: 9;
    background: transparent;
  }

  .hero-slider .tns-controls button {
    margin: 0;
    background: transparent !important;
    border: none;
    overflow: visible;
    -webkit-appearance: none;
    border-radius: 0;
    display: inline-block;
    padding: 0;
    vertical-align: middle;
  }

  .hero-slider .tns-controls button + button {
    margin-left: 3em;
  }

  .hero-slider .tns-controls button .arrow {
    border: solid #000;
    border-width: 0 2px 2px 0; /* Increased border width for larger arrows */
    display: inline-block;
    padding: 0.6em; /* Adjust padding for larger arrow space */
    height: 1.2em; /* Increased height for larger arrow */
    width: 1em;
  }

  .hero-slider .tns-controls button .right-arrow {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  .hero-slider .tns-controls button .left-arrow {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }

  .service {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 5% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensures even spacing */
    gap: 5%; /* Adds spacing between items */
  }

  .service .item {
    background-color: #fff2cf;
    padding: 0.5em;
    border-radius: 20px;
    display: flex;
    flex-direction: row; /* Change to row */
    align-items: center; /* Align items vertically */
    justify-content: center; /* Space them nicely */
    width: 22%; /* Adjust width */
    box-sizing: border-box;
    gap: 2%; /* Adds spacing between image and text */
  }

  .service .photo img {
    width: 80%; /* Adjust image size */
    height: 80%; /* Ensures uniform size */
    object-fit: cover; /* Keeps image aspect ratio */
    border-radius: 50%; /* Optional: Makes the image round */
  }

  .service .item p {
    margin: 0;
    font-weight: bold;
    font-size: 0.6rem;
  }
  .service .icon {
    text-align: center;
  }

  .service .icon i {
    width: 80%;
    height: 80%;
    line-height: 80px;
    text-align: center;
    background: #0d1452;
    color: #fff;
    font-size: 38px;
    border-radius: 50%;
  }

  /**** product card 1 ****/
  .product-card {
    background: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 40vh;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures the button stays at the bottom */
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: right bottom;
  }

  .product-card .discount-badge {
    background: #8b0000;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 10px;
  }
  /* Position the shop button at the bottom left */
  .product-card .shop-btn {
    border: 1px solid #8b0000;
    color: #8b0000;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
    font-size: 0.7em;
    width: 100px;
  }

  .product-card .shop-btn:hover {
    background: #8b0000;
    color: white;
  }

  .product-card .product-text {
    width: 70%;
  }

  .product-card h4 {
    font-size: 1.5em;
  }

  /**** product card side ****/
  .product-card2 {
    background: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 85vh;
    padding: 2em;
    background-size: 155% 70%;
    background-repeat: no-repeat;
    background-position: left bottom;
  }

  .product-card2 .product-text {
    width: 70%;
  }

  .product-card2 .discount-badge {
    background: #8b0000;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    position: absolute;
    top: 6%;
    right: 6%;
    font-size: 12px;
  }
  /* Position the shop button at the bottom left */
  .product-card2 .shop-btn {
    border: 1px solid #8b0000;
    color: #8b0000;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
    font-size: 1em;
    width: 10m;
  }

  .product-card2 .shop-btn:hover {
    background: #8b0000;
    color: white;
  }

  /**** Newsletter ****/

  .home-newsletter {
    padding: 2em;
    background: linear-gradient(to right, #fff3e7, #fecbd2);
    border-radius: 20px;
    margin-bottom: -5%;
  }

  .home-newsletter .single {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
  }
  .home-newsletter .single h2 {
    font-size: 18px;
    color: 000;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 0;
  }

  .home-newsletter .single .input-group {
    display: flex;
    align-items: center; /* Ensures alignment */
    position: relative;
    width: 100%;
    max-width: 380px;
  }

  .home-newsletter .single .input-group input {
    width: 100%;
    padding-left: 25px;
    padding-right: 90px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 2em !important;
    border: 2px solid #fff;
    font-size: 12px;
  }

  .home-newsletter .single .btn {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%); /* Centers vertically */
    height: 80%; /* Adjust based on input height */
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 2em;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
  /* Add your styles here */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  /* Add your styles here */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  /* Add your styles here */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  /* Add your styles here */
}
