@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 300;
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
  min-height: 100%;
  color: #000000;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
  font-family: "Exo", sans-serif;
}

a,
button,
input {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

p,
li {
  margin-bottom: 0;
}

button {
  border: 0;
  background-color: transparent;
}

*:focus {
  outline: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.desk-visible {
  display: block;
}

.only-mobile {
  display: none;
}

.hide-mobile-tablet {
  display: block;
}

.only-mobile-tablet {
  display: none;
}

@media (max-width: 1023px) {
  .content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-mobile-tablet {
    display: none;
  }
  .only-mobile-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .desk-visible {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
.qr-btn {
  background: transparent;
  position: relative;
  padding: 5px 20px 5px 5px;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #00b261;
  border-radius: 25px;
  color: #00b261;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-out;
  text-transform: uppercase;
}
.qr-btn svg {
  width: 40px;
  height: 40px;
}

.qr-btn span {
  margin-left: 10px;
  color: #222222;
  font-size: 18px;
  line-height: 28px;
}

/* Fix hover background */
.qr-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00b261;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.qr-btn:hover {
  color: #fff;
}
.qr-btn:hover svg {
  border: 1px solid #fff;
  border-radius: 50%;
}
.qr-btn:hover span {
  color: #fff;
}

.qr-btn:hover::before {
  transform: scaleX(1);
}

.qr-btn-1-wrapper {
  display: inline-block;
  padding: 4px;
  border-radius: 30px;
  background: linear-gradient(90deg, #01CCFE 0%, #01FE8C 100%);
}

.qr-btn-1 {
  background: #00b261;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 25px;
  color: #fff;
  overflow: hidden;
  padding: 5px 5px 5px 20px;
  transition: color 0.3s ease-out;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.qr-btn-1 span {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  z-index: 2;
  position: relative;
  transition: color 0.3s ease-out;
}

.qr-btn-1 svg {
  width: 40px;
  height: 40px;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.qr-btn-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.qr-btn-1:hover::before {
  transform: scaleX(1);
}

.qr-btn-1:hover span {
  color: #00b261;
}

.qr-btn-2 {
  background-color: #00B261;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.qr-btn-2:hover {
  background-color: rgba(0, 178, 98, 0.8980392157);
}

.qr-btn-3 {
  background-color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  color: #222222;
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.qr-btn-3:hover {
  background-color: rgba(0, 178, 98, 0.8980392157);
  color: #ffffff;
}

.quote-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  margin: auto;
}
.quote-form.pad30 {
  padding: 50px 30px;
}

.quote-form h2 {
  color: #222;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
}

.quote-form p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.quote-form p.cnt {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
  padding-top: 50px;
}

.quote-form p.cnt-ub {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  padding-top: 30px;
}

.quote-form p a {
  color: #00b261;
  font-weight: 600;
  text-decoration: none;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.form-row .sec1 {
  flex: 1 1 48%;
  display: flex;
  gap: 20px;
}

.form-row-three {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1 1 48%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-row-three input,
.form-row-three select {
  flex: 1 1 30%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row-three input:focus,
.form-row-three select:focus {
  outline: none;
  border-color: #e2b84a;
}

.input-icon {
  position: relative;
  flex: 1 1 48%;
}

.input-icon input {
  width: 100%;
  padding-right: 50px;
}

.input-icon input[type=date] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 10px;
}

.input-icon .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.input-icon .icon svg {
  width: 22px;
  height: 22px;
}

/* Hide default date picker icon in WebKit browsers */
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

input[type=date] {
  accent-color: blue;
}

button[type=submit] {
  background-color: #00b261;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 24px;
}

button[type=submit]:hover {
  background-color: #00994c;
}

/* Custom dropdown arrow styling for select */
.form-row select,
.form-row-three select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.extra-services {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
  background-color: #f7f9fb;
  padding: 20px 0;
  border-radius: 10px;
  margin-bottom: 20px;
}

.extra-services label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.extra-services input[type=checkbox] {
  accent-color: #e2b84a;
  width: 25px;
  height: 20px;
  border: 1px solid #e2b84a;
  border-radius: 4px;
}

.additional-info {
  display: flex;
  flex-direction: column;
}

.additional-info label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.additional-info textarea {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  background: #fff;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .quote-form .form-row-three {
    flex-wrap: wrap;
  }
}
.qr-heading h2 {
  color: #333333;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  margin: 20px 0;
}
.qr-heading .inner {
  font-size: 32px;
  line-height: 42px;
  margin: 25px 0 10px;
  font-weight: 700;
}
.qr-heading .sub {
  font-size: 24px;
  line-height: 34px;
  padding: 20px 0 10px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .qr-heading h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .qr-heading h2.inner {
    font-size: 24px;
    line-height: 34px;
  }
}
.qr-accord {
  padding: 10px 0;
}
.qr-accord ul li {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
  cursor: pointer;
}
.qr-accord ul li .outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qr-accord ul li:last-child {
  border: none;
}
.qr-accord ul li.active p {
  display: block;
}
.qr-accord ul li.active .icon {
  transform: rotate(90deg);
}
.qr-accord ul li.active .icon-1::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.qr-accord h3 {
  color: #222222;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 12px;
}
.qr-accord .icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.qr-accord .icon img {
  width: 100%;
  height: 100%;
}
.qr-accord p {
  display: none;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 10px;
  width: 95%;
}
.qr-accord .icon-1 {
  position: relative;
  background-color: #222222;
  padding: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.qr-accord .icon-1::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.qr-accord .icon-1::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.qr-modal-outer {
  background-color: #eeeeee;
  display: flex;
  padding: 15px 25px;
  align-items: center;
  border-radius: 20px;
/*   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  max-width: 800px;
  width: 100%;
  gap: 20px;
  margin: auto;
}

.qr-modal-outer__w60 {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-modal-outer__w40 {
  flex: 0 0 auto;
}

.qr-modal-outer__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  position: relative;
}

.qr-modal-outer__inner:first-child::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: #e3e3e3;
}

.qr-modal-outer__inner svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.qr-modal-outer__inner input {
  border: none;
  outline: none;
  padding: 12px 8px;
  font-size: 16px;
  background: transparent;
  width: 100%;
}

.qr-modal-outer__inner input::-moz-placeholder {
  color: #999;
}

.qr-modal-outer__inner input::placeholder {
  color: #999;
}

/* Modal Styles */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  background: #fff;
  border-radius: 20px;
  width: 85vw;
  overflow-y: auto;
  position: relative;
  transition: transform 0.3s ease;
}

.modal:target .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal__close:hover {
  background: #e0e0e0;
  color: #333;
}

.modal-hero {
  padding: 20px;
  background-color: #eeeeee;
}

.modal-hero h2 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222222;
  text-align: left;
}

.modal-hero p {
  color: #666;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.qr-modal-outer__outer {
  display: flex;
  gap: 40px;
  align-items: center;
}

.qr-modal-outer__w-50 {
  flex: 1;
}

.qr-modal-outer__w-50.cnter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-modal-outer__img {
  width: 94%;
  height: auto;
}

.qr-modal-outer__img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-modal-outer__w-50.cnter {
    display: none;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .qr-modal-outer {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .qr-modal-outer__w60 {
    width: 100%;
    justify-content: center;
  }
  .qr-modal-outer__w40 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .qr-modal-outer__inner input {
    width: 120px;
  }
  .modal-hero {
    padding: 20px;
  }
  .modal-hero h2 {
    font-size: 28px;
    line-height: 35px;
  }
  .qr-modal-outer__outer {
    flex-direction: column;
    gap: 30px;
  }
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .modal__content {
    margin-top: 30%;
    margin-bottom: 2%;
    width: 95vw;
  }
}
@media (max-width: 400px) {
  body .qr-hero__cntnr > h1 {
    font-size: 36px;
    line-height: 50px;
    margin-top: 60px;
  }
}
.qr-hero-cuntr {
  background: rgba(255, 254, 250, 0.2196078431);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 30px 40px;
}
.qr-hero-cuntr__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.qr-hero-cuntr__tile {
  display: flex;
/*   flex-direction: column; */
  align-items: center;
/*   width: calc(25% - 20px); */
  margin: 0 10px;
}
.qr-hero-cuntr__tile .head {
  font-size: 40px;
  line-height: 45px;
  color: #ffffff;
  font-family: "inter", sans-serif;
  font-weight: 600;
  padding-right: 100px;
}
.qr-hero-cuntr__tile .head-2 {
  font-size: 40px;
  line-height: 45px;
  color: #ffffff;
  font-family: "inter", sans-serif;
  font-weight: 600;
  padding-right: 20px;
}
.qr-hero-cuntr__tile .head-2 svg, .qr-hero-cuntr__tile .head-2 img {
  width: 38px;
  height: 38px;
}
.qr-hero-cuntr__tile p {
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  text-align: left;
}
h3.head-2{
 display: flex;
    justify-content: space-around;
    align-items: center;
gap: 10px;
}
span.block_new{
display: block;

}	
}
@media (min-width: 768px) and (max-width: 1023px) {
  .qr-hero-cuntr__tile {
    width: calc(50% - 20px);
    margin: 15px 10px;
  }
  .qr-hero-cuntr__tile .head,
  .qr-hero-cuntr__tile .head-2 {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .qr-hero-cuntr__tile {
/*     width: calc(50% - 20px); */
    margin: 15px 10px;
  }
  .qr-hero-cuntr {
    width: 100%;
    padding: 20px;
  }
  .qr-hero-cuntr__tile .head,
  .qr-hero-cuntr__tile .head-2 {
    padding-right: 0;
    font-size: 30px;
    line-height: 40px;
  }
  .qr-hero-cuntr__tile p {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }
	.qr-hero-cuntr__tile .head-2{
		display:flex;
		align-items:center;
		padding-right:20px;
	}
}
.qr-srvce-card {
  display: inline-block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 470px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.qr-srvce-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0) 33.47%);
  border-radius: 20px;
}
.qr-srvce-card__outer {
  display: flex;
  align-items: flex-end;
  padding: 25px;
  justify-content: center;
  height: 100%;
}
.qr-srvce-card__head {
  font-family: "inter", sans-serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.qr-srvce-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.qr-srvce-card:hover .qr-srvce-card__head {
  padding: 10px 0;
}

.qr-vid-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.qr-vid-card__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
  transition: all 0.3s ease;
  display: inline-block;
}
.qr-vid-card__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.168627451);
  border-radius: 20px;
}
.qr-vid-card__outer {
  display: flex;
  align-items: center;
  padding: 25px;
  justify-content: center;
  height: 100%;
}
.qr-vid-card__icon {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}
.qr-vid-card__icon svg {
  width: 100%;
  height: 100%;
}
.qr-vid-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.qr-vid-card:hover .qr-vid-card__icon {
  transform: skew(-8deg);
  transition-delay: 0.3s;
}
.qr-vid-card:hover .qr-vid-card__bg {
  transform: scale(1.06);
}

.qr-blog-card {
  box-shadow: 0px 0px 18.58px 0px rgba(152, 111, 176, 0.1607843137);
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
}
.qr-blog-card__img {
  width: 100%;
    height: 228px;
    position: relative;
}
.qr-blog-card__img img {
     width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    object-position: top;

}
.qr-blog-card__tag {
  background-color: #e2b84a;
  display: inline-block;
  position: absolute;
  left: 5%;
  top: 10%;
  color: #2f3c33;
  font-size: 16px;
  line-height: 16px;
  padding: 8px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.qr-blog-card__inner {
  padding: 10px 10px 0;
}
.qr-blog-card__inner h3 {
  color: #000000;
  font-family: "inter", sans-serif;
  font-size: 20px;
  line-height: 30px;
  padding: 10px 0;
  font-weight: 600;
max-height: 85px;
}
.qr-blog-card__inner p {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  padding-bottom: 15px;
}
.qr-blog-card__inner .butn {
  display: inline-block;
  color: #878787;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 15px;
}
.qr-blog-card:hover .qr-blog-card__tag {
  background-color: #2f3c33;
  color: #ffffff;
}
.qr-blog-card:hover .qr-blog-card__inner .butn {
  color: #e2b84a;
}

.qr-srvce-innr-crd {
  background-color: #F3F5F7;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.qr-srvce-innr-crd__img {
  width: 50px;
  height: 50px;
}
.qr-srvce-innr-crd__img img {
  width: 100%;
  height: 100%;
}
.qr-srvce-innr-crd__cnt {
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.qr-share-sec {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 24px;
}
.qr-share-sec.martop85 {
  margin-top: 85px;
}
.qr-share-sec p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  padding-bottom: 10px;
  width: 80%;
}
.qr-share-sec h2 {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .qr-share-sec.martop85 {
    margin-top: 20px;
  }
}
.qr-client-sec__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px -10px;
}
.qr-client-sec__card {
  width: calc(33.33% - 20px);
  margin: 10px;
  height: auto;
}
.qr-client-sec__card img {
  width: 100%;
  height: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-client-sec__card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .qr-client-sec__card {
    width: calc(100% - 20px);
  }
}
.qr-innr-bnr {
  position: relative;
  width: 100%;
  height: 330px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.qr-innr-bnr::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6705882353);
}
.qr-innr-bnr__outer {
  height: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  padding: 0 0 60px;
}
.qr-innr-bnr__outer h1 {
  color: #ffffff;
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
  padding-bottom: 20px;
}
.qr-innr-bnr__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-innr-bnr__inner a {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Exo", sans-serif;
}
.qr-innr-bnr__inner span {
  height: 1.5px;
  width: 15px;
  background-color: #00b261;
}

@media (max-width: 767px) {
  .qr-innr-bnr__outer h1 {
    font-size: 38px;
    line-height: 50px;
  }
}
.qr-quote-sec .qr-share-sec {
  margin-top: 30px;
}
.qr-quote-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.qr-quote-sec__outer .wdt-30 {
  width: 30%;
  position: sticky;
  top: 20px;
}
.qr-quote-sec__outer .wdt-70 {
  width: 70%;
}
.qr-quote-sec__cnt {
  color: #000000;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
.qr-quote-sec__cnt a {
  font-weight: 600;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}
.qr-quote-sec__grey {
  background-color: #f3f5f7;
  border-radius: 20px;
  padding: 30px;
}
.qr-quote-sec ul.list li:last-child {
  margin-bottom: 20px;
}
.qr-quote-sec ul.list {
  list-style: none;
  padding-left: 0;
  position: relative;
  margin: 0;
}
.qr-quote-sec ul.list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  bottom: 7px;
  width: 2px;
  border-left: 2px dashed #d6dce5;
  z-index: 0;
}
.qr-quote-sec ul.list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 45px;
  font-family: "Exo", sans-serif;
}
.qr-quote-sec ul.list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #d6dce5;
  border-radius: 50%;
  z-index: 1;
}
.qr-quote-sec ul.list li.active::before {
  background: #8cc63f;
  width: 28px;
  height: 28px;
  top: 0;
  left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  content: "1";
  font-size: 14px;
  font-weight: bold;
}
.qr-quote-sec ul.list li a {
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #3d3d3d;
  text-decoration: none;
}
.qr-quote-sec ul.list li a strong {
  font-weight: 700;
}
.qr-quote-sec ul.list li.active a {
  font-weight: 700;
}
.qr-quote-sec ul.list li.active::before {
  content: var(--step-number);
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .qr-quote-sec__grey {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .qr-quote-sec__grey {
    display: none;
  }
}
@media (max-width: 767px) {
  .qr-quote-sec__grey {
    display: none;
  }
  .qr-quote-sec__outer {
    flex-direction: column;
  }
  .qr-quote-sec__outer .wdt-30, .qr-quote-sec__outer .wdt-70 {
    width: 100%;
    position: inherit;
  }
  .qr-quote-sec .quote-form {
    padding: 20px;
  }
}
.ic-header {
  background-color: #f6f6f6;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.ic-header .navbar-expand-lg {
  padding: 0;
}
.ic-header .navbar-expand-lg .offcanvas .offcanvas-body {
  align-items: center;
}
.ic-header .navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 230px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu {
  position: relative;
}
.ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu .dropdown-menu {
  display: none;
}
.ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu:hover .dropdown-menu {
  display: block;
  position: absolute;
  right: -100%;
  top: -80%;
}
.ic-header .dropdown-item.active,
.ic-header .dropdown-item:active,
.ic-header .dropdown-item:hover {
  color: #005c97;
  background: #ebf7ff;
}
.ic-header .dropdown-item {
  padding: 10px 20px;
  text-transform: uppercase;
}
.ic-header .only-mobile-tablet-n {
  display: none;
}
.ic-header .hide-mobile-tablet-n {
  display: inline-block !important;
}
.ic-header .dropdown-menu {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.ic-header .navbar-expand-lg .offcanvas .offcanvas-body {
  transition: all 0.3s ease-in-out;
}
.ic-header .outer {
  justify-content: center;
}
.ic-header .dropdown-toggle::after {
  display: none;
}
.ic-header .act-btn {
  margin-left: auto;
  margin-bottom: 10px;
}
.ic-header .navbar-expand-lg .navbar-nav {
  gap: 30px;
  margin: 0 auto;
  padding: 0 18px;
  border-radius: 16px;
  background-color: #eeeeee;
}
.ic-header .container-fluid {
  padding: 0;
  margin: 0;
}
.ic-header .navbar-nav .nav-link.active {
  position: relative;
  padding: 20px 14px;
}
.ic-header .navbar-nav .nav-link.active::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e2b84a;
}
.ic-header__logo {
  width: 200px;
  height: auto;
  margin: 8px 0;
}
.ic-header__logo img {
  width: 100%;
  height: 100%;
}
.ic-header .navbar-nav .nav-link.show {
  color: #00b261;
}
.ic-header .navbar-nav .nav-link {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  text-transform: uppercase;
 padding: 20px 14px;
position: relative;

}

@media (min-width: 1024px) and (max-width: 1199px) {
  .ic-header .navbar-expand-lg .navbar-nav {
    gap: 10px;
  }
  .ic-header__logo {
    width: 160px;
  }
  .ic-header .navbar-nav .nav-link {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ic-header .nav-item a {
    display: inline-block;
  }
  .ic-header .nav-item {
    width: 100%;
  }
  .ic-header .dropdown-menu.active {
    display: block;
    position: relative;
  }
  .ic-header .navbar-nav .nav-link.active::after {
    display: none;
  }
  .ic-header .navbar-nav .nav-link.active {
    padding: 0;
  }
  .ic-header .navbar-expand-lg .navbar-nav {
    background-color: #ffffff;
  }
  .ic-header .qr-btn-2 {
    margin-top: 20px;
    display: inline-block;
  }
  .ic-header .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }
  .ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    padding-left: 20px;
  }
  .ic-header .dropdown-item {
    white-space: wrap;
    width: 90%;
  }
  .ic-header .navbar-expand-lg .offcanvas .offcanvas-body {
    overflow-x: hidden;
  }
}
@media (max-width: 767px) {
  .ic-header .nav-item {
    width: 100%;
  }
  .ic-header .nav-item a {
    display: inline-block;
  }
  .ic-header .act-btn {
    margin-top: 20px;
  }
  .ic-header .dropdown-item {
    white-space: wrap;
    width: 90%;
  }
  .ic-header .navbar-nav .nav-link.active::after {
    display: none;
  }
  .ic-header .navbar-nav .nav-link.active {
    padding: 0;
  }
  .ic-header .dropdown-menu.active {
    display: block;
    position: relative;
  }
  .ic-header.scrolled .navbar-expand-lg .offcanvas .offcanvas-body {
    padding: 20px;
  }
  .ic-header .navbar-expand-lg .offcanvas .offcanvas-body {
    overflow-x: hidden;
  }
  .ic-header .navbar-expand-lg .navbar-nav {
    background-color: #ffffff;
    gap: 10px;
  }
  .ic-header__logo {
    width: 180px;
    margin-top: 20px;
  }
  .dropdown-toggle .arrow,
  .ic-header .only-mobile-tablet-n {
    display: inline-block !important;
  }
  .ic-header .hide-mobile-tablet-n {
    display: none !important;
  }
  .ic-header .qr-btn-2 {
    margin-top: 20px;
    display: inline-block;
  }
  .ic-header .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }
  .ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    padding-left: 20px;
  }
  .ic-header .navbar-expand-lg .navbar-nav .dropdown-menu .submenu .dropdown-menu {
    gap: 20px;
  }
  .ic-header .navbar-expand-lg .navbar-nav {
    padding: 0 10px;
  }
}
@media (min-width: 1024px) {
  .ic-header .dropdown-menu {
    display: none;
  }
  .ic-header .dropdown:hover .dropdown-menu {
    display: none;
    position: absolute;
  }
}
.qr-hero .video-container {
  position: relative;
  height: 900px;
  width: 100%;
  overflow: hidden;
}
.qr-hero .video-container .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.qr-hero .overlay {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6705882353);
}
.qr-hero__cntnr {
  margin-top: 3%;
}
.qr-hero__outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  width: 100%;
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
.qr-hero__outer h1 {
  color: #ffffff;
  font-size: 64px;
  line-height: 74px;
  font-weight: 500;
 padding: 30px 0 75px;
}
.qr-hero .quote-form {
  padding: 0;
  background-color: #eeeeee;
}
.qr-hero .qr-modal-outer {
  padding: 8px 12px;
}
.qr-hero .qr-hero-cuntr {
  width: 85%;
  border-radius: 30px;
  margin-top: auto;
  margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-hero .qr-modal-outer {
    margin: auto;
  }
  .qr-hero .video-container {
    height: 720px;
  }
  .qr-hero .qr-hero-cuntr {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .qr-hero__outer h1 {
    font-size: 42px;
    line-height: 55px;
  }
  .qr-hero .qr-modal-outer__inner {
    width: 100%;
  }
  .qr-hero .qr-modal-outer__w60 {
    flex-direction: column;
  }
  .qr-hero .modal {
    align-items: flex-start;
  }
  .qr-hero .form-row input,
  .qr-hero .form-row select {
    width: 100%;
  }
  .qr-hero .qr-modal-outer__outer {
    align-items: normal;
  }
  .qr-hero .modal-hero {
    padding: 40px 20px 20px;
  }
  .qr-hero .video-container {
    height: 900px;
  }
  .qr-hero .qr-hero-cuntr {
    width: 100%;
    margin-top: 30px;
	margin-bottom:40px;
  }
  .qr-hero .qr-modal-outer__w-50.cnter {
    display: none;
  }
}
.qr-srvce-hme {
  padding: 60px 0;
}
.qr-srvce-hme .qr-heading h2 {
  text-align: center;
}
.qr-srvce-hme__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.qr-srvce-hme__inner p {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.qr-srvce-hme .qr-btn-2 {
  position: absolute;
  right: 0;
  top: -50%;
}
.qr-srvce-hme__slider {
  padding: 50px 0 0;
  margin: 0 -10px;
}
.qr-srvce-hme__slider .slick {
  margin: 0 10px;
}
.qr-srvce-hme .slick-dots li button:before {
  font-size: 40px;
  line-height: 90px;
}
.qr-srvce-hme .slick-dots li.slick-active button:before {
  color: #e2b84a;
}

@media (max-width: 767px) {
  .qr-srvce-hme .qr-btn-2 {
    position: inherit;
  }
  .qr-srvce-hme__inner {
    flex-direction: column;
    gap: 20px;
  }
  .qr-srvce-hme__slider {
    padding: 35px 0 0;
  }
}
.qr-features-sec {
  margin: 40px 0;
}
.qr-features-sec__outer {
  background-color: #eeeeee;
  padding: 45px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}
.qr-features-sec__w-50 {
  width: 50%;
}
.qr-features-sec__w-45 {
  width: 46%;
}
.qr-features-sec__img {
  width: 88%;
  height: auto;
}
.qr-features-sec__img img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
.qr-features-sec__tile {
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1607843137);
}
.qr-features-sec__tile:last-child {
  border-bottom: none;
}
.qr-features-sec__tile:hover .qr-features-sec_arrow {
  opacity: 1;
  transform: translateY(0px);
}
.qr-features-sec__icon {
  width: 38px;
  height: 38px;
}
/* .qr-features-sec__icon svg {
  width: 100%;
  height: 100%;
} */
.qr-features-sec__cnt .head {
  color: #222222;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  font-family: "inter", sans-serif;
}
.qr-features-sec__cnt p {
  color: #222222;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 10xpx;
}
.qr-features-sec_arrow {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
  margin-top: auto;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(5px);
}
.qr-features-sec_arrow svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .qr-features-sec__w-45 {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .qr-features-sec__outer {
    flex-direction: column;
    gap: 40px;
  }
  .qr-features-sec__w-50,
  .qr-features-sec__w-45,
  .qr-features-sec__img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .qr-features-sec__outer {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .qr-features-sec__w-50,
  .qr-features-sec__w-45,
  .qr-features-sec__img {
    width: 100%;
  }
  .qr-features-sec__icon {
    width: 20%;
  }
  .qr-features-sec_arrow {
    display: none;
  }
}
.qr-about-hme {
  padding: 50px 0 0;
}
.qr-about-hme__outer {
  padding: 0 30px;
}
.qr-about-hme__outer p {
  color: #000000;
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 20px;
  text-align: center;
}
.qr-about-hme__outer .btn {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px;
}
.qr-about-hme .qr-heading h2 {
  text-align: center;
  padding-bottom: 30px;
}
.qr-about-hme__bg {
  width: 100%;
  height: 730px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.qr-about-hme__sec {
  width: 32%;
  margin-left: auto;
  padding: 8% 0;
}
.qr-about-hme__sec p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 20px;
}
.qr-about-hme__box {
  background-color: #222222;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-about-hme__box p {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
.qr-about-hme__box a {
  color: #E2B84A;
  font-size: 18px;
  line-height: 28px;
}
.qr-about-hme__box a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .qr-about-hme__bg {
    height: 100%;
    background-position: right;
  }
  .qr-about-hme__sec {
    width: 100%;
  }
  .qr-about-hme__outer {
    padding: 0 20px;
  }
}
.qr-vid-hme {
  padding: 60px 0;
}
.qr-vid-hme .qr-heading h2 {
  text-align: left;
}
.qr-vid-hme__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.qr-vid-hme__inner p {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
}
.qr-vid-hme__slider {
  padding: 50px 0 0;
  margin: 0 -10px;
}
.qr-vid-hme__slider .slick {
  margin: 0 10px;
}
.qr-vid-hme .qr-btn-2 {
  position: absolute;
  right: 0;
  top: -50%;
}
.qr-vid-hme .slick-dots li button:before {
  font-size: 40px;
  line-height: 90px;
}
.qr-vid-hme .slick-dots li.slick-active button:before {
  color: #e2b84a;
}

@media (max-width: 767px) {
  .qr-vid-hme .qr-btn-2 {
    position: inherit;
  }
  .qr-vid-hme__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.qr-feedbcks-hme {
  background-color: #eeeeee;
  padding: 80px 0;
}
.qr-feedbcks-hme__outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qr-feedbcks-hme__w-40 {
  width: 40%;
}
.qr-feedbcks-hme__w-50 {
  width: 50%;
}
.qr-feedbcks-hme__img {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 25%;
}
.qr-feedbcks-hme__img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.qr-feedbcks-hme__img .icon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -6%;
  bottom: -6%;
}
.qr-feedbcks-hme__img .icon img {
  width: 55px;
  height: auto;
  margin: auto;
}
.qr-feedbcks-hme__cnt {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  padding-bottom: 20px;
}
.qr-feedbcks-hme__quote {
  width: 50px;
  height: auto;
  margin: 0 0 10px;
}
.qr-feedbcks-hme__quote img {
  width: 100%;
  height: 100%;
}
.qr-feedbcks-hme__slider {
  margin: 0 -10px;
}
.qr-feedbcks-hme__slider .slick {
  margin: 0 10px;
}
.qr-feedbcks-hme__txt {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  padding: 30px 0;
  font-style: italic;
}
.qr-feedbcks-hme__athr {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #000000;
}
.qr-feedbcks-hme .slick-dots {
  text-align: right;
  padding-right: 20px;
  bottom: -15%;
}
.qr-feedbcks-hme .slick-dots li {
  display: inline-block;
  margin: 0 10px;
  width: 60px;
}
.qr-feedbcks-hme .slick-dots li button {
  width: 30px;
  height: 3px;
  padding: 0;
}
.qr-feedbcks-hme .slick-dots li button:before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #d3d3d3; /* light grey */
  opacity: 1;
  border-radius: 1.5px;
  transition: background 0.3s;
}
.qr-feedbcks-hme .slick-dots li.slick-active button:before {
  background: #e2b84a; /* gold */
}

@media (max-width: 767px) {
  .qr-feedbcks-hme__outer {
    flex-direction: column-reverse;
  }
  .qr-feedbcks-hme__w-40,
  .qr-feedbcks-hme__w-50 {
    width: 100%;
  }
  .qr-feedbcks-hme__img {
    width: 92%;
    margin: 25% auto 0;
  }
  .qr-feedbcks-hme {
    padding: 40px 0;
  }
}
.qr-blog-hme {
  padding: 60px 0;
}
.qr-blog-hme .qr-heading h2 {
  text-align: left;
}
.qr-blog-hme__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.qr-blog-hme__inner p {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
}
.qr-blog-hme__slider {
  padding: 50px 0 0;
  margin: 0 -10px;
}
.qr-blog-hme__slider .slick {
  margin: 0 10px;
}
.qr-blog-hme .qr-btn-2 {
  position: absolute;
  right: 0;
  top: -50%;
}
.qr-blog-hme__outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 40px -10px 20px;
}
.qr-blog-hme .qr-blog-card {
  width: calc(33.3% - 20px);
  margin: 0 10px;
}

