@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "VLNLDonuts";
  src: url("../font/VLNLDonuts-Regular.ttf") format("truetype");
}
:root {
  --primary-color: #fd5622;
  /* Corrected typo */
  --bg-dark: #000;
  --bg-light: #fff;
  --bg-grey: #ededed;
  --bg-grey-shade: #dbdbdb;
  --border-radius: 30px;
  --small-border-radius: 8px;
  --xs-border-radius: 4px;
}
/*main#main { overflow: hidden; }*/
/* =================animate css ends here================= */
/* =================reset css starts here=================  */
* {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
body,
html,
form,
fieldset {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
}
a {
  text-decoration: none;
  border: 0;
  outline: 0;
}
ul {
  list-style: none;
}
a:focus,
input:focus,
textarea:focus,
*:focus {
  outline: 0 !important;
}
.blog-inner-content p a {
  color: #e33802;
}
/* =================reset css ends here================= */
/* =================core css starts here================= */
body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", serif;
  color: #000;
}
.container {
  width: 100%;
  max-width: 1300px;
}

a,
input,
button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
}
a img {
  border: 0px none;
}
a:hover {
  outline: none;
  color: #fd784e;
  text-decoration: none;
}
a:active {
  outline: none;
  text-decoration: none;
}
a:focus {
  outline: none;
  outline-offset: 0px;
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  border: 0;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", serif !important;
  margin: 0px;
  padding: 0px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 700 !important;
  color: inherit;
}
h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-color);
}
h1 {
  font-size: 58px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 26px;
}
h6 {
  font-size: 22px;
}
p {
  margin: 0px;
  padding: 0px;
  margin-bottom: 24px;
  color: #000;
}
strong {
  font-weight: 700;
}
b {
  font-weight: 700;
}
p:last-child {
  margin-bottom: 0;
}
.btn {
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 12px 15px;
  min-width: 140px;
  font-size: 14px;
  line-height: 18px;
  box-shadow: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
}
.btn-default,
.btn-default:focus {
  color: #fff;
  background-color: var(--primary-color);
  border: solid 1px var(--primary-color);
}
.btn-default:hover,
.btn-default:active {
  color: #fff;
  background-color: #fd784e;
  border-color: #fd784e;
}
.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #333;
  border: solid 1px #333;
}
.btn-primary:hover,
.btn-primary:active {
  color: #ffffff;
  background-color: transparent;
  border-color: #333;
}
.btn.btn-block {
  min-width: 100%;
}
.btn + .btn {
  margin-left: 18px;
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  background: #e33802;
  color: #fff;
  border-color: #e33802;
}
.heading h3 {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 54px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}
.heading h6 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.bg-dark {
  background-color: var(--bg-light);
}
.bg-grey {
  background-color: var(--bg-grey);
}
.bg-grey-shade {
  background-color: var(--bg-grey-shade);
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.py-60 {
  padding-block: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-10 {
  padding-top: 10px;
}
/* =================core css ends here================= */
/* =======Header section start here========= */
header.bg-header {
    padding-block: 10px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 3px 6px 3px rgb(0 0 0 / 6%);
}
.custom-logo-link {
  margin: 0;
}
.cst-nav-bar {
  padding-block: 0;
}
.cst-nav-bar img {
  width: 150px;
}
.cst-nav-bar a.navbar-brand img {
  width: 150px;
}
.cst-nav-bar .navbar-nav li {
  padding-inline: 40px;
}
.cst-nav-bar .menu-item {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--primary-color);
    padding: 6px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.cst-nav-bar .menu-item:hover {
  transform: scale(1.1);
  color: #fff;
}

.cst-nav-bar .menu-icon.menu-item{
  background-color: transparent;
}
.cst-nav-bar .menu-item a:hover {
  color: #fff;
}
.cst-nav-bar .menu-item.btn a {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}
.cst-nav-bar .nav-link::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  top: 100%;
  left: 0;
  transition: all 0.3s ease-in;
}
.cst-nav-bar .nav-link:hover::after {
  width: 100%;
}

#menu-main-menu {
  align-items: center;
  gap: 10px;
}
.cst-nav-bar .menu-icon.menu-item a i {
  margin-top: 1px;
  font-size: 36px !important;
  transform: rotate(90deg);
}
.cst-nav-bar .menu-item.active {
  background-color: black;
  color: #fff;
}
/* =========hero section======= */
.hero-section {
  padding-top: 60px;
  position: relative;
}
.hero-intro img {
  border-radius: var(--border-radius);
}
.hero-intro h1 {
  color: #000;
}
.hero-intro p {
  font-size: 18px;
  color: #000;
}
.hero-slider-wrapper .hero-slider li {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
}
.hero-slider-wrapper .hero-slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.booking-form {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
    padding: 28px;
    border-radius: 12px;
}

