@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
}

:root {
  --white-color: white;
  --black-color: black;
  --lora-font: "Lora", serif;
  --roboto-font: "Roboto", sans-serif;
  --secondary-color: #e2223c;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex: 2;
}

.col-3 {
  flex: 3;
}

.col-4 {
  flex: 4;
}

.col-5 {
  flex: 5;
}

.center {
  text-align: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1620px;
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}

.align-start {
  align-items: start;
}

/* code for company section of home page */
.company {
  background-color: #fae74c;
  padding: 50px 20px;
}

.company .container {
  margin-bottom: 0px !important;
}

.company .row{
    flex-wrap: wrap;
    gap: 20px;
}

.company .row .col-1{
    flex-basis: 200px;
    flex-grow: 1;
}
.company img {
  width: 30px;
  height: 32px;
}

.company h4 {
  font-size: 40px;
  color: #0a4174;
  font-weight: 400;
  font-family: var(--roboto-font);
}

.company .col-1 {
  gap: 10px;
}

/* code for carpets-section for home page */
.carpets-section {
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 0px 20px;
}

.carpets-section h1 {
  max-width: 964px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 86px;
}

.carpets-section img {
  margin-bottom: 20px;
  width: 55px;
  height: 53px;
}

.carpets-section h2 {
  font-size: 32px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  width: 306px;
  margin-bottom: 10px;
}