@media (max-width: 767px) {
  .qr-blog-hme .qr-btn-2 {
    position: inherit;
  }
  .qr-blog-hme__inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .qr-blog-hme .qr-blog-card {
    width: calc(50% - 20px);
    margin: 20px 10px;
  }
}
@media (max-width: 767px) {
  .qr-blog-hme .qr-blog-card {
    width: calc(100% - 20px);
    margin: 10px;
  }
}
.qr-footer {
  background-color: #222222;
}
.qr-footer__sec1 {
  padding: 40px 0;
}
.qr-footer__sec2 {
  border-top: 1px solid #505050;
  background-color: #202020;
  padding: 20px 0;
}
.qr-footer__sec2 .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.qr-footer__sec2 .outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qr-footer__sec2 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  padding-right: 10px;
}
.qr-footer__sec2 p.rgt {
  border-right: 1px solid rgba(255, 255, 255, 0.1607843137);
}
.qr-footer__sec2 .links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.qr-footer__sec2 .links a {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}
.qr-footer__pm {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.qr-footer__pm p {
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  padding-right: 10px;
  padding-bottom: 5px;
}
.qr-footer__pm svg {
  width: 180px;
  height: 40px;
}
.qr-footer__grey-box {
  background-color: #292929;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qr-footer__grey-box .wdt-50 {
  width: 50%;
}
.qr-footer__grey-box .wdt-50 h2 {
  color: #ffffff;
  font-family: "inter", sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  padding-bottom: 10px;
}
.qr-footer__grey-box .wdt-50 p {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.qr-footer__grey-box .wdt-50 .btn-outer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.qr-footer__outer {
  padding: 50px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.qr-footer__w-30 {
  width: 25%;
}
.qr-footer__w-30 img {
  width: 80%;
  height: auto;
}
.qr-footer__w-70 {
  width: 75%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.qr-footer__head {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 15px;
}
.qr-footer__lnks {
  color: #ffffff;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}
.qr-footer__lnks:hover {
  opacity: 0.8;
}
.qr-footer__lnks-outer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-footer__lnks-outer img,
.qr-footer__lnks-outer svg {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
.qr-footer__scial {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
}
.qr-footer__scial svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.qr-footer__scial svg:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-footer__outer {
    flex-direction: column;
    gap: 40px;
  }
  .qr-footer__w-70 {
    width: 100%;
  }
  .qr-footer__sec2 .outer {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .qr-footer__outer {
    flex-direction: column;
    gap: 40px;
  }
  .qr-footer__w-70 {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
  .qr-footer__grey-box {
    padding: 20px;
    flex-direction: column;
    gap: 25px;
  }
  .qr-footer .wdt-50 {
    width: 100%;
  }
  .qr-footer__grey-box .wdt-50 .btn-outer {
    justify-content: flex-start;
  }
  .qr-footer__w-30 {
    width: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
  .qr-footer__grey-box .wdt-50 h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .qr-footer__sec2 .outer {
    flex-direction: column;
    gap: 20px;
  }
  .qr-footer__sec2 .inner {
    flex-direction: column;
  }
}
.qr-about-sec {
  padding: 10px 0 60px;
}
.qr-about-sec .qr-heading h2.inner {
  padding: 25px 0 10px;
}
.qr-about-sec .qr-share-sec {
  margin-top: 85px;
}
.qr-about-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.qr-about-sec__outer .wdt-30 {
  width: 30%;
  position: sticky;
  top: 20px;
}
.qr-about-sec__outer .wdt-70 {
  width: 70%;
  margin-top: 55px;
}
.qr-about-sec__cnt {
  color: #000000;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
.qr-about-sec__cnt a {
  font-weight: 600;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}
.qr-about-sec__img {
  width: 100%;
  height: auto;
  margin: 15px 0;
}
.qr-about-sec__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.qr-about-sec__list {
  list-style: decimal;
  font-weight: 600;
  padding-left: 20px;
  margin: 10px 0;
}
.qr-about-sec__list li {
  color: #000000;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.qr-about-sec__list li span {
  font-weight: 400;
}

@media (max-width: 767px) {
  .qr-about-sec__outer {
    flex-direction: column;
  }
  .qr-about-sec__outer .wdt-30 {
    position: relative;
    width: 100%;
  }
  .qr-about-sec__outer .wdt-70 {
    width: 100%;
    margin-top: 0;
  }
  .qr-share-sec {
    margin-top: 0;
  }
}
.qr-blog-sec {
  padding: 90px 0 40px;
}
.qr-blog-sec .qr-heading h2 {
  text-align: center;
}
.qr-blog-sec__cnt {
  text-align: center;
  color: #000000;
  font-size: 18px;
  line-height: 28px;
}
.qr-blog-sec__outer {
  margin-top: 50px;
}
.qr-blog-sec .nav-tabs {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.qr-blog-sec .nav-tabs .nav-item.show .nav-link,
.qr-blog-sec .nav-tabs .nav-link.active {
  border: none;
  background-color: #222222;
  color: #ffffff;
}
.qr-blog-sec .nav-tabs .nav-link {
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 16px;
  line-height: 26px;
  border: none;
  background-color: #f0f0f0;
  color: #2f3c33;
}
.qr-blog-sec__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 40px -10px 20px;
}
.qr-blog-sec .qr-blog-card {
  width: calc(33.3% - 20px);
  margin: 10px;
}
.qr-blog-sec .pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.qr-blog-sec .page {
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #1c1c1c;
  cursor: pointer;
  transition: background-color 0.3s;
}
.qr-blog-sec .page:hover {
  background-color: #dcdcdc;
}
.qr-blog-sec .page.active {
  background-color: #1c1c1c;
  color: white;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-blog-sec .qr-blog-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .qr-blog-sec .qr-blog-card {
    width: calc(100% - 20px);
  }
}
.qr-quote-tab {
  padding: 80px 0 60px;
}
.qr-quote-tab button, .qr-quote-tab .nav-link:focus, .qr-quote-tab .nav-link:hover {
  background-color: #F0F0F0;
  color: #2F3C33;
  border-radius: 16px !important;
  font-size: 16px;
  line-height: 26px;
  padding: 10px 20px;
}
.qr-quote-tab .qr-heading h2 {
  text-align: center;
}
.qr-quote-tab .qr-quote-sec {
  padding-top: 100px;
}
.qr-quote-tab .quote-form .cnt {
  scroll-margin-top: 80px;
}
.qr-quote-tab .nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 20px 0 0;
}
.qr-quote-tab .nav-pills .nav-link.active, .qr-quote-tab .nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #222222;
}
.qr-quote-tab #pills-Office form .sec1 input[type=text] {
  width: 12em;
}
.qr-quote-tab .qr-quote-sec__outer .wdt-30 {
  top: 115px;
}

.qr-srvc-sec {
  padding: 10px 0 50px;
}
.qr-srvc-sec .qr-share-sec, .qr-srvc-sec .qr-about-sec__outer .wdt-70 {
  margin-top: 85px;
}

@media (max-width: 767px) {
  .qr-srvc-sec .qr-share-sec, .qr-srvc-sec .qr-about-sec__outer .wdt-70 {
    margin-top: 20px;
  }
  .qr-srvc-sec {
    padding: 20px 0;
  }
}
.qr-about-sec__outer {
  padding: 10px 0 50px;
}
.qr-about-sec__outer__point {
  padding: 15px 0;
}
.qr-about-sec__outer__point li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.qr-about-sec__outer__point li img {
  width: 28px;
  height: 28px;
}
.qr-about-sec__outer__dotlist {
  padding: 20px 0;
  list-style-type: disc;
  padding-left: 20px;
}
.qr-about-sec__outer__dotlist li {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 12px;
}
.qr-about-sec__outer__dotlist li span {
  font-weight: 600;
}
.qr-about-sec__outer__cntnr {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px -10px;
}
.qr-about-sec__outer__cntnr P {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
}
.qr-about-sec__outer .qr-srvce-innr-crd {
  width: calc(33.3% - 20px);
  margin: 10px;
}
.qr-about-sec__outer__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}
.qr-about-sec__outer__inner .sec1 {
  width: 65%;
}
.qr-about-sec__outer__inner .sec2 {
  width: 35%;
}
.qr-about-sec__outer__inner img {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.qr-about-sec__outer__tab {
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  padding: 20px 30px;
  margin: 85px 0 20px;
}
.qr-about-sec__outer__tab ul li:last-child .inner {
  border: none;
}
.qr-about-sec__outer__tab ul li.active .inner p {
  font-weight: 700;
}
.qr-about-sec__outer__tab ul li.active .img {
  opacity: 1;
}
.qr-about-sec__outer__tab ul li .inner {
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.qr-about-sec__outer__tab ul li .inner p {
  color: #222222;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  display: block;
}
.qr-about-sec__outer__tab ul li .img {
  width: 32px;
  height: 32px;
  opacity: 0;
}
.qr-about-sec__outer .greybox {
  background-color: #F3F5F7;
  padding: 40px 30px;
  border-radius: 20px;
}
.qr-about-sec__outer .greybox h3 {
  color: #222222;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.qr-about-sec__outer .greybox .cnt {
  color: #3D3D3D;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding: 8px 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-about-sec__outer__cntnr P {
    min-height: 64px;
  }
  .qr-about-sec__outer__tab {
    padding: 30px 20px;
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .qr-about-sec__outer__inner {
    flex-direction: column;
  }
  .qr-about-sec__outer__inner .sec1, .qr-about-sec__outer__inner .sec2 {
    width: 100%;
  }
  .qr-about-sec__outer .qr-srvce-innr-crd {
    width: calc(50% - 20px);
  }
  .qr-about-sec__outer__cntnr P {
    min-height: 64px;
  }
  .qr-about-sec__outer__tab {
    margin: 20px 0;
  }
}
.qr-blog-inner {
  padding: 80px 0 60px;
}
.qr-blog-inner__outer {
  width: 80%;
  margin: auto;
}
.qr-blog-inner__img {
  width: 100%;
  height: auto;
}
.qr-blog-inner__img img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.qr-blog-inner__cntnr {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
}
.qr-blog-inner__prfile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-blog-inner__prfile img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.qr-blog-inner__prfile p.cnt {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.qr-blog-inner__prfile p.sub {
  color: rgba(17, 17, 17, 0.6);
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}
.qr-blog-inner__prfile .inr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.qr-blog-inner__dte {
  color: rgba(17, 17, 17, 0.6);
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}
.qr-blog-inner__tag {
  background-color: #f0f0f0;
  border-radius: 16px;
  padding: 10px 20px;
  color: #2f3c33;
  font-size: 16px;
  line-height: 26px;
}
.qr-blog-inner__cnt {
  color: #000000;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
}
.qr-blog-inner__head {
  color: #00b261;
  padding: 20px 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.qr-blog-inner__head.blk {
  color: #000000;
  padding: 10px 0;
}
.qr-blog-inner__list {
  list-style-type: decimal;
  padding-left: 20px;
}
.qr-blog-inner__list li {
  color: #000000;
  padding-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.qr-blog-inner__list li span {
  font-weight: 600;
}

@media (max-width: 767px) {
  .qr-blog-inner__outer {
    width: 100%;
  }
  .qr-blog-inner__cntnr {
    flex-wrap: wrap;
  }
}
.qr-cntct-sec {
  padding: 40px 0;
}
.qr-cntct-sec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.qr-cntct-sec__w-50 {
  width: 50%;
}
.qr-cntct-sec__w-40 {
  width: 40%;
  padding-top: 30px;
}
.qr-cntct-sec ul {
  padding-left: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0;
  gap: 20px;
}
.qr-cntct-sec ul img {
  width: 24px;
  height: 24px;
}
.qr-cntct-sec ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.qr-cntct-sec ul li a {
  font-size: 18px;
  color: #3d3d3d;
  line-height: 26px;
  font-weight: 500;
  display: inline-block;
}
.qr-cntct-sec__iframe {
  height: 427px;
  width: 100%;
  border-radius: 20px;
  margin: 20px 0;
}
.qr-cntct-sec__iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.qr-cntct-sec .form-row {
  margin-bottom: 20px;
}
.qr-cntct-sec .quote-form {
  padding: 45px 40px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .qr-cntct-sec__iframe {
    height: 300px;
  }
  .qr-cntct-sec .quote-form {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .qr-cntct-sec__outer {
    flex-direction: column;
    gap: 20px;
  }
  .qr-cntct-sec__w-40, .qr-cntct-sec__w-50 {
    width: 100%;
  }
  .qr-cntct-sec .quote-form {
    padding: 30px 20px;
  }
}
.qr-faq-sec {
  padding: 85px 0 60px;
}
.qr-faq-sec__outer {
  margin: auto;
  width: 80%;
}
.qr-faq-sec__head {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  color: #222222;
  padding-bottom: 35px;
}
.qr-faq-sec__head span {
  color: #00B261;
}
.qr-faq-sec .qr-accord h3 {
  width: 80%;
}
.qr-faq-sec .qr-accord ul li .outer {
  align-items: flex-start;
}

@media (max-width: 767px) {
  .qr-faq-sec__outer {
    width: 100%;
  }
  .qr-faq-sec .qr-accord h3 {
    width: 90%;
  }
}
.qr-prvcy-sec {
  padding: 80px 0 60px;
}
.qr-prvcy-sec__outer {
  width: 80%;
  margin: auto;
}
.qr-prvcy-sec__head {
  color: #222222;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  padding: 20px 0;
  width: 90%;
}
.qr-prvcy-sec__cnt,
.qr-prvcy-sec a {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 15px;
}
.qr-prvcy-sec__cnt.bold,
.qr-prvcy-sec a.bold {
  font-weight: 600;
}
.qr-prvcy-sec__cnt span,
.qr-prvcy-sec a span {
  color: #00b261;
  font-weight: 600;
}
.qr-prvcy-sec__list {
  list-style: disc;
  padding-left: 30px;
}
.qr-prvcy-sec__list li {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 15px;
}
.qr-prvcy-sec__grey {
  background-color: #f3f5f7;
  padding: 30px;
  border-radius: 20px;
  margin: 10px 0;
}

@media (max-width: 767px) {
  .qr-prvcy-sec__outer {
    width: 100%;
  }
  .qr-prvcy-sec {
    padding: 40px 0;
  }
}
.pac-container{
	width:500px;
}
/* request a quote form */
#wpforms-348, #wpforms-375 {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}


/* General form container styling */
.quote-form .wpforms-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  margin: auto;
}

.quote-form.pad30 .wpforms-form {
  padding: 50px 30px;
}

/* Headings and paragraphs */
.quote-form h2,
.quote-form .wpforms-field-label,
.quote-form legend {
  color: #222;
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
}

.quote-form p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.quote-form p.cnt {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
  padding-top: 50px;
}

.quote-form p.cnt-ub {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
  padding-top: 30px;
}

.quote-form p a {
  color: #00b261;
  font-weight: 600;
  text-decoration: none;
}



/* Input and select fields */
.quote-form .wpforms-field input[type="text"],
.quote-form .wpforms-field input[type="email"],
.quote-form .wpforms-field input[type="tel"],
.quote-form .wpforms-field select {
  flex: 1 1 48%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}


.quote-form .wpforms-field input:focus,
.quote-form .wpforms-field select:focus {
  outline: none;
  border-color: #e2b84a;
}

/* Custom dropdown arrow for Choices.js */
.quote-form .choices__inner select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("https://qualityremovals.stage.planetmedia.dev/wp-content/uploads/2025/07/arrow-from.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

/* Datepicker styling for Flatpickr */
.quote-form .wpforms-field-date-time .wpforms-datepicker-wrap {
  position: relative;
  flex: 1 1 48%;
}

.quote-form .wpforms-field-date-time input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  padding-right: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.quote-form .wpforms-field-date-time input[type="text"]:focus {
  outline: none;
  border-color: #e2b84a;
}

.quote-form .wpforms-field-date-time .wpforms-datepicker-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("https://qualityremovals.stage.planetmedia.dev/wp-content/uploads/2025/07/calander-icons.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  pointer-events: none;
}

.quote-form .wpforms-field-date-time input[type="text"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}


/* Textarea styling */
.quote-form .wpforms-field-textarea {
  display: flex;
  flex-direction: column;
}

.quote-form .wpforms-field-textarea label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.quote-form .wpforms-field-textarea textarea {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  background: #fff;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .quote-form .wpforms-field-row,
  .quote-form .wpforms-layout-row {
    flex-wrap: wrap;
  }
}
/* Focus styles for WPForms inputs, selects, and textareas */
.quote-form .wpforms-container-full input[type="date"]:focus,
.quote-form .wpforms-container-full input[type="datetime"]:focus,
.quote-form .wpforms-container-full input[type="datetime-local"]:focus,
.quote-form .wpforms-container-full input[type="email"]:focus,
.quote-form .wpforms-container-full input[type="month"]:focus,
.quote-form .wpforms-container-full input[type="number"]:focus,
.quote-form .wpforms-container-full input[type="password"]:focus,
.quote-form .wpforms-container-full input[type="range"]:focus,
.quote-form .wpforms-container-full input[type="search"]:focus,
.quote-form .wpforms-container-full input[type="tel"]:focus,
.quote-form .wpforms-container-full input[type="text"]:focus,
.quote-form .wpforms-container-full input[type="time"]:focus,
.quote-form .wpforms-container-full input[type="url"]:focus,
.quote-form .wpforms-container-full input[type="week"]:focus,
.quote-form .wpforms-container-full select:focus,
.quote-form .wpforms-container-full textarea:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="date"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="datetime"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="datetime-local"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="email"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="month"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="number"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="password"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="range"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="search"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="tel"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="text"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="time"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="url"]:focus,
.wp-core-ui .quote-form .wpforms-container-full input[type="week"]:focus,
.wp-core-ui .quote-form .wpforms-container-full select:focus,
.wp-core-ui .quote-form .wpforms-container-full textarea:focus {
  border-width: 2px; /* Matches your original input border width */
  border-style: solid;
  border-color: #e2b84a; /* Matches your specified focus color */
  box-shadow: 0 0 0 1px #e2b84a, 0 1px 2px rgba(0, 0, 0, 0.15); /* Explicit box-shadow */
  outline: none;
}

*/dropdow css */

#wpforms-348 {
  --wpforms-field-border-size: 2px;
  --wpforms-field-border-style: solid;
  --wpforms-field-border-color: #e0e0e0;
  --wpforms-field-border-radius: 15px;
  --wpforms-field-background-color: #ffffff;
  --wpforms-field-size-input-height: auto;
}

#wpforms-348 .choices__inner:hover,
#wpforms-348 .choices__inner.is-focused {
  border-color: #e2b84a;
}

#wpforms-348 .choices__list--dropdown {
  border-radius: 15px;
}

#wpforms-348 .choices__item {
  font-size: 16px;
}



#wpforms-348 .form-row input:focus,
#wpforms-348 .form-row select:focus {
  outline: none;
  border-color: #e2b84a;
}



#wpforms-348 .choices__inner:hover,
#wpforms-348 .choices__inner.is-focused {
  border-color: #e2b84a;
}
#wpforms-348 {
  --wpforms-field-border-size: 2px;
  --wpforms-field-border-style: solid;
  --wpforms-field-border-color: #e0e0e0;
  --wpforms-field-border-radius: 15px;
  --wpforms-field-background-color: #ffffff;
  --wpforms-button-background-color: #e2b84a; 
}

#wpforms-348 .choices__list--dropdown {
  border-radius: 15px;
}

#wpforms-348 .choices__item {
  font-size: 16px;
}
div#wpforms-348-field_31-container {
    padding: 0 !important;
}
/*check box css */
#wpforms-375 #wpforms-375-field_21-container ul,
#wpforms-375 #wpforms-375-field_22-container ul,
#wpforms-375 #wpforms-375-field_27-container ul,
#wpforms-375 #wpforms-375-field_28-container ul,
#wpforms-348 #wpforms-348-field_33-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
padding:15px 0px 15px 0px;
}
#wpforms-348 #wpforms-348-field_33-container li,
#wpforms-375 #wpforms-375-field_21-container li,
#wpforms-375 #wpforms-375-field_22-container li,
#wpforms-375 #wpforms-375-field_27-container li,
#wpforms-375 #wpforms-375-field_28-container li {
  display: flex;
  align-items: center;
}
/* second Office Qutoe Form Code */
#wpforms-375 {
  --wpforms-field-border-size: 2px;
  --wpforms-field-border-style: solid;
  --wpforms-field-border-color: #e0e0e0;
  --wpforms-field-border-radius: 15px;
  --wpforms-field-background-color: #ffffff;
  --wpforms-button-background-color: #e2b84a; /* 👈 sets focus/open border color */
}
#wpforms-375 .choices__inner:hover,
#wpforms-375 .choices__inner.is-focused {
  border-color: #e2b84a;
}