/* =======rnb form======= */
#rnb-search-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#rnb-search-form .form-group label {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400 !important;
  font-family: "Poppins";
}
#rnb-search-form select,
#rnb-search-form input {
  background-color: #fff !important;
  border: 0.4px solid var(--primary-color) !important;
  box-shadow: none !important;
  color: #000 !important;
  font-size: 16px !important;
  padding: 0px 14px !important;
  outline: none !important;
  height: 40px !important;
  border-radius: 4px !important;
  width: 100%;
}
#rnb-search-form button {
  border-radius: 6px;
  background-color: var(--primary-color);
  margin-top: 25px;
  position: relative;
  padding-block: 8px;
  color: #fff;
}
/* =======rnb form======= */
/* ======service section start here===== */
.service-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  z-index: 9;
}
.serivce-card {
  padding: 60px 30px;
  border: 2px solid #000;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0px 10px 0px 2px #000;
  color: #000;
}
.serivce-card.dark-card {
  background-color: #000;
  color: #fff;
}
.serivce-card.dark-card h4,
.serivce-card.dark-card p,
.serivce-card.dark-card .service-content a span {
  color: #fff;
}
.service-card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
}
.service-content a {
  display: flex;
  align-items: center;
}
.service-content a i {
  font-size: 34px;
  color: var(--primary-color);
  transform: rotate(-34deg);
  transition: all 0.3s ease-in-out;
}
.service-content a span {
  font-size: 20px;
  margin-left: 10px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.service-content a:hover i {
  transform: rotate(0deg);
}
.service-card-img {
  display: block;
}
.serivce-card {
  position: relative;
  /* background-image: url(http://hideout.coderwolves.com/wp-content/uploads/2025/02/blog-1-1.jpg);/\ */
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.serivce-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ffffff, #ffffff42);
}
.serivce-card.dark-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #00000042);
}
/* ======service section start here===== */
/* ======make things happens============ */
.make-things-wrapper {
  background-color: #1f1f1f;
  padding: 60px 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.make-things-wrapper .heading h4 {
  font-size: 54px;
  font-weight: 700;
  color: #ffffff; /* Highlighted heading */
}
.make-things-wrapper .body-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}
.make-things-wrapper .body-text b {
  color: var(--primary-color); /* Highlighted price */
  font-weight: 700;
}
.make-things-wrapper img {
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--primary-color);
  max-width: 100%;
  height: auto;
}
/* ======make things happens============ */
/* ========booking form========== */
/* =======How It works========== */
.heading h6 span {
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  background: var(--primary-color);
  color: #ffffff;
  margin-bottom: 8px;
  font-family: sans-serif;
  font-weight: 400;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
}
.about-img {
  position: relative;
  height: 100%;
}
.heading p {
  margin-bottom: 0;
}
.heading p + p {
  margin-top: 14px;
}
.heading h5 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3b3b3b;
}
.main-heading {
  margin-bottom: 34px;
}
.main-heading h5 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 12px;
}
.main-heading h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: sans-serif;
}
.main-heading h6 span {
  border-radius: 2px;
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-color);
  margin-bottom: 8px;
  color: #000;
}
.main-heading h3 {
  font-size: 54px;
  margin-bottom: 10px;
  line-height: 64px;
  color: #3b3b3b;
  font-weight: 600;
  text-transform: uppercase;
}
.about-sec-bottom-list {
  border-top: 1px solid #c8c8c8;
  margin-top: 40px;
  display: flex;
  margin-bottom: -40px;
  padding-top: 40px;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
}
.about-sec-bottom-item {
  display: flex;
  width: 50%;
  padding: 0px 12px;
  margin-bottom: 40px;
}
.about-sec-bottom-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  padding: 20px;
  background: var(--primary-color);
  border-radius: 50%;
}
.about-sec-bottom-content {
  width: calc(100% - 80px);
  padding-left: 18px;
}
.about-sec-bottom-icon i {
  font-size: 30px;
}
.about-sec-bottom-content h5 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  color: #000;
  margin-bottom: 8px;
}
.about-sec-bottom-content p {
  font-size: 16px;
  font-weight: 300;
}
/* =============Home Theater services=============== */
.our-service {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0px 10px 0px 2px #000;
}
.our-service a {
  width: 100%;
  display: block;
}
.service-img {
  position: relative;
  width: 100%;
  height: 250px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
.service-img img:hover {
  transform: scale(1.1);
}
.service-img span.price {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
}
.service-items {
  padding: 24px;
}
.serivce-text h4 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
.serivce-text span {
  font-size: 14px;
  color: #a4a4a4;
}
.service-icon a {
  background-color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}
.our-service-slider .slick-track {
  display: flex;
  padding-block: 20px;
}
/* =====anemeties slider======== */
ul.amenities-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.service-items > div {
  padding-bottom: 20px;
  border-bottom: 1px dashed #000;
}
.service-items .location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-items .location-wrapper .location-url:first-child {
  margin-bottom: 0;
}
.amenities-slider li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #444444;
  font-size: 12px;
  font-weight: 300;
  border-radius: 2px;
}
.amenities-slider li span i {
  font-size: 28px;
  color: #474747;
}
.amenities-slider .slick-track {
  display: flex;
}
.amenities-slider .slick-track li.slick-slide {
  height: auto;
}
/* the slides */
.amenities-slider .slick-slide {
  margin: 0 10px;
}
/* the parent */
.amenities-slider .slick-list {
  margin: 0 -10px;
}
/* ========testimonail slider========== */
#customers-testimonials .item {
  background-color: #fff;
  padding: 30px 30px;
  border-radius: var(--border-radius);
  border: 2px solid #000;
  box-shadow: 0 10px 0 2px #000;
}
#customers-testimonials .slick-track {
  margin-bottom: 40px;
}
#customers-testimonials .item.slick-slide.slick-current.slick-active {
  background-color: var(--primary-color);
}
#customers-testimonials .item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.ratting {
  margin-left: 20px;
}
.ratting span i {
  color: rgb(255, 200, 0);
}
#customers-testimonials .item .testimonial-name {
  color: #000;
  font-size: 22px;
  font-weight: 700;
}
/* the slides */
#customers-testimonials .slick-slide {
  margin: 0 10px;
}
/* the parent */
#customers-testimonials .slick-list {
  margin: 0 -10px;
}
/* ==================faq sec start here============ */
/* ==================faq sec start here============ */
.faq-wrapper .accordion-button::after {
  filter: invert(100%);
}
.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: none;
  border-radius: 4px 4px 0px 0px;
}
.faq-wrapper button.accordion-button,
.faq-wrapper button.accordion-button.collapsed {
  background-color: var(--bg-grey);
  color: #000;
  border-radius: 4px;
  overflow: hidden;
  font-weight: 600;
}
.faq-wrapper .accordion-body {
  background-color: var(--bg-grey);
  color: #000;
  border-radius: 0px 0px 4px 4px;
  overflow: hidden;
}
.faq-wrapper .accordion-item {
  border: none;
  border-radius: 4px !important;
  background: transparent;
}
.faq-wrapper .accordion-button:focus {
  box-shadow: none;
}
.faq-img {
  position: sticky;
  top: 40px;
}
.faq-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius);
}
/* ======================================== */
/* =======About page====== */
/* ======================================== */
.part-journey {
  margin-top: 40px;
}
.part-journey .btn {
  margin-top: 20px;
}
ul.why-choose-us {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-choose-us li {
  font-size: 18px;
  margin: 10px 0;
  display: flex;
  gap: 20px;
}
.why-choose-us li span {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.why-choose-us li i {
  font-size: 30px;
  margin-right: 10px;
  color: #ff6600;
  /* Adjust icon color */
}
.lits-text h6 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0px;
}
.lits-text p {
  font-size: 14px;
  color: #666a74;
}
.heading.choose-us p {
  text-align: justify;
}
.statistics {
  text-align: center;
  border: 2px solid #000;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0px 10px 0px 2px #000;
}
.statistics h2 {
  display: block;
  font-size: 48px !important;
  margin-bottom: 20px;
}
.statistics h4 {
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a;
  margin-bottom: 0;
}
/* ======================================== */
/* =======About page====== */
/* ======================================== */
/* ======================================== */
/* =======Blog page====== */
/* ======================================== */
/* ==========Banner================= */
.banner_container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 300px;
  padding: 40px 0 40px;
  position: relative;
  color: #000;
  z-index: 1;
  text-align: center;
}
.banner_container h1,
.banner_container h2 {
  font-size: 64px;
  margin-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 74px;
}
.banner_container p {
  margin-top: 12px;
}
.banner_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.breadcrumb {
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 8px 12px;
  border-radius: 4px;
}
.breadcrumb-item,
.breadcrumb-item a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in;
  white-space: nowrap;
  display: block;
}
.breadcrumb .breadcrumb-item:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.breadcrumb-item a .breadcrumb-item.active {
  color: var(--primary-color) !important;
}
.breadcrumb-item.active {
  color: var(--primary-color);
}
.breadcrumb-item {
  font-weight: 500;
  text-transform: uppercase;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
  position: absolute;
  left: 6px;
  content: ">";
  font-family: monospace;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}