.carpets-section .row {
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.carpets-section .row .box {
  flex-basis: 200px;
  flex-grow: 1;
  width: 100%;
}

.carpets-section .row .box p {
  opacity: 0.8;
  max-width: 389px;
  width: 100%;
  font-size: 19px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

/* code for schdule-section of home page */
.schdule-section {
  background: url(../images/schdule-bg.png) no-repeat center center/cover;
  padding: 86px 20px;
  margin-bottom: 86px;
}

.schdule-section .container {
  margin-bottom: 0px;
}
.schdule-section .col-12{
  padding: 40px;
    background: rgba(250, 250, 250, 0.5); /* semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */
  border: 1px solid var(--white-color);
}

.schdule-section form h1 {
  max-width: 421px;
  margin: auto;
  font-size: 35px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 35px;
}

.schdule-section form {
  max-width: 1475px;
  width: 100%;
  margin: auto;
}

.schdule-section form .data-gather {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.schdule-section form .data-gather input {
  padding: 26px 30px;
  opacity: 0.698;
  height: 24px;
  font-size: 19px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  flex: 1;
  flex-basis: 400px;
  flex-grow: 1;
  outline: none;
  background-color: transparent;
  border: 1px solid #a8a8a8ee;
}

.schdule-section form .btn-input {
  width: 207px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}

.schdule-section form .btn-input:hover,
.commitment .container .btn a:hover {
  transform: scale(0.92);
}

.schdule-section form .btn-left {
  display: flex;
  align-items: end;
  justify-content: end;
}
/* code for core-value-section page */
.core-value-section{
    padding: 30px 20px;
}
.core-value-section .row{
    gap: 20px;
    flex-wrap: wrap;
}
.core-value-section .row .col-1{
    flex-basis: 350px;
    flex-grow: 1;
}
.core-value-section h1 {
  margin-bottom: 50px;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
}
.core-value-section .box-flex {
  flex-wrap: wrap;
  gap: 20px;
}
.core-value-section .box-flex .box {
  flex-basis: 250px;
  flex-grow: 1;
  margin-bottom: 30px;
}
.core-value-section .box-flex .box h3 {
  font-size: 32px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 16px;
}
.core-value-section .box-flex .box p {
  opacity: 0.8;
  max-width: 280px;
  width: 100%;
  font-size: 19px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.core-value-section img.core-main-image {
  width: 90%;
  object-fit: cover;
}

/* code for cleaning-process of home page */
.cleaning-process {
  padding: 86px 20px 0px 20px;
  background-color: #f9f9f9;
  margin-bottom: 50px;
}
.cleaning-process .col-12 h1 {
  max-width: 721px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  margin-bottom: 36px;
  text-align: center;
}
.cleaning-process .col-12 p.main-para {
  opacity: 0.8;
  max-width: 1045px;
  width: 100%;
  margin: auto;
  font-size: 20px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  margin-bottom: 30px;
}
.cleaning-process .yellow-bg-content {
  max-width: 1131px;
  width: 90%;
  margin: auto;
  min-height: 246px;
  background-color: #fae74c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -86px;
}
.cleaning-process .yellow-bg-content h2 {
  font-size: 32px;
  color: #0a4174;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}
.cleaning-process .yellow-bg-content p {
  max-width: 578px;
  width: 100%;
  font-size: 19px;
  line-height: 24px;
  color: #0a4174;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}

.cleaning-process .play-bg-photo {
  position: relative;
}
.cleaning-process .play-bg-photo .cleaning-carpet-bg {
    min-height: 432px;
  object-fit: cover;
  width: 100%;
  object-fit: cover;
}
.cleaning-process .yellow-bg-content .play-button {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0px;
}

/* code for how-we-different for home page */
.how-we-different {
  background-color: #f9f9f9;
  position: relative;
  padding: 86px 20px 0px 20px;
}
.how-we-different::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 715px;
  background-color: #0a4174;
  z-index: 1;
}
.how-we-different .container {
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}
.how-we-different h1 {
  font-size: 76px;
  color: #fae74c;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 36px;
}
.how-we-different p.main-para {
  max-width: 1069px;
  width: 100%;
  margin: auto;
  font-size: 19px;
  line-height: 24px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}
.how-we-different .icon {
  width: 117px;
  height: 117px;
  line-height: 117px;
  border-radius: 50%;
  background-color: #fae74c;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 0px;
}
.how-we-different .box-flex {
  margin-top: 120px;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.how-we-different .box-flex .box {
  max-width: 442px;
  width: 100%;
  padding: 70px 40px 30px 40px;
  min-height: 525px;
  filter: drop-shadow(0px 14px 9px rgba(0, 0, 0, 0.09));
  position: relative;
  background-color: var(--white-color);
  border-radius: 4px;
  flex-basis: 290px;
  flex-grow: 1;
}
.how-we-different .box-flex .box h2 {
  font-size: 32px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  margin-bottom: 12px;
}
.how-we-different .box-flex .box h4 {
  max-width: 280px;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  font-size: 23px;
  text-transform: uppercase;
  color: #0a4174;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}
.how-we-different .box-flex .box p {
  opacity: 0.8;
  max-width: 335px;
  width: 100%;
  font-size: 19px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 20px;
}
.how-we-different .box-flex .box p span {
  color: #0a4174;
}

/* code for our-info section for home page */
.our-info {
  padding: 44px 20px 12px 20px;
  background-color: #f9f9f9;
}
.our-info .row{
    flex-wrap: wrap;
    gap: 20px;
}
.our-info .row .col-1{
    flex-basis: 450px;
    flex-grow: 1;
}
@media screen and (max-width: 960px) {
.our-info .row{
    flex-direction: column-reverse;
    align-items: start;
}
.core-value-section img.core-main-image{
    width: 100%;
}
    
}
.our-info .row h1 {
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  margin-bottom: 40px;
}
.our-info .get-in-touch{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.our-info .row p.main-para {
  opacity: 0.8;
  max-width: 579px;
  width: 100%;
  font-size: 19px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 30px;
}
.our-info .row .box {
  gap: 40px;
  margin-bottom: 30px;
}
.our-info .row .box p {
  opacity: 0.8;
  max-width: 460px;
  width: 100%;
  font-size: 24px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.our-info .row .box .icon {
  width: 34px;
  text-align: center;
}

/* code for family-carpet section of home page */
.family-carpet {
  padding: 44px 20px;
  position: relative;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.15999999999999998) 0%, rgba(0,0,0,0.49999999999999994) 100%) !important;
}
.family-carpet::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
  background: url(../images/family-bottom.png) no-repeat center center/cover;
  z-index: -1;
}
.family-carpet h1 {
  max-width: 749px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: var(--white-color);
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
}
.family-carpet p {
  opacity: 0.8;
  max-width: 734px;
  width: 100%;
  margin: auto;
  font-size: 19px;
  line-height: 24px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
}
.family-carpet .btn a {
  width: 257px;
  height: 51px;
  background-color: #e2223c;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  position: relative;
  z-index: 9;
  cursor: pointer !important;
}
.family-carpet .btn a:hover{
    transform: scale(.95);
}

/* code for footer  */
footer {
  background-color: #e2223c;
  padding: 86px 20px 1px 20px;
}
footer .row {
  gap: 20px;
  flex-wrap: wrap;
}
footer .row a {
  display: block;
}
footer .row .col-2,
footer .row .col-1{
    flex-basis: 250px;
    flex-grow: 1;
}
footer .row .col-2{
    flex-grow: 10;
}
footer .row img.logo {
  margin-bottom: 36px;
}
footer .row p.main-para {
  max-width: 509px;
  width: 100%;
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
}
footer .row a.menu {
  width: 195px;
  height: 24px;
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 10px;
}
footer .row a.menu:hover {
  color: #0a4174;
}
footer .row h5 {
  font-size: 27px;
  color: var(--white-color);
  font-family: var(--lora-font);
  margin-bottom: 30px;
}
footer .row .footer-box {
  gap: 12px;
  margin-bottom: 14px;
}
footer .row .footer-box p {
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
}
footer .row p.Copyright {
  max-width: 607px;
  width: 100%;
  margin: auto;
  margin-top: 86px;
  height: 24px;
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}

/* code for header */
header {
  padding: 10px 0px;
}
header .dropdown {
  position: relative;
  margin-right: 12px;
}

header .dropdown-btn {
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

header .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* dropdown menu */
header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a4174;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

header .dropdown-menu li a {
  padding: 16px 14px;
  cursor: pointer;
  color: #fff;
  display: block;
  width: 180px;
  font-size: 16px;
  font-family: var(--roboto-font);
}

header .dropdown-menu li:hover a {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* active state */
header .dropdown.active .dropdown-menu {
  display: block;
}

header .dropdown.active .arrow {
  transform: rotate(180deg);
}
header ul {
  gap: 20px;
}
header li a,
header li .dropdown-btn {
  width: 87px;
  font-size: 19px !important;
  color: #000000;
  font-weight: 400;
  font-family: var(--roboto-font);
}
header li a:hover,
header li .dropdown-btn:hover {
  color: var(--secondary-color);
}
header li.btn-red a {
  width: 165px;
  height: 51px;
  background-color: #e2223c;
  display: flex;
  align-content: center !important;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  margin-bottom: 0px !important;
}
header li.btn-red a:hover {
  transform: scale(0.92);
}

/* The Overlay (background) */
header .overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 999999999999; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(226, 34, 60); /* Black fallback color */
  background-color: rgba(226, 34, 60, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
header .overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
header .overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 24px;
  color: var(--white-color);
  margin-bottom: 6px;
  font-family: var(--roboto-font);
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
header .overlay a:hover,
header .overlay a:focus {
  color: #0a4174;
}

/* Position the close button (top right corner) */
header .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  header .overlay a {
    font-size: 20px;
  }
  header .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
header i.fa-bars {
  color: #0a4174 !important;
  font-size: 20px;
  cursor: pointer;
}
header i.fa-bars:hover {
  transform: scale(1.09);
}
.main-header-swiper{
    background: url(../images/hero-bg.png) no-repeat center center/cover;
    object-fit: cover;
    overflow: hidden;
    padding: 0px 20px;
}
.pricing-transparent .main-header-swiper{
    background: url(../images/transparent-pricing-bg-hero.png) no-repeat center center/cover;
    object-fit: cover;
    overflow: hidden;
    /* min-height: 80vh; */
    padding: 0px 20px;
}
.pricing-transparent .main-header-swiper .hero-section .col-12 h1{
font-size: 76px;
color: #3b3b3b;
font-family: var(--lora-font);
text-align: center;
padding: 40px 0px;
}
.main-header-swiper .hero-section{
    padding: 44px 0px 68px 0px;
}
.main-header-swiper .hero-section .main-heading {
  max-width: 1296px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 40px;
}
.main-header-swiper .hero-section p.main-para {
  opacity: 0.8;
  font-size: 34px;
  line-height: 20px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
  line-height: 150%;
  margin-bottom: 90px;
}

.main-header-swiper .hero-section .swiper {
  width: 100%;
  height: 100%;
}

.main-header-swiper .hero-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.main-header-swiper .hero-section .text {
  font-size: 16px;
  line-height: 1.6;
}

.main-header-swiper .hero-section .more {
  display: none;
}

.main-header-swiper .hero-section .read-btn {
  background: none;
  border: none;
  color: #2CD9A3;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}
.main-header-swiper .hero-section .swiper-slide{
  padding: 30px;
}
.main-header-swiper .hero-section .swiper-slide::after{
  content: "";
   background: rgba(250, 250, 250, 0.7); /* semi-transparent */
   border: 2px solid var(--white-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */ 
  z-index: -1;
  position: absolute;
  top: 0px;
left: 0px;
right: 0px;
bottom: 0px;

}
.main-header-swiper .hero-section .swiper-slide .top-star-google-image .icons i{
 font-size: 22px;
color: #e2223c;
}
.main-header-swiper .hero-section .swiper-slide .top-star-google-image{
    margin-bottom: 28px;
}
.main-header-swiper .hero-section .swiper-slide .para-more p{
font-size: 19px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
margin-bottom: 30px;
}
.main-header-swiper .hero-section .swiper-slide .profile-content{
    gap: 20px;
}
.main-header-swiper .hero-section .swiper-slide .profile-content h2{
font-size: 19px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
}
.main-header-swiper .hero-section .swiper-slide .profile-content h6{
font-size: 16px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
}

.main-header-swiper .hero-section .swiper-button-next,
.main-header-swiper .hero-section .swiper-button-prev{
    color: var(--secondary-color) !important;
    position: absolute;
    font-size: 20px !important;
    height: 26px !important;
    top: 36px;
}

.main-header-swiper .hero-section .swiper-section{
    position: relative;
}

.main-header-swiper .hero-section .swiper-section .icon{
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
}
.main-header-swiper .hero-section .swiper-section .right-arrow{
    right: -100px;
    top: 50%;
    transform: translate(-50%, -50%);
}
.main-header-swiper .hero-section .swiper-section .left-arrow{
    left: -38px;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1766px) {
   .main-header-swiper .hero-section .swiper-section .right-arrow{
    right: -40px;
}
.main-header-swiper .hero-section .swiper-section .left-arrow{
    left: 0px;
} 
}



/* code for transparent pricing page  */
.commitment{
    padding: 86px 20px 56px 20px;
    background-color: #0a4174;
}
.commitment .container h1{
    max-width: 1037px;
    width: 100%;
    margin: auto;    
    margin-bottom: 20px;
min-height: 103px;
font-size: 76px;
color: #fae74c;
font-family: var(--lora-font);
text-align: center;
}
.commitment .container p{
    max-width: 1069px;
    width: 100%;
    margin: auto;
font-size: 19px;
line-height: 24px;
color: #ffffff;
font-weight: 400;
font-family: var(--roboto-font);
text-align: center;
line-height: 200%;
margin-bottom: 30px;
}
.commitment .container p span{
color: #fae74c;
}
.commitment .container .btn a{
    width: 332px;
    margin: auto;
height: 51px;
background-color: #e2223c;
display: flex;
align-items: center;
justify-content: center;

font-size: 19px;
color: var(--white-color);
font-weight: 400;
font-family: var(--roboto-font);
text-align: center;
}

.honest-section{
    padding: 86px 20px;
    background: url(../images/honest-price-bg.png) no-repeat center center/cover;
}
.honest-section p.main-para{
    opacity: 0.800;
max-width: 843px;
width: 100%;
margin: auto;
font-size: 20px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
text-align: center;
margin-bottom: 40px;
}
.honest-section h1{
    max-width: 964px;
    width: 100%;
    margin: auto;
font-size: 76px;
color: #3b3b3b;
font-family: var(--lora-font);
text-align: center;
margin-bottom: 28px;
}
.honest-section h2{
    opacity: 0.800;
max-width: 1159px;
width: 100%;
margin: auto;
font-size: 32px;
line-height: 42px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
text-align: center;
margin-top: 50px;
}

.honest-section .price-box{
    max-width: 980px;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.honest-section .price-box .box{
    gap: 20px;
    flex-basis: 250px;
    flex-grow: 1;
}
.honest-section .price-box .box h3{
font-size: 35px;
color: #0a4174;
font-weight: 400;
font-family: var(--roboto-font);
margin-bottom: 18px;
}
.honest-section .price-box .box p{
    opacity: 0.800;
max-width: 425px;
width: 100%;
font-size: 19px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
margin-bottom: 12px;
}
.honest-section .price-box .box p span{
    color: var(--secondary-color);
}
.honest-section .price-box .box img{
    width: 100%;
}
.carpet-transparency .row{
    gap: 60px;
    flex-wrap: wrap;
}
.carpet-transparency .row .col-1{
    flex-basis: 450px;
    flex-grow: 1;
}
.carpet-transparency .carpet{
    width: 100%;
    margin-bottom: 20px;
}
.carpet-transparency{
    padding: 86px 20px;
}
.carpet-transparency h1{
    margin-bottom: 30px;
    max-width: 774px;
    width: 100%;
font-size: 76px;
color: #3b3b3b;
font-family: var(--lora-font);
}
.carpet-transparency p.main-para{
    opacity: 0.800;
max-width: 738px;
width: 100%;
font-size: 20px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
margin-bottom: 30px;
}
.carpet-transparency .box{
    margin-bottom: 40px;
}
.carpet-transparency .box h2{
    margin-top: 0px;
    margin-bottom: 10px;
font-size: 32px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
}
.carpet-transparency .box p{
    margin-bottom: 30px;
    opacity: 0.800;
max-width: 738px;
width: 100%;
font-size: 19px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
}
.carpet-transparency .box a{
    opacity: 0.800;
font-size: 19px;
line-height: 24px;
color: #3b3b3b;
font-weight: 400;
font-family: var(--roboto-font);
text-decoration: underline;
margin-bottom: 30px;
}

























@media screen and (max-width: 1520.99px){
.carpet-transparency h1{
    font-size: 61px !important;
}

}

@media screen and (max-width: 1220.99px){
header li a, header li .dropdown-btn{
    font-size: 13px !important;
}
header li.btn-red a{
    width: 120px;
    height: 42px;
    font-size: 14px !important;
}
}
@media screen and (min-width: 990.99px) {
    .pc{
        display: none !important;
    }

}
@media screen and (max-width: 990.98px) {
    .mobile{
        display: none !important;
    }
        .main-header-swiper .hero-section .main-heading,.how-we-different h1,.family-carpet h1,
.our-info .row h1,.cleaning-process .col-12 h1,.core-value-section h1,.carpets-section h1,.carpet-transparency h1,.honest-section h1,.commitment .container h1{
        font-size: 45px;
        margin-bottom: 20px;
    }
    .pricing-transparent .main-header-swiper .hero-section .col-12 h1{
        font-size: 40px;
    }
    .main-header-swiper .hero-section p.main-para,.honest-section h2{
        font-size: 24px;
    }
    .how-we-different .box-flex .box{
        padding: 70px 20px 20px 20px;
    }
    .how-we-different .box-flex .box p{
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 660.98px){
    .right-arrow,.left-arrow{
        display: none !important;
    }
}

/* ======================================
   SHARED INNER PAGE STYLES
   ====================================== */

/* Inner page hero - reuse pricing-transparent pattern */
.cleaning-process-page .main-header-swiper,
.faq-page .main-header-swiper,
.careers-page .main-header-swiper,
.blog-page .main-header-swiper,
.discounts-page .main-header-swiper,
.schedule-page .main-header-swiper {
  background: url(../images/transparent-pricing-bg-hero.png) no-repeat center center/cover;
  object-fit: cover;
  overflow: hidden;
  padding: 0px 20px;
}

.cleaning-process-page .main-header-swiper .hero-section .col-12 h1,
.faq-page .main-header-swiper .hero-section .col-12 h1,
.careers-page .main-header-swiper .hero-section .col-12 h1,
.blog-page .main-header-swiper .hero-section .col-12 h1,
.discounts-page .main-header-swiper .hero-section .col-12 h1,
.schedule-page .main-header-swiper .hero-section .col-12 h1 {
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  padding: 40px 0px;
}

/* ======================================
   CLEANING PROCESS PAGE
   ====================================== */
.process-intro {
  padding: 86px 20px;
}
.process-intro .row {
  flex-wrap: wrap;
  gap: 60px;
}
.process-intro .row .col-1 {
  flex-basis: 450px;
  flex-grow: 1;
}
.process-intro h1 {
  margin-bottom: 30px;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
}
.process-intro p.main-para {
  opacity: 0.8;
  max-width: 738px;
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.process-intro img {
  width: 100%;
  border-radius: 8px;
}

.process-steps {
  padding: 86px 20px;
  background-color: #f9f9f9;
}
.process-steps h1 {
  max-width: 964px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 60px;
}
.steps-grid {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.step-box {
  flex-basis: 420px;
  flex-grow: 1;
  max-width: 500px;
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 4px;
  filter: drop-shadow(0px 14px 9px rgba(0, 0, 0, 0.06));
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--lora-font);
  margin-bottom: 20px;
}
.step-box h2 {
  font-size: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 12px;
}
.step-box p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

.process-benefits {
  padding: 86px 20px;
}
.process-benefits h1 {
  max-width: 964px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 60px;
}
.benefits-grid {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.benefit-box {
  flex-basis: 300px;
  flex-grow: 1;
  max-width: 350px;
  text-align: center;
  padding: 50px 30px 30px 30px;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.benefit-box .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fae74c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.benefit-box .icon i {
  font-size: 32px;
  color: #0a4174;
}
.benefit-box h2 {
  font-size: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 12px;
}
.benefit-box p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

/* ======================================
   FAQ PAGE
   ====================================== */
.faq-section {
  padding: 86px 20px;
}
.faq-section .container {
  max-width: 1000px;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
}
.faq-question h2 {
  font-size: 22px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  flex: 1;
  padding-right: 20px;
}
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-toggle i {
  font-size: 16px;
  color: var(--secondary-color);
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.faq-answer a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ======================================
   CAREERS PAGE
   ====================================== */
.careers-intro {
  padding: 86px 20px;
}
.careers-intro h1 {
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  margin-bottom: 20px;
}
.careers-intro p.main-para {
  opacity: 0.8;
  max-width: 900px;
  width: 100%;
  margin: auto;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 60px;
}
.careers-perks {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.perk-box {
  flex-basis: 280px;
  flex-grow: 1;
  max-width: 340px;
  text-align: center;
  padding: 40px 24px;
  background-color: #f9f9f9;
  border-radius: 4px;
}
.perk-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fae74c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.perk-icon i {
  font-size: 32px;
  color: #0a4174;
}
.perk-box h2 {
  font-size: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 12px;
}
.perk-box p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

.open-positions {
  padding: 86px 20px;
  background-color: #f9f9f9;
}
.open-positions h1 {
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  margin-bottom: 40px;
}
.position-card {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px auto;
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 4px;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.06));
}
.position-header {
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.position-header h2 {
  font-size: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.position-meta {
  font-size: 16px;
  color: #0a4174;
  font-family: var(--roboto-font);
  margin-top: 4px;
}
.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 46px;
  background-color: var(--secondary-color);
  color: var(--white-color) !important;
  font-size: 17px;
  font-family: var(--roboto-font);
  text-decoration: none !important;
  border-radius: 2px;
}
.apply-btn:hover {
  transform: scale(0.95);
}
.position-details p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 10px;
}
.position-details p span {
  color: #0a4174;
}

/* ======================================
   BLOG PAGE
   ====================================== */
.blog-section {
  padding: 86px 20px;
}
.blog-grid {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.blog-card {
  flex-basis: 420px;
  flex-grow: 1;
  max-width: 500px;
  background-color: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.06));
}
.blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content {
  padding: 30px;
}
.blog-date {
  font-size: 14px;
  color: #0a4174;
  font-family: var(--roboto-font);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-content h2 {
  font-size: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin: 12px 0 16px 0;
  line-height: 32px;
}
.blog-content p {
  opacity: 0.8;
  font-size: 17px;
  line-height: 26px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 20px;
}
.read-more {
  font-size: 17px;
  color: var(--secondary-color) !important;
  font-family: var(--roboto-font);
  font-weight: 500;
  text-decoration: none !important;
}
.read-more i {
  margin-left: 6px;
  font-size: 14px;
}
.read-more:hover {
  text-decoration: underline !important;
}

/* ======================================
   DISCOUNTS PAGE
   ====================================== */
.discount-community {
  padding: 86px 20px;
}
.discount-community .row {
  flex-wrap: wrap;
  gap: 60px;
}
.discount-community .row .col-1 {
  flex-basis: 450px;
  flex-grow: 1;
}
.discount-community h1 {
  margin-bottom: 30px;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
}
.discount-community p.main-para {
  opacity: 0.8;
  max-width: 738px;
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 30px;
}
.discount-list {
  margin-bottom: 30px;
}
.discount-item {
  margin-bottom: 16px;
}
.discount-item p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.discount-item p span {
  color: #0a4174;
  margin-right: 10px;
}
.discount-item p strong {
  color: #3b3b3b;
}

.discount-buddy {
  padding: 86px 20px;
  background-color: #f9f9f9;
}
.discount-buddy h1 {
  max-width: 964px;
  width: 100%;
  margin: auto;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  text-align: center;
  margin-bottom: 20px;
}
.discount-buddy p.main-para {
  opacity: 0.8;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 60px auto;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}
.buddy-grid {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.buddy-box {
  flex-basis: 320px;
  flex-grow: 1;
  max-width: 420px;
  text-align: center;
  padding: 50px 30px 30px 30px;
  background-color: var(--white-color);
  border-radius: 4px;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.06));
}
.buddy-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fae74c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.buddy-icon i {
  font-size: 32px;
  color: #0a4174;
}
.buddy-box h2 {
  font-size: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 12px;
}
.buddy-box p {
  opacity: 0.8;
  font-size: 19px;
  line-height: 28px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

.discount-referral {
  padding: 86px 20px;
}
.discount-referral .row {
  flex-wrap: wrap;
  gap: 60px;
}
.discount-referral .row .col-1 {
  flex-basis: 450px;
  flex-grow: 1;
}
.discount-referral h1 {
  margin-bottom: 30px;
  font-size: 76px;
  color: #3b3b3b;
  font-family: var(--lora-font);
}
.discount-referral p.main-para {
  opacity: 0.8;
  max-width: 738px;
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 30px;
}
.referral-steps {
  margin-top: 30px;
}
.referral-step {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 24px;
}
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--lora-font);
}
.referral-step h3 {
  font-size: 22px;
  color: #3b3b3b;
  font-weight: 500;
  font-family: var(--roboto-font);
  margin-bottom: 6px;
}
.referral-step p {
  opacity: 0.8;
  font-size: 17px;
  line-height: 26px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
}

/* ======================================
   SCHEDULE PAGE
   ====================================== */
.schedule-form-section {
  padding: 86px 20px;
}
.schedule-layout {
  flex-wrap: wrap;
  gap: 60px;
}
.col-form {
  flex: 3;
  flex-basis: 550px;
  flex-grow: 3;
}
.col-info {
  flex: 1;
  flex-basis: 320px;
  flex-grow: 1;
}
.col-form h1 {
  font-size: 48px;
  color: #3b3b3b;
  font-family: var(--lora-font);
  margin-bottom: 16px;
}
.col-form p.main-para {
  opacity: 0.8;
  font-size: 20px;
  line-height: 30px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 40px;
}
.schedule-form .form-group {
  margin-bottom: 24px;
  flex: 1;
  min-width: 250px;
}
.schedule-form .form-row {
  gap: 20px;
  flex-wrap: wrap;
}
.schedule-form label {
  display: block;
  font-size: 16px;
  color: #3b3b3b;
  font-weight: 500;
  font-family: var(--roboto-font);
  margin-bottom: 8px;
}
.schedule-form input[type="text"],
.schedule-form input[type="email"],
.schedule-form input[type="tel"],
.schedule-form input[type="number"],
.schedule-form input[type="date"],
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 17px;
  color: #3b3b3b;
  font-family: var(--roboto-font);
  border: 1px solid #a8a8a8ee;
  background-color: transparent;
  outline: none;
  border-radius: 2px;
}
.schedule-form textarea {
  resize: vertical;
}
.schedule-form select {
  appearance: auto;
}
.schedule-form .form-submit {
  margin-top: 10px;
}
.schedule-form .btn-input {
  width: 260px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
  font-size: 19px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--roboto-font);
  text-align: center;
}
.schedule-form .btn-input:hover {
  transform: scale(0.95);
}

.info-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.06));
}
.info-card h2 {
  font-size: 24px;
  color: #3b3b3b;
  font-weight: 400;
  font-family: var(--roboto-font);
  margin-bottom: 20px;
}
.price-highlight {
  margin-bottom: 16px;
}
.price-highlight h3 {
  font-size: 35px;
  color: #0a4174;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.price-highlight p {
  font-size: 17px;
  color: #3b3b3b;
  font-family: var(--roboto-font);
  opacity: 0.8;
}
.info-note {
  opacity: 0.8;
  font-size: 16px;
  line-height: 24px;
  color: #3b3b3b;
  font-family: var(--roboto-font);
  margin: 20px 0;
}
.info-link {
  font-size: 17px;
  color: var(--secondary-color) !important;
  font-family: var(--roboto-font);
  text-decoration: underline !important;
}
.info-item {
  gap: 16px;
  margin-bottom: 16px;
}
.info-item img {
  width: 24px;
}
.info-item p {
  font-size: 17px;
  line-height: 24px;
  color: #3b3b3b;
  font-family: var(--roboto-font);
  opacity: 0.8;
}

/* ======================================
   RESPONSIVE - NEW PAGES
   ====================================== */
@media screen and (max-width: 990.98px) {
  .cleaning-process-page .main-header-swiper .hero-section .col-12 h1,
  .faq-page .main-header-swiper .hero-section .col-12 h1,
  .careers-page .main-header-swiper .hero-section .col-12 h1,
  .blog-page .main-header-swiper .hero-section .col-12 h1,
  .discounts-page .main-header-swiper .hero-section .col-12 h1,
  .schedule-page .main-header-swiper .hero-section .col-12 h1 {
    font-size: 40px;
  }
  .process-intro h1,
  .process-steps h1,
  .process-benefits h1,
  .careers-intro h1,
  .open-positions h1,
  .discount-community h1,
  .discount-buddy h1,
  .discount-referral h1 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .col-form h1 {
    font-size: 36px;
  }
  .position-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 660.98px) {
  .blog-card {
    max-width: 100%;
  }
  .step-box,
  .benefit-box,
  .perk-box,
  .buddy-box {
    max-width: 100%;
  }
}