#wpforms-375 .choices__list--dropdown {
  border-radius: 15px;
}

#wpforms-375 .choices__item {
  font-size: 16px;
}
#wpforms-348 input[type=checkbox]:checked:after,
#wpforms-375 input[type=checkbox]:checked:after {
  border-left: 4px solid #000000;
  border-bottom: 4px solid #000000;
}
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner {
    border: 2px solid #C6C6C6 !important;
    border-radius: 15px !important;
}
/* === ONLY FOR YOUR SELECT FIELD ID === */

#wpforms-193-field_23-container .choices.is-focused .choices__inner,
#wpforms-193-field_23-container .choices.is-open .choices__inner,
#wpforms-193-field_23-container .choices.is-open .choices__list--dropdown {
  border-width: 2px; /* or any direct value you want */
  border-style: solid;
  border-color: #0073e6; /* your special color */
  box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.2);
  outline: none;
}
.qr-404-sec {
  padding: 40px 0;
}
.qr-404-sec__outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qr-404-sec__img {
  width: 50%;
  height: auto;
}
.qr-404-sec__img img {
  width: 100%;
  height: 100%;
}
.qr-404-sec__head {
  color: #222222;
  font-size: 40px;
  line-height: 26px;
  text-align: center;
  padding: 20px 0 40px;
  font-weight: 600;
  font-family: "inter", sans-serif;
}