.breadcrumb-item {
  position: relative;
}
.breadcrumb-item a i {
  background: var(--primary-color);
  padding: 4px;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 14px;
}
.wave-curve {
  width: 100%;
  padding-bottom: 7%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.wave-curve svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 1px;
}
/*=======================blog-css-start===============*/
.blog-list {
  display: flex;
  flex-flow: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-bottom: -24px;
}
.blog-item {
  width: 33.33%;
  padding: 0px 12px;
  margin-bottom: 24px;
}
.blog-img {
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.blog-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  filter: brightness(0.8);
  transition: all 0.6s ease-in;
}
.blog-img img:hover {
  transform: scale(1.1);
}
.post-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  display: inline-block;
  font-weight: 500;
  padding: 4px 10px 3px;
  border-radius: 3px;
  color: #000;
}
.blog-posted-list {
  display: flex;
  margin: 8px 0px;
}
.blog-posted-list li {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}
.blog-posted-list li + li {
  margin-left: 16px;
  padding-left: 16px;
  position: relative;
}
.blog-posted-list li + li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #666a74;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
}
.blog-heading h5 {
  font-size: 22px;
  color: #000;
  line-height: 36px;
  margin-bottom: 0;
  font-weight: 600;
}
/*=============blog pagination============= */
/* ========================================= */
/* Blog details */
/* ========================================= */
/*========================*/
.blog-inner-wrapper {
  padding-right: 40px;
  position: relative;
  border-right: 2px dashed #c9c9c9;
  margin-right: 20px;
  margin-bottom: -20px;
}
.blog-left-side-wrapper {
  position: sticky;
  top: 110px;
  z-index: 1000;
}
.blog-inner-content h1 {
  font-size: 54px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-inner-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-inner-content h3 {
  font-size: 42px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-inner-content h4 {
  font-size: 36px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-inner-content h5 {
  font-size: 27px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blog-inner-content h6 {
  font-size: 24px;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blo-inner-content-list li + li {
  margin-top: 8px;
}
.blo-inner-content-list {
  margin-top: 20px;
}
.blo-inner-content-list li {
  color: #777;
  padding-left: 24px;
  position: relative;
}
.blo-inner-content-list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #777;
  border-radius: 4px;
  top: 8px;
  left: 12px;
}
.blog-inner-content p {
  margin-bottom: 0;
  text-align: justify;
}
.blog-inner-content p + p {
  margin-top: 12px;
}
.blog-inner-content + .blog-inner-content {
  margin-top: 44px;
}
.blog-inner-img {
  padding-bottom: 43%;
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.blog-inner-img img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-inner-img img:hover {
  filter: brightness(0.7);
}
.blog-right-side-wrapper {
  position: sticky;
  top: 100px;
  z-index: 1000;
}
.blog-right-side-wrapper h4 {
  font-size: 24px;
  font-weight: 600;
  padding-left: 14px;
  position: relative;
  line-height: 1;
}
.blog-right-side-wrapper h4::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: var(--primary-color);
  left: 0;
}
.recent-post-head h4 {
  font-size: 18px;
  font-weight: 500;
  color: #0a639d;
  margin-bottom: 20px;
}
.recent-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-post-list li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d7d7d7;
}
.recent-post-box {
  position: relative;
  padding-left: 96px;
  height: 100%;
}
.blog-right-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  filter: brightness(0.5);
  border-radius: var(--small-border-radius);
  overflow: hidden;
}
.blog-right-date {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 20px;
}
.recent-post-box h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.blog-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--small-border-radius);
}
.blog-title-right {
  font-size: 18px;
  font-weight: 600;
  color: #3b3b3b;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 25px;
}
.recent-post-box h6 {
  margin-bottom: 4px;
}
/* ========================================= */
/* Blog details */
/* ========================================= */
.pagination {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  list-style: none;
}
.pagination li {
  margin: 0 5px;
}
.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.pagination li a:hover {
  background-color: #e33802;
}
.pagination li.active span {
  background-color: #343a40;
}
.pagination li.disabled span {
  background-color: #d3d3d3;
  cursor: not-allowed;
}
/* ======================================== */
/* =======Blog page====== */
/* ======================================== */
/* =======blog Pagination===== */
.navigation.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  border: 1px solid #ccc;
}
.navigation.pagination .page-numbers:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.navigation.pagination .page-numbers.current {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border-color: var(--primary-color);
}
.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev {
  font-weight: bold;
}
/* =======blog Pagination===== */
/* ========================================== */
/* =======single page theater ====== */
/* ========================================== */
ul#theater-for li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
ul#theater-nav {
  margin-top: 20px;
  box-shadow: 0px 0px 20px 1px var(--primary-color);
}
ul#theater-nav li img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
}
/* the slides */
ul#theater-nav .slick-slide {
  margin: 0 5px;
}
/* the parent */
ul#theater-nav .slick-list {
  margin: 0 -5px;
}
ul#theater-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: none;
  border: none;
}
ul#theater-nav button.slick-prev {
  left: -20px;
}
ul#theater-nav button.slick-next {
  right: -20px;
}
ul#theater-nav button i {
  color: var(--primary-color);
  font-size: 34px;
}
/* ======amenities ======= */
.amenities-container h2 {
  color: #333;
  margin-bottom: 15px;
}
.page-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-list li {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}
.page-list li:hover {
  transform: scale(1.05);
  background: #f8f8f8;
}
.page-list-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: white;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 15px;
}
.page-list-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #444;
}
/* =====single service post page======= */
.service-details p {
  line-height: 1.7;
}
.service-details p + p {
  margin-top: 24px;
}
.service-details h5 {
  font-size: 38px;
  font-weight: 800;
}
.heading.service-details a {
  margin-top: 30px;
}
/* =====single service post page======= */
/* ========================================== */
/* =======single page theater ====== */
/* ========================================== */
.serv-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  border-radius: 30px;
}
/* ========================================== */
/* =======contact page ====== */
/* ========================================== */
/* =======contact page ====== */
/* ========================================== */
.contact-us {
  background-color: #fff1ed;
}
.contact-inner-box {
  background-color: #fff;
  position: relative;
  border-radius: 30px 0px 0px 30px;
  padding: 40px;
  padding-right: 110px;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
}
.contact-inner-box::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: var(--primary-color);
}
.contact-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: black;
  border-radius: 30px 0px 0px 30px;
  color: #fff;
  padding: 30px 50px 30px;
}
.contact-info h5 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--bg-light);
}
ul.contact-info-list {
  margin: 0;
  list-style: none;
}
li.contact-info-item {
  margin-bottom: 14px;
}
li.contact-info-item span {
  margin-right: 10px;
}
li.contact-info-item a {
  color: #fff;
}
ul.social-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 14px;
  margin: 0;
  list-style: none;
}
li.social-link a i {
  color: #fff;
}
.contact-form {
  margin-top: 40px;
}
.form-wrapper {
  width: 50%;
}
.form-wrapper .cst-input {
  margin-bottom: 28px;
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: #686868;
  padding-left: 12px;
}
.form-wrapper .cst-textarea {
  margin-bottom: 14px;
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: #686868;
  padding-left: 12px;
}
.form-wrapper .cst-btn {
  color: #fff;
  background-color: var(--primary-color);
  border: solid 1px var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 12px 15px;
  min-width: 140px;
  font-size: 14px;
  line-height: 18px;
  box-shadow: none;
}
/* ========================================== */
.contact-info-wrapper {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
  border-radius: 30px 0px;
  overflow: hidden;
}
.contact-info-wrapper h4 {
  font-size: 24px;
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding: 20px 30px;
}
.contact-info-text {
  padding: 0px 30px 30px;
}
.contact-info-text p strong {
  color: #000;
}
.contact-info-wrapper p {
  margin-bottom: 10px;
  color: #666666;
}
/* =======contact page ====== */
/* =======contact page ====== */
/* ========================================== */
/* =======search result========= */
body#error-page {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0;
}
.search_title h2 {
  position: relative;
  font-size: 28px !important;
  margin-bottom: 40px;
}
.search_title h2::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 60%;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%);
  background-color: #000;
}
.show-result .show-availabel {
  position: relative;
  display: flex;
  gap: 2%;
  border-radius: 6px;
  padding-inline: 20px;
  padding-block: 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3e3e3;
}
.show-result .show-availabel .private-theater {
  position: relative;
  flex-basis: 29%;
}
.show-result .show-availabel .private-theater::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(45deg, #000000, transparent);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.show-result .show-availabel .private-theater .cst-overlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  margin: 0;
}
.cst-overlay p {
    color: #fff;
    margin-block: 0 8px !important;
}
.cst-overlay h6 {
    color: #fff;
    margin-block: 0 8px !important;
}
.show-result .price {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
    margin-block: 10px;
}
.show-result .price .cst-msg{
  font-size: 14px !important;
  font-weight: 400;
  color: #000000;
  margin: 0 !important;
}
.show-result .heading h6 {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.show-result .show-availabel img {
    width: 100%;
    border-radius: 4px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
}
.content-wrapper  {
   flex-basis: 69%;
}
.group-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-block: 20px;
}
.location-wrapper .location-url:first-child{
 margin-bottom: 10px;
}
.location-url {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.location-url h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600 !important;
}
.location-url p {
  margin: 0 !important;
}
.ameneties-wrapper {
    display: flex;
    justify-content:start;
    align-items: center;
    gap:1.5rem;
}
.ameneties-wrapper h4 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 18px;
}
.ameneties-wrapper ul {
  display: flex;
justify-content: start;
align-items: center;
flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ameneties-wrapper ul li {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  border: dashed 1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  text-align: center;
  list-style: none;
  cursor: pointer;
}
.ameneties-wrapper ul li > p {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    background-color: #000;
    padding: 3px;
    border-radius: 4px;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    margin: 0 !important;
}
.ameneties-wrapper ul li:hover p{
  display: block;
}
.ameneties-wrapper ul li i {
  background-color: var(--primary-color);
  width: 40px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  border-radius: 4px;
}

.show-availabel > p {
  position: absolute;
  left: 20px;
  bottom: 6px;
  font-size: 14px;
  font-style: italic;
  color: red;
  margin: 0 !important;
}

/* =======search result========= */
/* ===============footer================== */
footer {
  padding-block: 40px;
}
.footer-07 {
  background: #121212;
}
.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}
.ftco-footer-social li a {
  height: 40px;
  width: 40px;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: relative;
}
.ftco-footer-social li a span {
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ftco-footer-social li a span i {
  color: var(--primary-color);
}
.footer-07 p {
  color: rgba(255, 255, 255, 0.3);
}
.footer-07 .footer-heading {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer-07 .footer-heading .logo {
  color: #fff;
}
.footer-07 .menu {
  margin-bottom: 30px;
}
.footer-07 .menu a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}
.footer-07 .menu a:hover {
  color: var(--primary-color);
}
.footer-07 .ftco-footer-social li a {
  background: transparent;
  border: 1px solid var(--primary-color);
}
ul#menu-footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
/* ===============footer================== */
/* ======================== */
/* 
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  .cst-nav-bar .navbar-nav li {
    padding-inline: 22px;
  }
}
/* 
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
  .cst-nav-bar .navbar-nav {
    padding-inline: 20px;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 12px;
  }
  .cst-nav-bar .menu-item {
    font-size: 16px;
  }
}
/* 
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 1025px) and (max-width: 1140px) {
  .cst-nav-bar a.navbar-brand img {
    width: 160px;
  }
  .btn {
    padding: 10px 12px;
    min-width: 120px;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 6px;
  }
  .cst-nav-bar .menu-item {
    font-size: 16px;
  }
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 44px;
  }
  .heading h3 {
    font-size: 34px;
    line-height: 40px;
  }
  .py-60 {
    padding-block: 30px;
  }
  header {
    padding: 22px 0px;
  }
  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .cst-nav-bar a.navbar-brand img {
    width: 160px;
  }
  .cst-nav-bar .menu-item {
    font-size: 16px;
  }
  .btn {
    padding: 10px 12px;
    min-width: 120px;
  }
#menu-main-menu {
    align-items: flex-start;
    gap: 1.1rem;
}
  .cst-nav-bar .navbar-nav {
    padding-inline: 0px;

    margin: 0;
  }
  .cst-nav-bar .nav-link {
    font-size: 18px;
  }
  .talk-us a:first-child {
    font-size: 18px;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 4px;
  }
  .blog-item {
    width: 50%;
  }
}
/* 
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* CSS */
  header {
    padding: 22px 0px;
  }
     .show-result .show-availabel {
        flex-wrap: wrap;
    }
    .show-result .show-availabel .private-theater {

    flex-basis: 100%;
}
    #menu-main-menu {
        align-items: flex-start;
        gap: 1.1rem;
    }
