* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2vw;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 5px rgba(2, 6, 23, 0.6);
  overflow: hidden;
  
}

/* Navigation Bar  */
.navbar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: space-around;
  padding: 0.8rem 4.5rem;
  overflow: hidden;
  gap: 4rem;


}

.logo {
  width: 150px;
  height: 40px;
}

.search-bar {
  /* flex: 1; */
  margin: 0 2rem;
  width: 20rem;
  
  
}

.search-bar input {
  width: 100%;
  height: 2.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 1);
  border: none;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 1px 1px 5px 1px #bebebe;

}
.search-bar input::placeholder{
  color: rgba(255, 255, 255, 0.7);
  
}



.nav-links {
  display: flex;
  list-style-type: none;
  gap: 1.2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 1em;
}
.nav-links li a:hover {
  text-decoration: none;
  transform: translateY(2px) scale(1.1);
}
@media (max-width: 1200px) {
  
  .navbar {
    /* flex-direction: column; */
    align-items: stretch;
    padding: 0.8rem 2.22rem;
    gap: 2rem;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo {
    width: 120px;
    height: 40px;
    margin-top: 0.4rem;
  }

  .search-bar {
    margin: 0.8rem 0;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 1.8em;
    align-items: center;

    /* padding: 0; */
  }
}

@media (max-width: 767px) {
  .navbar {
    /* flex-direction: column; */
    flex: 1;
    align-items: stretch;
    padding: 0.8rem 2.22rem;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo {
    width: 120px;
    height: 40px;
    margin-top: 0.4rem;
    padding-right: 0.4rem;
  }

  .search-bar {
    margin: 0.8rem 0;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 3.2em;
    /* padding: 0; */
  }
}

.fa {
  padding-right: 5px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Home Page Banner section*/
.hero-section {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 0 80px;
}

.leftdiv {
  max-width: 50%;
  max-height: 80%;
  background-color: rgb(255, 255, 255);
  padding: 2vw 3vw 3vw 3vw;
  border-radius: 40px;
  z-index: 2;
  box-shadow: 0 1px 5px rgba(2, 6, 23, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.leftdiv h1 {
  padding-bottom: 2vh;
  font-size: 4vw;
  color: #575757;
}

.leftdiv .highlight {
  color: #ff2626;
  position: relative;
}

.leftdiv p {
  font-size: 1.5vw;
  color: #666;
  margin-bottom: 4vh;
  position: relative;
}

/* Booking Button */
.booking {
  background-color: #f40909;
  color: white;
  font-size: 1.5vw;
  margin: 0;
  padding: 1vh 1vw;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-family: cursive;
}

/* Right Div contains image */
.rightdiv {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 500px;
  left: 45%;
  top: 140px;
  overflow: hidden;
}

.rightdiv img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/*What are you looking for*/
.grid-and-image-container {
  display: flex;
  justify-content: center;
  gap: 290px;
  width: 100%;
}

.container {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 5px rgba(2, 6, 23, 0.6);
  overflow: hidden;
  position: relative;
  width: 30%;
  height: 80vh;
  justify-content: space-between;
}

.grid-hedding {
  position: relative;
  font-size: 20px;
  font-family: cursive;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  grid-template-rows: 3fr 3fr 3fr;
  gap: var(--gap);
  justify-content: center;
  align-content: center;
}

.cell {
  background: var(--cell-bg);
  border: 1px solid var(--cell-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  color: #0b1220;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.08);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  user-select: none;
  overflow: hidden;
}

.cell:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
  cursor: pointer;
}

.imgdiv {
  position: relative;
  overflow-x: hidden;
  margin: 60px 0;
}

.imgdiv img {
  width: 40vw;
  height: 80vh;
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.cell1img {
  height: 8vh;
  width: 3vw;
  position: relative;
  display: block;
}

.cell p {
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  top: 10px;
  text-align: center;
  font-size: 10px;
}

/*Grid Section end*/

/* Rating & Visitor Section Start */
.rating-customer {
  display: flex;
  gap: 70px;
  position: relative;
  left: 150px;
  max-width: fit-content;
  max-height: fit-content;
}

.rating {
  display: flex;
  gap: 10px;
}

.rating img {
  height: 45px;
  width: 50px;
}

.textblock {
  text-align: left;
  display: inline;
  position: relative;
}

.rating-digit {
  font-size: 20px;
  line-height: 28px;
  color: rgba(15, 15, 15, 1);
  text-decoration-line: none;
  text-transform: none;
  font-weight: 600;
}

.service-ratings {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.customersnumber {
  display: flex;
  gap: 10px;
}

.customersnumber img {
  height: 50px;
  width: 50px;
}

.textblock2 {
  text-align: left;
  display: inline;
  position: relative;
  /* left: 20px; */
}

.customer-count {
  font-size: 20px;
  line-height: 28px;
  color: rgba(15, 15, 15, 1);
  text-decoration-line: none;
  text-transform: none;
  font-weight: 600;
}

.customers-globally {
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

/* Rating & Visitor Section Close */

/* Card Section Start*/
.offers {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 96%;
  overflow: hidden;
}

.arrow-btn {
  position: relative;
  background: #f40909;
  color: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.arrow-btn1 {
  left: 20px;
}

.arrow-btn2 {
  right: 20px;
}

.cards {
  display: flex;
  gap: 15px;
  flex: 2;
  overflow: hidden;
}

.card {
  flex: 1;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: fill;
}

.card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
}

/* Card Section Close*/

/* Grid 2 start */
.container2 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 60px 60px;
  gap: 3rem;
}

.salon-spa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  max-width: 60%;
  max-height: fit-content;
  margin: 25px 25px;
  overflow: hidden;
  padding: 24px 24px 20px 24px;
  user-select: none;
  border: 2px transparent;
  box-shadow: 0 1px 5px rgba(2, 6, 23, 0.6);
  border-radius: 20px;
}

.about-us-head>h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.filter {
  margin-bottom: 20px;
  text-align: right;
  position: relative;
  top: 8px;
  font-size: 15px;
}

.filter a {
  text-decoration: none;
  color: #555;
  margin-right: 15px;
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 3;
  margin-bottom: 10px;
}

.card2 {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-top: 15px;
  text-align: center;
  transition: transform 0.2s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card2:hover {
  transform: scale(1.02);
}

h3 {
  font-size: 15px;
}

.card2 img {
  display: block;
  height: auto;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 50%
  );
  mask-repeat: no-repeat;
  mask-size: cover;
}

.card2-back-textblock {
  display: flex;
  width: 40%;
  /* padding: 50px; */
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 140px;
  font-weight: bold;
  color: #575757;
  mask-image: linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8));
}

.looks-moods {
  color: #f40909;
}

/* Grid 2 Close*/

/*Advertise Section 1*/
.advertise-container1 {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.advertise-container1 img {
  height: 300px;
  width: 90%;
}

/* Card-Section 2 */
.card-section2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 60px 30px 30px 30px;
  overflow: hidden;
}

.most-booked-services {
  position: relative;
  top: -50px;
}

.card-head {
  margin-left: 70px;
  margin-bottom: 30px;
}

.card-head>h2 {
  font-size: 36px;
  font-weight: 600;

  line-height: 44px;
  color: rgb(15, 15, 15);
}

.card-headding {
  display: flex;
  gap: 726px;
  margin-top: 50px;
}

.card-holder {
  display: flex;
  flex-direction: column;
  width: 20%;
  height: 80%;
}

.cards-2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex: 2;
  overflow: hidden;
  margin-bottom: 60px;
}

.card-3 {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  max-width: 100%;
  max-height: 100%;
}

.card-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-3:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
}

.cardtitle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin: 20px 0 20px 0;
  text-align: start;
  height: auto;
}

.p1 {
  font-size: 15px;
}

.p2 {
  display: flex;
  gap: 15px;
  font-size: 14px;
  font-weight: normal;
}

.p2 img {
  width: 15px;
  height: 15px;
}

.imgp2 {
  display: flex;
  gap: 5px;
}

.arrow-btn3 {
  top: 110px;
  left: 30px;
}

.arrow-btn4 {
  top: 110px;
  right: 30px;
}

/* Card-section 2 */

/* Cleaning & pest control*/
.pest-container2 {
  display: flex;
  flex-direction: column;
  margin: 30px 30px 90px 30px;
}

.pest-control {
  display: flex;
  gap: 335px;
  width: 90%;
  margin: 30px 30px 15px 15px;
  overflow: hidden;
  position: relative;
  left: 50px;
  padding: 24px 24px 20px 25px;
  user-select: none;
}

.pest-head {
  width: 70%;
  font-size: 36px;
  font-weight: 600;
}

.product-grid2 {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}

.see-all-btn {
  background-color: #ff2626;
  height: 40px;
  width: 60px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.see-all-btn > a {
  color: white;
  text-decoration: none;
}
.card3 {
  border: 0.2px solid #f0f0f0;
  border-radius: 5px;
  padding-top: 15px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.3s;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 280px;
  overflow: hidden;
}

.card3:hover {
  transform: scale(1.02);
  border-color: #7c7b7b;
}

.card2 h3 {
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  text-align: left;
}
.card3 h3 {
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  text-align: left;
}

.card3 img {
  display: block;
  max-width: 250px;
  height: auto;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 50%
  );
  mask-repeat: no-repeat;
  mask-size: cover;
}

/* Cleaning & pest control close*/

/* Footer start */
footer {
  background-color: #fcfcfc;
  padding: 40px 80px;
  margin-top: 100px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-column a {
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ff0000;
  transform: scale(1.1);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: all 0.3s;
}

.social-links img {
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  background: #000;
  color: #fff;
}

.app-links img {
  width: 130px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

/* Footer end */

/* About us */
.about-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 70px 0;
  padding: 0 80px;
  align-items: center;
}

.about-us-head {
  display: flex;
  align-items: center;
  text-align: center;
  max-width: fit-content;
  max-height: fit-content;
  color: rgb(15, 15, 15);
}

.about-us-paragraph {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-p {
  color: #555;
  font-size: 15px;
  text-align: justify;
}
@media (max-width: 1200px) {
  .about-us-container {
    margin: 20px 0;
    padding: 0 20px;
  }
  .about-us-head h1 {
    font-size: 3.3em;
  }

  @media (max-width: 767px) {
    .about-us-container {
      margin: 20px 0;
      padding: 0 20px;
    }
    .about-us-head h1 {
      font-size: 5em;
    }
  }
}


/* =====================Terms & Conditions=========================== */
.terms-container{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.leftbar{
  width: 20%;
}

.middlecontainer{
  width: 58%;
  padding: 10vh 0;
}

.terms-under-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.termsHeading{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.termsHeading>p{
  font-size: 16px;
  margin-top: 0.5rem;
}

.termSection-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1vh 1vw;
  border-radius: 10px;
  box-shadow: 0px 0px 30px #bebebe;
}

.termsSection{
  text-align: justify;
  font-size: 1em;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 1rem;
}
.termsSection-para p{
  text-align: justify;
  font-size: 1em;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 1rem;
}

.termsSection h3{
  font-size: 20px;
  margin-bottom: 1rem;
}

.terms-sidebar{
  width: 20%;
  position: sticky;
  border-left: 2px solid #eee;
  padding-left: 0.5vw;
  padding-top: 2vh;
  top: 5px;;
  height: fit-content;
}
.terms-sidebar h4 {
  margin-bottom: 10px;
  color: red;
  font-size: 20px;
}

.terms-sidebar ul {
  list-style: none;
  padding: 0;
}
.terms-sidebar ul li {
  margin-bottom: 16px;
  padding: 0 1vw;
}
.terms-sidebar ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
  text-decoration: none;
}
.terms-sidebar a{
  text-decoration: none;
  font-size: 13px;
}
.terms-sidebar>a:active{
  text-decoration: none;
  border-left: 2px red;
}
.terms-sidebar ul li a:hover {
  color: red;
  transform: scale3d(1.1, 1.1, 1.5);
}



/* ============================Terms & Conditions ============================ */