@media (max-width: 767px) {
  .qr-404-sec__img {
    width: 80%;
  }
  .qr-404-sec__head {
    font-size: 30px;
    line-height: 26px;
    padding-bottom: 20px;
  }
}

/* this home page form css 23-07-2025 */

/* 1. Remove default border from select lists */
#wpforms-193-field_23 ~ .choices__list--single,
#wpforms-193-field_23 ~ .choices__list--dropdown {
    border: none !important;
}

#wpforms-193-field_23:focus + .choices__list--single,
#wpforms-193-field_23:focus + .choices__list--dropdown {
    border: none !important;
}

/* 2. Add custom bottom border */
#wpforms-193-field_23-container .choices__inner {
    border:1px solid #C6C6C6 !important;
    box-shadow: none !important;
}

/* 3. Custom dropdown icon */
#wpforms-193-field_23-container .choices[data-type*='select-one']::after {
    content: ""; /* Remove default arrow */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('your-icon.svg'); /* Replace with your icon path */
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

/* 4. Rotate icon when open */
#wpforms-193-field_23-container .choices[data-type*='select-one'].is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* 5. Focus and outline styling */
/* #wpforms-193-field_23-container .choices__inner:focus,
#wpforms-193-field_23-container .choices__inner.is-focused,
#wpforms-193-field_23-container .choices__inner:focus-within {
    outline: none !important;
    border-bottom: 1px solid #ccc !important;
 
}
 */