.content-wrapper {
  flex-basis: 100%;
}
}

/* 
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
  header {
    padding: 22px 0px;
  }
      #menu-main-menu {
        align-items: flex-start;
        gap: 1.1rem;
    }
  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .hero-section {
    padding-top: 20px;
  }
  .row.gallery img {
    width: revert;
    height: revert;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 2 / 1;
  }
  .blog-item {
    width: 50%;
  }
}
@media (max-width: 784px) {
  .show-result .show-availabel {
        flex-wrap: wrap;
        gap: 0;
    }
    .show-result .show-availabel .private-theater {

    flex-basis: 100%;
}
.content-wrapper {
  flex-basis: 100%;
}
  /* ====search page==== */
.group-container {
    flex-direction: column;
}

.ameneties-wrapper {
    flex-direction: column;
     gap: 0.5rem;
     align-items: flex-start;
}
    
    .show-result .price {
      flex-direction: column-reverse;
    justify-content: start;
}

/* ====search page==== */
  .show-availabel > p {
    bottom: 15px;
  }
  #main {
    padding-top: 30px;
    padding-inline: 12px;
  }
}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
  .py-60 {
    padding-block: 30px;
  }
  /* ====header-===== */
  header {
    padding-block: 10px 0;
  }

  a.custom-logo-link {
    margin-right: auto;
  }

  #menu-main-menu {
    align-items: self-start;
    gap: 1.1rem;
  }
  ul#menu-main-menu li {
    margin-bottom: 10px;
  }
  ul#menu-main-menu li:last-child {
    margin: 0;
  }
  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .talk-us {
    align-items: start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 26px;
  }
  .hero-section {
    padding-top: 20px;
  }
  #rnb-search-form {
    grid-template-columns: repeat(1, 1fr);
  }
  h1 {
    font-size: 38px !important;
  }
  .banner_container h1,
  .banner_container h2 {
    font-size: 32px !important;
    line-height: 38px;
  }
  .heading h3 {
    font-size: 34px !important;
    line-height: 40px;
  }
  .about-sec-bottom-item {
    display: flex;
    width: 100%;
    padding: 0px 12px;
    margin-bottom: 40px;
  }
  .our-service-slider button.slick-next {
    right: 6px;
  }
  .our-service-slider button.slick-prev {
    left: 6px;
  }
  form#rnb-search-form > * {
    width: 100% !important;
  }
  .make-things-wrapper {
    padding: 30px;
  }
  /* ======online platform====== */
  .online-platform .slick-slide img {
    margin: 0 auto;
    width: 96%;
  }
  .serivce-text h4 {
    font-size: 20px;
}
/* ====search page==== */
.group-container {
    flex-direction: column;
}

.ameneties-wrapper {
    flex-direction: column;
     gap: 0.5rem;
     align-items: flex-start;
}
    
    .show-result .price {
    justify-content: start;
}
/* ====search page==== */
  /* ======make things======= */
  .make-things-wrapper .heading h4 {
    font-size: 34px;
  }
  /* =====about us====== */
  ul.why-choose-us {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  /* blog */
  /* blog */
  .blog-item {
    width: 100%;
  }
  .blog-inner-wrapper {
    position: relative;
    border-right: 0;
    padding-right: 0;
  }
  .blog-inner-content h5 {
    font-size: 18px !important;
  }
  .blog-inner-content h6 {
    font-size: 18px !important;
  }
  /* contact */
  .contact-info {
    display: block;
    top: revert;
    transform: translate(0);
    bottom: 0;
    left: 0;
    border-radius: 10px 10px 0px 0px;
  }
  .contact-inner-box::before {
    display: none;
  }
  .contact-inner-box {
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
  }
  .form-wrapper {
    width: revert;
    padding-bottom: 250px;
  }
  .location-wrapper {
    flex-direction: column;
    align-items: start;
}
}

/* ===========overright storefront css============= */
.hideout-cart-container .site-header-cart {
  width: 200px !important;
}
#main {
  padding-top: 60px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.woocommerce-product-gallery__image a img {
  width: 100%;
  display: block;
}
/* ===========overright storefront css============= */