/* 6. Override focus and open border styles */
/* #wpforms-193-field_23-container .choices.is-focused .choices__inner,
#wpforms-193-field_23-container .choices.is-open .choices__inner,
#wpforms-193-field_23-container .choices.is-open .choices__list--dropdown {
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #ccc !important;
    outline: none !important;
} */

/* 7. Dropdown background and text color */
#wpforms-193-field_23-container .choices .choices__list--dropdown {
  background-color:#ffffff !important;
 color:#222222;
}

/* 8. Highlighted item hover effect */
#wpforms-193-field_23-container .choices__item--selectable.is-highlighted {
    background-color: #E2B84A !important;
    color: white !important;
}

/* Number of Room */

:root {
  --dropdown-icon: url('your-icon.svg');
  --highlight-color: #E2B84A;
  --dropdown-bg: #E2B84A;
  --dropdown-text: #222;

}

/* Remove default borders always */
.choices__inner {
  border: none !important;
  box-shadow: none !important;
}

/* Bottom border default style */
.wpforms-field-select-style-modern .choices__inner {
  border:none !important;
}

/* Focus / Open state */
.wpforms-field-select-style-modern .choices.is-focused .choices__inner,
.wpforms-field-select-style-modern .choices.is-open .choices__inner,
.wpforms-field-select-style-modern .choices.is-open .choices__list--dropdown {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: var(--highlight-color) !important;
  box-shadow: 0 0 0 2px var(--dropdown-shadow) !important;
  outline: none !important;
}