/* * ======single product======= * */
h2.cst-product-title {
    display: inline-block;
    font-size: 36px !important;
    font-weight: 700 !important;
}
p.price.cst-single-price {
    margin-block: 10px 0px !important;
}
.woocommerce-product-gallery__image img {
  width: 100%;
  height: 570px !important;
  object-fit: cover;
  object-position: center;
}
.single-product .product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 16px !important;
}

.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs {
    display: grid;
   grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs li{
  width: 100% !important;
  margin: 0 !important;
}
.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs li img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}
/* =======signle product card==== */
.single-product #main  .product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.single-product #main  .product::before,
.single-product #main  .product::after {
  display: none;
}
.single-product #main  .product .woocommerce-product-gallery,
.single-product #main  .product .cst-single-product-card {
  width: 100%;
  margin: 0;
}
.single-product #main  .product .woocommerce-product-gallery ol:before ,
.single-product #main  .product .woocommerce-product-gallery ol:after {
    display: none;
}
.summary.entry-summary.cst-single-product-card {
  display: grid;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 8px;
}
.city-input {
    grid-row: 2;
}

.booking-pricing-info{
  background: #fff !important;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.city-input-wrapper {
  display: grid;
 grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
}

.city-input-wrapper > * {
  padding: 12px;
  text-align: center;
  min-width: 66px;
}
@media (max-width: 768px){
.single-product #main .product{
  grid-template-columns: 1fr;
}
.summary.entry-summary.cst-single-product-card {
  padding: 14px;
}
h2.cst-product-title {
    font-size: 28px !important;
}
.location-wrapper-book {
    grid-column: 1 / 3;
}
.city-input-wrapper{
  grid-template-columns: repeat(2, 1fr);
}

}
/* Responsive layout switch based on item width using media query trick */
@media (max-width: 210px) {
.city-input-wrapper  {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

 .city-input-wrapper > *:nth-child(3) {
    grid-column: span 2;
  }
}

.city-input-wrapper input.form-control {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}
.city-input-wrapper > * {
    border: 1px solid #ebebeb !important;
    padding: 8px !important;
    border-radius: 4px;
    text-align: center;
}

.city-input-wrapper .location-url {
  justify-content: center;
}
.location-wrapper-book{
    transition: all 0.2s ease-in;
    background-color: #f2efef;
    color: #000000;
}
.location-wrapper-book .location-url a {
font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
    color: #000000;
}
.rnb-component-wrapper {
    margin-bottom: 10px !important;
}
.cart.rnb-cart {
    margin-top: 10px;
}
.product_meta {
  display: none !important;
}
.booked-slots {
    margin-top: 16px;
    padding: 6px 10px;
    border-radius:4px;
    color: #ff0000;
	padding-left:0;
}

.booked-slots strong {
    margin-right: 18px;
    white-space: nowrap;
}
.booked-slots span {
    display:inline-block;
    margin-inline:14px;
}
.woocommerce-tabs.wc-tabs-wrapper {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
}
.woocommerce-tabs ul.tabs li::after {
  right: 20px !important;
  font-size: 20px;
}
.woocommerce-tabs ul.tabs li + li{
    margin-top:10px
}
.woocommerce-tabs ul.tabs li {
    background-color: var(--primary-color);
    padding-left: 10px;
    border-radius: 4px;
    color: #fff;
    border-radius: 30px;
}
.woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}
.woocommerce-tabs ul.tabs li a {
  text-align: center;
}
.item-arrtributes ul.attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.item-arrtributes ul.attributes li{
  border: 1px dashed #000;
  padding:4px 8px;
}

@media(max-width: 768px) {
  .booked-slots strong {
    white-space: normal;
}
.booked-slots {
    margin-top: 40px;
}





.item-arrtributes ul.attributes li {
  width: 100%;
}
.item-arrtributes ul.attributes {
    margin-top: 40px !important;
}
.woocommerce-Tabs-panel {
  margin-top: 40px !important;
}

}
/* * ======single product======= * */
.wc-block-cart-item__quantity {
    display: none;
}

/*=========Thank you page====== */


.woocommerce-order-received .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  list-style: none;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-order-received .woocommerce-order-overview li {
  flex: 1 1 calc(33.333% - 20px); /* 3 per row on large screens */
  background: white;
  border: 1px solid #ddd !important;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  font-weight: 700;
  margin-top: 5px;
  color: #111;
  font-size: 18px;
}

.woocommerce-order-received .woocommerce-order-overview li:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Tablet: 2 items per row */
@media (max-width: 768px) {
  .woocommerce-order-received .woocommerce-order-overview li {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile: 1 item per row */
@media (max-width: 480px) {
  .woocommerce-order-received .woocommerce-order-overview {
    padding: 20px;
    gap: 15px;
  }

  .woocommerce-order-received .woocommerce-order-overview li {
    flex: 1 1 100%;
    padding: 12px 15px;
    font-size: 15px;
  }

  .woocommerce-order-received .woocommerce-order-overview li strong {
    font-size: 16px;
  }
}

/* ================== */
.woocommerce-order-received .woocommerce-order-details {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-top: 40px;
  overflow-x: auto;
}

/* Table Styling */
.woocommerce-order-received .woocommerce-order-details .shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  background: #fff;
  min-width: 600px;
}

.woocommerce-order-received .woocommerce-order-details .shop_table th,
.woocommerce-order-received .woocommerce-order-details .shop_table td {
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.woocommerce-order-received .woocommerce-order-details .shop_table th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #333;
}

.woocommerce-order-received .woocommerce-order-details .shop_table td a {
  color: #0071a1;
  text-decoration: none;
}

.woocommerce-order-received .woocommerce-order-details .shop_table .product-quantity {
  display: block;
  margin-top: 5px;
  color: #666;
}

.woocommerce-order-received .woocommerce-order-details .wc-item-meta {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.woocommerce-order-received .woocommerce-order-details .wc-item-meta li {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
}

.woocommerce-order-received .woocommerce-order-details .wc-item-meta-label {
  font-weight: 500;
  margin-right: 4px;
}

.woocommerce-order-received .woocommerce-order-details .woocommerce-Price-amount {
  font-weight: bold;
  color: #222;
}

/* Action Button */
.woocommerce-order-received .woocommerce-order-details .order-actions-button {
  display: inline-block;
  background: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.woocommerce-order-received .woocommerce-order-details .order-actions-button:hover {
  background: #c9302c;
}

/* Responsive Table on Small Screens */
@media (max-width: 768px) {
  .woocommerce-order-received .woocommerce-order-details {
    padding: 20px;
  }

  .woocommerce-order-received .woocommerce-order-details .shop_table {
    min-width: 100%;
    font-size: 14px;
  }

  .woocommerce-order-received .woocommerce-order-details .shop_table th,
  .woocommerce-order-received .woocommerce-order-details .shop_table td {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .woocommerce-order-received .woocommerce-order-details h2 {
    font-size: 20px;
  }

  .woocommerce-order-received .woocommerce-order-details .order-actions-button {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 15px;
  }
}

/* ===================adress section=============== */
.woocommerce-order-received .woocommerce-customer-details {
  padding: 30px;
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.woocommerce-order-received .woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  content: "📞 ";
  margin-right: 6px;
  color: #28a745;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--email::before {
  content: "📧 ";
  margin-right: 6px;
  color: #007bff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .woocommerce-order-received .woocommerce-customer-details {
    padding: 20px;
  }

  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
    font-size: 18px;
  }

  .woocommerce-order-received .woocommerce-customer-details address {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .woocommerce-order-received .woocommerce-customer-details {
    border-left: 4px solid #0071a1;
  }

  .woocommerce-order-received .woocommerce-customer-details address {
    font-size: 14.5px;
  }

  .woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--phone,
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-customer-details--email {
    font-size: 14px;
  }
}

/* ==========checkout add notes===== */
div#order-notes {
    display: none;
}