/* Custom arrow icon */
.wpforms-field-select-style-modern .choices[data-type*='select-one']::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: var(--dropdown-icon);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Flip arrow when open */
.wpforms-field-select-style-modern .choices[data-type*='select-one'].is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Highlighted dropdown item */
.wpforms-field-select-style-modern .choices__item--selectable.is-highlighted {
  background-color: var(--highlight-color) !important;
  color: white !important;
}

/* Dropdown panel style */
.wpforms-field-select-style-modern .choices .choices__list--dropdown {
  background: var(--dropdown-bg) !important;
  color: var(--dropdown-text) !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="number"],
.wpforms-field input[type="url"] {
  border: none;
  border-bottom: 2px solid #E2B84A;
  outline: none;
  box-shadow: none;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;

}

.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field input[type="tel"]:focus,
.wpforms-field input[type="number"]:focus,
.wpforms-field input[type="url"]:focus {
  border-bottom: 2px solid #E2B84A;
  outline: none;
}
/* Base style for inputs */
#wpforms-193-field_5,
#wpforms-193-field_2,
#wpforms-193-field_2-last {
  border: none;
  border: 2px solid #e0e0e0;
  outline: none;
  box-shadow: none;
}

/* Focus state */
#wpforms-193-field_5:focus,
#wpforms-193-field_2:focus,
#wpforms-193-field_2-last:focus {
  border: 3px solid #E2B84A;
  outline: none;
}

/* .wpforms-container{
  visibility:hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.modal:target .wpforms-container{
  visibility:visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
} */

/* site Mpas*/

.qr-sitemap-sec .mj-sitemap {
  position: relative;
}
.qr-sitemap-sec .mj-sitemap,
.qr-sitemap-sec .mj-sitemap ul {
  list-style: none;
}
.qr-sitemap-sec .mj-sitemap li {
  position: relative;
  padding: 1em;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-bottom: 5px;
}
.qr-sitemap-sec .mj-sitemap li a {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  transition: all 0.3s ease-in-out;
}
.qr-sitemap-sec .mj-sitemap li a:hover {
  color: #000;
  text-decoration: underline;
}
.qr-sitemap-sec .mj-sitemap li:after, .qr-sitemap-sec .mj-sitemap li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px;
  z-index: 0;
}
.qr-sitemap-sec .mj-sitemap li:before {
  position: absolute;
  top: 0;
  left: -1.1em;
  height: 150%;
  border-top-style: none;
  border-left-style: solid;
}
.qr-sitemap-sec .mj-sitemap li:after {
  top: 1.5em;
  left: -1.1em;
  width: 1.5em;
  border-top-style: solid;
}
.qr-sitemap-sec .mj-sitemap li:last-child:before {
  border-left: none;
}

.ic-header .dropdown-new .dropdown-menu:last-child {
   display: none;
 }


@media (max-width: 767px) {
  .qr-sitemap-sec .mj-sitemap, .qr-sitemap-sec .mj-sitemap ul {
    padding-left: 20px;
  }

 .ic-header .dropdown-new .dropdown-menu:last-child {
/*    display: block; */
   position: static;
   background: transparent;
 }
	
	#menu-header > li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-ancestor.current-menu-parent.current_page_parent.current_page_ancestor.menu-item-has-children.dropdown.active.menu-item-1231.nav-item.dropdown-new > ul > li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.dropdown.menu-item-1235.nav-item.dropdown-new > ul {
    display: block;
  }

  .ic-header .navbar-nav .dropdown-menu {
    padding-left: 0.5rem;
  }

  .ic-header .navbar-expand-lg .navbar-nav {
    padding: 0;
  }

  .ic-header .dropdown-item {
    width: 80%;
  }
}
.qr-review {
  padding: 50px 0;
  width: 95%;
  margin: auto;
}
.qr-review__outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  background-color: #f3f5f7;
  margin-bottom: 20px;
  border-radius: 10px;
}
.qr-review__outer .sec1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.qr-review__outer .sec1 .google {
  width: 100px;
  height: auto;
  display: inline-block;
}
.qr-review__outer .sec1 .inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
.qr-review__outer .sec1 .head {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: #000000;
}
.qr-review__outer .sec1__star {
  width: 140px;
  height: auto;
}
.qr-review__outer .sec1__star img {
  width: 100%;
  height: 100%;
}
.qr-review__greybox-slider {
  margin: 0 -15px;
}
.qr-review__greybox-slider-abut {
	  margin: 0 -15px;
}

.qr-review__greybox-slider-abut .qr-revew-card {
	 margin: 0 15px;
}

.qr-review__greybox-slider .qr-revew-card {
  margin: 0 15px;
}
.qr-review .slick-prev:before,
.qr-review .slick-next:before {
  background-color: #6c6c6c;
  padding: 5px;
  border-radius: 50%;
}
.qr-review .qr-revew-card__cnt-sec p.cnt {
  padding-top: 5px;
  max-height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
}
.qr-review .read-more-toggle {
  display: inline-block;
  padding: 5px 0 0;
}


.qr-revew-card {
  background-color: #f3f5f7;
  padding: 30px 20px;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.qr-revew-card__outer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qr-revew-card__logo {
  width: 40px;
  height: 40px;
}
.qr-revew-card__logo img {
  width: 100%;
  height: 100%;
}
.qr-revew-card__h-out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.qr-revew-card__h-out h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #000000;
}
.qr-revew-card__h-out p.time {
  display: inline-block;
  color: #878787;
  font-size: 14px;
  line-height: 20px;
}
.qr-revew-card__cnt-sec {
  padding: 15px 10px 0 40px;
}
.qr-revew-card__cnt-sec .star {
  width: 90px;
  height: auto;
}
.qr-revew-card__cnt-sec p.cnt {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
@media (max-width: 767px) {
  .qr-review .qr-review__outer {
    flex-direction: column;
  }
  .qr-review .qr-review__greybox-slider .qr-revew-card {
    margin: 0 30px;
  }
  .qr-review .slick-prev {
    left: -10px;
  }
  .qr-review .slick-next {
    right: 0px;
  }
	.quote-form .wpforms-form{
	padding:10px;	
	}


}
@media (max-width: 1023px) {
   .ic-header .navbar-nav .dropdown-toggle::after {
  display: none;
}

   .ic-header  .dropdown-menu  .dropdown-menu {
     display: block;
     position: static;
     background: transparent;
     padding-bottom: 20px;
   }

.ic-header .menu-item-has-children {
  position: relative; /* Anchor point for ::after */
}

.ic-header .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  width: 16px;
  height: 16px;
  z-index: 2; /* Ensure it sits above dropdown */
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.87193 9.84667L5.39526 6.87467C5.33038 6.79677 5.28905 6.702 5.2761 6.60146C5.26315 6.50091 5.27912 6.39876 5.32215 6.30697C5.36518 6.21518 5.43348 6.13755 5.51904 6.08318C5.6046 6.02882 5.70389 5.99996 5.80526 6H10.1946C10.2959 6.00009 10.3951 6.02904 10.4805 6.08345C10.566 6.13787 10.6342 6.2155 10.6771 6.30727C10.7201 6.39904 10.736 6.50114 10.723 6.60162C10.7101 6.70211 10.6687 6.79682 10.6039 6.87467L8.12793 9.84667C8.11229 9.86542 8.09272 9.88051 8.0706 9.89087C8.04848 9.90122 8.02435 9.90659 7.99993 9.90659C7.97551 9.90659 7.95138 9.90122 7.92926 9.89087C7.90714 9.88051 7.88757 9.86542 7.87193 9.84667Z' fill='black'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none; /* So it's not clickable */
}
  }
.cntct-wrap {
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(90deg, #01ccfe 0%, #01fe8c 100%);
  position: fixed;
  right: 5%;
  bottom: 8%;
  z-index: 999;
}

.cntct-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: none;
  background-color: #30c04f;
}
.cntct-btn svg {
  width: 33px;
  height: 33px;
}
.cntct-btn:hover {
  background-color: #2bac47;
}

#wpforms-193-field_7-container,
#wpforms-193-field_8-container {
    position: relative;
}

#wpforms-193-field_7-container::after,
#wpforms-193-field_8-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    background-image: url('https://qualityremovals.stage.planetmedia.dev/wp-content/uploads/2025/07/locations.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}
.qr-blog-card__inner h3 a {
  color: #000000;
}

.modal__content button[type="submit"], .qr-cntct-sec button[type = submit] {
  background-color: #00b261 !important;
    color: #fff;
    border: none;
    padding: 12px !important;
    width: 100% !important;
    border-radius: 40px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content !important;
    padding: 12px 24px !important;
}
.ic-header .current-menu-item {
  position: relative;
}

.ic-header .current-menu-item::after {
position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2b84a;
}

.qr-footer__pm img {
  width: 180px;
  height: 30px
}
.qr-quote-tab .office-em, .qr-quote-tab .office-em p {
  padding: 0;
  height: 0;
}
.qr-modal-outer .wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
  padding: 4px 0 !important;
}

.quote-form {
  padding: 0;
  background: transparent;
}

/* .quote-form .wpforms-form {
  padding: 10px;
} */
@media (max-width: 1023px) {
    .qr_outer_modal .modal {
      align-items: flex-start;
    }
  }
.pagination-wrapper .page {
  margin: 6px;
}
 div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-classic select {
    padding: 0px 10px 0px 10px;
} 

.flatpickr-day.booked {
  background-color: #f44336 !important; /* Red */
  color: white !important;
  cursor: not-allowed;
}

.flatpickr-day.available {
  background-color: #4CAF50 !important; /* Green */
  color: white !important;
}
.moving-from-step {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.moving-from-step h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.moving-from-step .highlight {
  color: #00b86b;
}

.venue-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.venue-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 20px;
  flex: 1 1 160px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.venue-card:hover,
.venue-card.active {
  border-color: #00b86b;
  background-color: #f0fff5;
}

.venue-card img {
  height: 40px;
  margin-bottom: 10px;
}

.venue-card span {
  display: block;
  font-weight: 500;
  color: #222;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.button-row .btn-back,
.button-row .btn-next {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.btn-back {
  background: #e0e0e0;
  color: #333;
}

.btn-next {
  color: #00b86b;
}
.step {
  display: none;
}

.step.active {
  display: block;
}
.venue-card {
  cursor: pointer;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  transition: border-color 0.3s;
}
.venue-card:hover {
  border-color: #ccc;
}
.venue-card.selected {
  border-color: #0073aa;
  background-color: #f0f8ff;
}
.step {
  display: none;
}
.step.active {
  display: block;
}
 .quote-wrapper,
.container {
  min-height: 100vh;
  padding: 40px 20px;
   display: flex;
  align-items: center;
  justify-content: center; 
} 

.quote-steps .step {
/*   background: #f5f5f5;
  border-radius: 14px;
  max-width: 800px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); */
 max-width: 1312px;
  padding: 64px 80px;
  margin: 0 auto;
  background-color: #EEEEEE;
  width:100%;
  border-radius: 10px;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
}

.quote-steps .step.active {
  display: flex;
}

.step h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 40px;
}

.step h2 .highlight {
  color: #0f9d58;
}

.venue-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.venue-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 25px 20px;
  width: 180px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.venue-card:hover,
.venue-card.active {
  border-color: #0f9d58;
  background-color: #e8f5e9;
}

.venue-card img {
  height: auto;
  margin-bottom: 15px;
}

.venue-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.button-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button-row button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-row .btn-next {
  color: #0f9d58;
}

.button-row .btn-next:hover {
  color: #0f9d58;
}

.button-row .btn-prev {
  background-color: #fff;
  color: #333;
  border-color: #ccc;
}

.button-row .btn-prev:hover {
  background-color: #f0f0f0;
}
.step {
  margin-top: 0 !important;
  padding-top: 20px; /* Adjust as needed */
}
.venue-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* spacing between cards */
  max-width: 100%;
}

.venue-card {
  flex: 0 0 calc(20% - 20px); /* 5 per row, subtract gap */
  box-sizing: border-box;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  background: white;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 1024px) {
  .venue-card {
    flex: 0 0 45%; /* 2 per row on tablets */
  }
}

@media screen and (max-width: 600px) {
  .venue-card {
    flex: 0 0 100%; /* full width on mobile */
  }
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"] {
    width: 32%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    font-size: 16px;
    color: #737373;
    box-sizing: border-box;
    background-color: #fff;
}

.form-group input::placeholder {
  color: #737373;
  opacity: 1; /* Make placeholder fully visible */
}

h2 .highlight {
  position: relative;
  display: inline-block;
}

h2 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #00A651; /* Green underline */
  border-radius: 2px;
}

/* Your existing CSS pasted here as-is — no edits needed */
.date-section {
  background-color: #EEEEEE;
  padding: 60px 80px;
  max-width: 1312px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.date-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.date-section .highlight {
  color: #00A651;
  position: relative;
  display: inline-block;
}

.date-section .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: #00A651;
  border-radius: 2px;
}

.date-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.date-label {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-calendar-left {
  width: 20px;
  height: 20px;
  background-image: url('https://qualityremovals.stage.planetmedia.dev/wp-content/uploads/2025/08/Group.svg'); /* Replace this */
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.date-input {
  position: relative;
  display: inline-block;
}

.date-input input {
  padding: 10px 36px 10px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
}

.icon-calendar-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('https://qualityremovals.stage.planetmedia.dev/wp-content/uploads/2025/08/calnder-icond.svg'); /* Replace this */
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.form-container {
 display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #f0f0f0;
	flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-controls input:not(:last-of-type) {
  margin-right: 20px;
}
.step {
  display: none;
}
.step.active {
  display: block;
}

@media (max-width: 767px) {
.quote-steps .step {
    padding: 30px 30px;
	}
.step h2 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 20px;
}
.date-section .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 100%;
    background-color: #00A651;
    border-radius: 0px;
}
.step h2 .highlight {
    color: #0f9d58;
    font-size: 20px;
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    font-size: 16px;
    color: #737373;
    /* box-sizing: border-box; */
    background-color: #fff;
}
}

.qr-hero-cuntr__tile {
  text-align: center;
  padding: 10px;
}

.rating-stars {
  font-size: 20px;
  line-height: 1;
  margin: 5px 0;
}

.star {
  display: inline-block;
  font-size: 20px;
}

.star.full {
  color: #FFD700; /* Gold */
}

.star.half {
  color: #FFD700;
  position: relative;
}

.star.half::after {
  content: '★';
  color: #e0e0e0; /* Light gray */
  position: absolute;
  left: 50%;
  width: 50%;
  overflow: hidden;
}

.star.empty {
  color: #e0e0e0; /* Gray */
}
body .ti-widget.ti-goog{
padding:0 !important;
}
.qr-blog-inner__lists{
    list-style-type: disc ;
    
}
ul.qr-blog-inner__lists {
    list-style-type: disc;
    line-height: 27px;
	padding-left: 20px;
}
.qr-innr-bnr__outer h1 {
    font-size: 52px;
    line-height: 65px;
}
button#slick-slide-control00 {
    display: none;
}
.anythingsec
{
	flex:0 !important;
}

    .container.thankyou-con {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
      gap: 60px;
    }

    .thankyouhead {
      font-size: 56px;
      font-weight: 800;
      line-height: 1;
      margin: 0;
    }

    .message-box {
      border: 4px solid #00c7ff;
      border-radius: 32px;
      padding: 50px 40px;
      max-width: 500px;
      box-sizing: border-box;
    }

    .message-box h2 {
      font-size: 48px;
      font-weight: 800;
      margin-top: 0;
      margin-bottom: 40px;
    }

    .btn.thankyoubtn {
      display: inline-block;
      background-color: #00c7ff;
      color: #ffffff;
      font-size: 24px;
      font-weight: bold;
      padding: 18px 32px;
      border-radius: 24px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn.thankyoubtn:hover {
      background-color: #00a5d6;
    }

    .thank-footer-text {
      width: 100%;
      text-align: center;
      font-size: 26px;
      margin-top: 80px;
    }

    .thankhighlight {
      color: #00c7ff;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .container.thankyou-con {
        flex-direction: column;
        text-align: center;
      }

      .thankyouhead {
        font-size: 42px;
      }

      .message-box {
        width: 100%;
        padding: 40px 20px;
      }

      .message-box h2 {
        font-size: 36px;
      }

      .btn.thankyoubtn {
        font-size: 20px;
        padding: 16px 28px;
      }

      .thank-footer-text {
        font-size: 22px;
        margin-top: 60px;
      }
	.form-container {
 display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #f0f0f0;
	flex-wrap: wrap;
}
		.form-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* spacing between fields */
  max-width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-field label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-field input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%; /* ensures full width */
  box-sizing: border-box;
}

.button-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-submit, .btn-prev {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .form-container {
    gap: 12px;
  }

  .form-field input {
    font-size: 14px;
  }

  .btn-submit, .btn-prev {
    width: 100%; /* full width buttons on mobile */
  }
}

 }

.qr-about-sec__b-list {
  list-style: disc;
  font-weight: 600;
  padding-left: 20px;
}
.qr-about-sec__b-list li {
  color: #000000;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.qr-about-sec__b-list li span {
  font-weight: 400;
}

.qr-about-sec__img {
  width: 100%;
  height: auto;
  margin: 30px 0;
}
