:root {
  --primary-color: #fe5e22;
  --secondary-color: #242424;
  --text-color: #505050;
  --background: #ffffff;
  --white-color: #ffffff;
  --background-alt: #f9fafb;
  --border-color: #808080;
  --formfield-bg: #ebebeb;
  --font-heading: "Playfair Display", serif;
  --font-text: "Nunito", serif;
}

/* GLOBAL RESET / LAYOUT */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;

}

/* main {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}

body,
p,
a {
  font-family: "Nunito", serif;
  color: var(--text-color);
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

a:hover,
a.active {
  color: var(--primary-color) !important;
}

/* HEADER */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 0;
}

#menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

header {
  margin-bottom: 50px;
  max-width: 1400px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fefefe;
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

/* =============================
   STICKY + SHRINK ON SCROLL
==============================*/
.navbar {
  transition: height 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 25%;
  position: relative;
}

.nav-logo::after {
  content: "";
  width: 0.5px;
  height: 100px;
  background-color: #bcbcbc;
  position: absolute;
  left: 285px;
  bottom: -4px;
}

.nav-menu {
  width: 70%;
}

.nav-contact {
  width: 30%;
  position: relative;
}

.nav-contact::before {
  content: "";
  width: 0.5px;
  height: 100px;
  background-color: #bcbcbc;
  position: absolute;
  right: 320px;
  bottom: -12px;
}

.nav-logo img {
  z-index: 999;
  display: block;
  width: 65%;
  height: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(18px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu .mobile-contact {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 65px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.4s ease;
  position: relative;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 300;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.nav-contact .nav-phone a,
.nav-contact .nav-email a {
  text-decoration: none;
  color: var(--text-color);
}

.nav-contact .nav-phone a:hover,
.nav-contact .nav-email a:hover {
  color: var(--primary-color);
}

/* FOOTER */
.footer-top {
  display: grid;
  grid-template-columns: 40% auto auto auto;
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.footer-top>div:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.footer-top>div {
  padding-top: 40px;
}

.footer-top .footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top .footer-menu .footer-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  text-transform: uppercase;
}

.footer-top .footer-menu .footer-list {
  list-style-type: none;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-inline-start: 0;
}

.footer-top .footer-menu .footer-list li a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  height: 120px;
}

.footer-copyright {
  display: flex;
  justify-content: center;
}

.footer-copyright p a {
  text-decoration: none;
  color: var(--text-color);
}

.footer-policy .policy-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.footer-policy .policy-list li a {
  text-decoration: none;
  color: var(--text-color);
}

.footer-social {
  display: flex;
  justify-content: center;
}

.footer-social .social-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.footer-social .social-list li a {
  text-decoration: none;
  color: var(--text-color);
}

/* main */
section {
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 1400px;
  min-height: 100vh;
}


.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* contact us */
.contact-title-sec {
  padding-top: 100px;
}

.contact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-title .title-1 {
  font-size: 96px;
  line-height: 10px;
  color: var(--secondary-color);
  font-weight: 400;
}

.contact-title .title-2 {
  font-size: 76px;
  line-height: 40px;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-title .title-3 {
  font-size: 48px;
  line-height: 40px;
  color: var(--secondary-color);
  font-style: italic;
  font-weight: 400;
}

.contact-title .title-4 {
  font-size: 76px;
  line-height: 40px;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 20px;
}

.image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.image-wrapper img {
  border-radius: 100% 100% 0px 0px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transform: scale(1);
  /* initial */
  transition: transform 0.1s linear;
  /* small smoothing for the “steps” */
}

.form-container {
  display: grid;
  grid-template-columns: 28% 42% 28%;
}

.form-container>div {
  margin: 20px;
}

.form-container .left-image {
  display: flex;
  align-items: flex-start;
  /* margin-top: 25%; */
}

.form-container .left-image img {
  width: 100%;
  border-radius: 50% 0 0 0;
}

.form-container .right-image {
  display: flex;
  align-items: flex-end;
  justify-content: end;
}

.form-container .right-image img {
  width: 70%;
  border-radius: 0 50% 0 0;
}

.form-container .contact-form {
  display: flex;
  flex-direction: column;
  place-items: center;
  width: 95%;
  row-gap: 85px;
  position: relative;
}

.form-container .contact-form .form-title {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-container .contact-form .title-circle {
  position: absolute;
  top: 0%;
  left: -20%;
  border: 0.5px solid #d5d5d5;
  border-radius: 70% 100% 70% 100%;
  width: 145%;
  height: 280px;
  transform: rotate(10deg);
  z-index: -1;
}

.form-container .contact-form .form-title h1 {
  font-size: 55px;
  font-weight: 400;
  line-height: 10px;
  color: var(--secondary-color);
}

.form-container .contact-form .form-title h1:nth-child(1) {
  text-align: left;
}

.form-container .contact-form .form-title h1:nth-child(2) {
  padding-left: 18%;
}

.form-container .contact-form .form-title h1:nth-child(3) {
  text-align: right;
  padding-left: 18%;
}

.form-container .contact-form .form {
  width: 100%;
}

.form-container .contact-form .form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-right: 30px;
}

form input,
form textarea,
form button {
  background-color: var(--formfield-bg);
  border: none;
  padding: 10px 20px;

  height: 50px;
}

form textarea {
  height: auto;
  resize: vertical;
  overflow: auto;
}

form button {
  background-color: var(--secondary-color);
  color: var(--white-color);
  height: 50px;
}

form input::placeholder,
form textarea::placeholder,
form button {
  font-family: var(--font-text);
  font-size: 16px;
}

.form #response {
  margin-top: 12px;
}

/* Gallery */
.circles {
  padding-left: 60px;
}

.circles .circle-gallery {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0px;
}

.circles .circle-gallery .circle-item {
  padding: 0;
}

.circles .circle-gallery .circle-item img {
  width: 80%;
}

.gallery {
  padding-top: 70px;
}

.gallery .gallery-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-title h1 {
  line-height: 20px;
  font-weight: 400;
  color: var(--secondary-color);
}

.gallery .gallery-title h1:nth-child(1) {
  font-size: 80px;
}

.gallery .gallery-title h1:nth-child(2) {
  font-size: 30px;
}

.gallery .gallery-title .through {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.gallery .gallery-title .through h1 {
  font-size: 40px;
  color: var(--primary-color);
}

.gallery .gallery-title .through .line {
  background-color: var(--primary-color);
  width: 700px;
  height: 4px;
  border-radius: 10px;
}

.gallery .gallery-title h1:nth-child(4) {
  font-size: 76px;
}

.gallery .gallery-title h1:nth-child(4) span {
  font-size: 40px;
}

.gallery .service-galleries {
  padding-inline: 30px;
  padding-top: 50px;
  min-height: 100vh;
}

.service-galleries .gallery-box .gallery-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
}

.service-galleries .gallery-box .gallery-title h2 {
  font-family: var(--font-text);
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 400;
}

.service-galleries .gallery-box .gallery-title .line-1 {
  width: 100%;
  background-color: var(--border-color);
  height: 1px;
  border-radius: 10px;
}

.service-galleries .gallery-box .gallery-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 300px);
  grid-template-areas:
    "item1 item3"
    "item2 item3";
  gap: 10px;
}

.service-galleries .gallery-box .gallery-images .image-item:nth-child(1) {
  grid-area: item1;
}

.service-galleries .gallery-box .gallery-images .image-item:nth-child(2) {
  grid-area: item2;
}

.service-galleries .gallery-box .gallery-images .image-item:nth-child(3) {
  grid-area: item3;
}

.service-galleries .gallery-box .gallery-images .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About */
section.about {
  padding-inline: 30px;
  padding-top: 100px;
}

.about .about-sec-1 {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  align-items: center;
}

.about .about-sec-1 .left-image {
  display: flex;
  justify-content: center;
}

.about .about-sec-1 .left-image img {
  width: 75%;
}

.about .about-sec-1 .right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0px;
}

.about .about-sec-1 .right-content h1 {
  text-align: center;
  color: var(--secondary-color);
  margin-block: 10px;
}

.about .about-sec-1 .right-content h1:nth-child(1) {
  font-size: 76px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 98px;
}

.about .about-sec-1 .right-content h1:nth-child(2) {
  font-size: 42px;
  font-weight: 400;
  line-height: 75px;
}

.about .about-sec-1 .right-content h1:nth-child(3) {
  font-size: 104px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-top: 40px;
}

.about .about-sec-1 .right-content h1:nth-child(4) {
  font-size: 65px;
  font-weight: 500;
  padding: 80px 0 30px;
}

.about .about-sec-1 .right-content .line {
  width: 30%;
  height: 4px;
  background-color: var(--primary-color);
  margin-top: 20px;
  border-radius: 10px;
}

.about .about-sec-2 {
  display: grid;
  grid-template-columns: 55% 45%;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about .about-sec-2 .left-content h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 400;
  color: var(--secondary-color);
}

.about .about-sec-2 .right-image {
  display: flex;
  justify-content: flex-end;
}

.about .about-sec-2 .right-image img {
  width: 100%;
}

/* Services */
.service-intro {
  padding-top: 150px;
}

.service-intro .intro-box {
  display: grid;
  grid-template-columns: 35% 30% 35%;
  align-items: center;
  gap: 0;
}

.service-intro .intro-box .left-image,
.service-intro .intro-box .right-image {
  display: flex;
  justify-content: center;
}

.service-intro .intro-box .left-image img,
.service-intro .intro-box .right-image img {
  max-width: 75%;
  width: 70%;
}

.service-intro .intro-box .middle-content {
  background: url(/assets/images/service-1-center-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-intro .intro-box .middle-content .contents {
  display: flex;
  flex-direction: column;
}

.service-intro .intro-box .middle-content .contents h1 {
  color: var(--secondary-color);
  font-weight: 400;
  line-height: 20px;
}

.service-intro .intro-box .middle-content .contents h1:nth-child(1) {
  font-size: 65px;
  text-align: left;
}

.service-intro .intro-box .middle-content .contents h1:nth-child(2) {
  font-size: 65px;
  text-align: right;
  margin-bottom: 70px;
}

.service-intro .intro-box .middle-content .contents h1:nth-child(3),
.service-intro .intro-box .middle-content .contents h1:nth-child(4),
.service-intro .intro-box .middle-content .contents h1:nth-child(5),
.service-intro .intro-box .middle-content .contents h1:nth-child(6) {
  font-size: 45px;
  color: var(--text-color);
}

.service-intro .intro-box .middle-content .contents h1:nth-child(4) {
  text-align: center;
}

.service-intro .intro-box .middle-content .contents h1:nth-child(5) {
  text-align: right;
}

.pattern-circle {
  max-width: 100%;
  padding-bottom: 0;
  min-height: unset;

}

.pattern-circle .pattern-line {
  height: 120px;
  margin-top: 20px;
  background: url(/assets/images/spiral.png);
  background-repeat: repeat-x;
}

.services .service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  padding: 20px 30px;

}

.services .service-item .service-image img {
  width: 100%;
}

.services .service-item .service-title {
  display: flex;
  gap: 10px;
}

.services .service-item .service-title img {
  width: 40px;
  height: auto;
}

.services .service-item .service-title h3 {
  font-family: var(--font-text);
  font-size: 20px;
  line-height: 0;
}

.services .service-item .service-content p {
  /* text-align: justify; */
  width: 100%;
}

.services .service-living-main {
  width: 100%;
  justify-self: center;
  padding-right: 30%;
}

.services .service-item.livingroom {
  max-width: 600px;
}

.services .service-item.kitchen {
  max-width: 800px;
}

.services .service-item.bedroom {
  max-width: 350px;
}

.services .service-item.office {
  max-width: 350px;
}

.services .service-item.homeoffice {
  max-width: 500px;
  justify-self: end;

}

.services .service-bedroom-main {
  width: 350px;
  justify-self: end;
  margin-top: -200px;
}

.services .bedroom .service-image img {
  border-radius: 50% 50% 0 0;
}

.services .service-kitchen-main {
  width: 750px;
  justify-self: start;
  margin-top: -80px;
}

.services .service-kitchen-main .kitchen .service-image img {
  border-radius: 300px;
}

.services .service-office-main {
  width: 100%;
  padding-left: 12%;
  margin-bottom: -50px;
}

.services .service-homeoffice-main {
  width: 100%;
  margin-top: -40px;
}

.services .service-homeoffice-main .homeoffice .service-image img {
  border-radius: 0 40% 0 0;
}

.services .office-home-both {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

/* Home page */

.home .home-intro .titles {
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
}

.home .home-intro .titles h1 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-size: 100px;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
}

.home .home-intro .titles h1:nth-child(1) {
  text-align: left;
}

.home .home-intro .titles h1:nth-child(2) {
  text-align: center;
}

.home .home-intro .titles h1:nth-child(3) {
  text-align: right;
}

.home .home-intro .titles h3 {
  color: var(--primary-color);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  align-self: end;
  margin-block: 0;
}

.home .home-intro .titles h3 span {
  font-size: 24px;
  line-height: 48px;
}

.home-1 .elevate {
  display: grid;
  grid-template-columns: 33% 36% 30%;
  justify-content: center;
}

.home-1 .elevate .left-image {
  align-self: flex-end;
}

.home-1 .elevate .left-image img {
  border-radius: 50% 50% 0 0;
}

.home-1 .elevate .middle-content {
  align-self: flex-end;
  padding-inline: 30px;
}

.home-1 .elevate .middle-content p {
  font-size: 20px;
  font-weight: 500;
}

.home-1 .elevate .middle-content .home-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
}

.home-1 .elevate .middle-content .home-contact img {
  width: 60px;
}

.home-1 .elevate .middle-content .home-contact a {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-decoration: none;
}

.home-1 .elevate-1 {
  display: grid;
  grid-template-columns: 33%;
  justify-content: end;
}

.home-1 .elevate-1 .right-image img {
  border-radius: 0 0 50% 50%;
}

.home-2 .whychoose {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-2 .whychoose .title h1 {
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: 400;
}

.home-2 .whychoose .title h1 span {
  color: var(--primary-color);
}

.home-2 .whychoose .why-area p {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}

.home-2 .whychoose .why-area {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-areas:
    "item1 item6 item2"
    "item3 item6 item4"
    "item5 item5 item5";
  align-items: center;
  justify-items: center;
}

.home-2 .whychoose .why-area .item-1 {
  grid-area: item1;
}

.home-2 .whychoose .why-area .item-2 {
  grid-area: item2;
}

.home-2 .whychoose .why-area .item-3 {
  grid-area: item3;
}

.home-2 .whychoose .why-area .item-4 {
  grid-area: item4;
}

.home-2 .whychoose .why-area .item-5 {
  grid-area: item5;
  margin-top: 10px;
}

.home-2 .whychoose .why-area .item-6 {
  grid-area: item6;
}

.home-2 .whychoose .why-area .item-6 img {
  width: 100%;
}

.home-3 .guarantee {
  position: relative;
  display: grid;
  /* grid-template-columns: auto 1fr auto; */
}

.home-3 .guarantee .title {
  padding-left: 15%;
}

.home-3 .guarantee .title h1 {
  color: var(--secondary-color);
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
}

.home-3 .guarantee .title h1:not(:nth-child(1)) {
  padding-left: 7%;
}

.home-3 .guarantee .left-image {
  position: absolute;
  left: 4%;
  bottom: 10%;
}

.home-3 .guarantee .left-image img {
  width: 100%;
}

.home-3 .guarantee .right-image {
  position: absolute;
  left: 53%;
  bottom: 32%;
}

.home-3 .guarantee .right-image img {
  width: 85%;
}

.home-3 .guarantee .arrow-image {
  position: absolute;
  top: 10%;
  right: 0;
}

.home-3 .features {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 0px;
  justify-content: space-evenly;
  align-items: center;
  padding-inline: 35px;
}

.home-3 .features .feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.home-3 .features .feature-item img {
  width: 50px;
}

.home-3 .features .feature-item p {
  font-size: 22px;
  font-weight: 500;
  color: var(--secondary-color);
}

.wave-pattern {
  width: 100%;
  height: 160px;
  background-image: url(/assets/images/wave-pattern.png);
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto;
  padding: 0;
}



.home-4 .what-you-get .title {
  padding: 20px;
  background-color: var(--primary-color);
  display: grid;
  grid-template-columns: auto auto;
}

.home-4 .what-you-get .title h1 {
  font-size: 115px;
  font-weight: 400;
  line-height: 125px;
  text-transform: uppercase;
  color: var(--white-color);
  margin-block: 0;
}

.home-4 .what-you-get .title h1 span {
  color: var(--secondary-color);
}

.home-4 .what-you-get .title .button {
  display: flex;
  align-items: end;
  justify-content: end;
}

.home-4 .what-you-get .title .button a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding-right: 8%;
  text-decoration: none;
}

.home-4 .what-you-get .title .button a img {
  width: 50px;
}

.home-4 .what-you-get .title .button a p {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary-color);
}

.home-4 .what-you-get .title .button a:hover p {
  color: var(--white-color);
}

.home-4 .what-you-get .home-services {
  display: grid;
  margin-block: 50px;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 430px;
  overflow: hidden;
  grid-template-areas:
    "item1 item2 item2"
    "item3 item3 item4"
    "item5 item6 item4";
  max-width: 1500px;
  justify-content: center;
  margin-inline: 20px;
}

.home-4 .what-you-get .home-services .service-item:nth-child(1) {
  grid-area: item1;
  width: 585px;
  height: auto;

  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .interior {
  display: flex;
  gap: 15px;
}

.home-4 .what-you-get .home-services .service-item .interior .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  row-gap: 20px;
}

.home-4 .what-you-get .home-services .service-item .interior .content .button {
  display: flex;
  justify-content: space-between;
}

.home-4 .what-you-get .home-services .service-item .interior .content .button p {
  padding: 6px 2px;
  border: 1px solid #808080;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--white-color);
  transition: background-color 0.5s ease;
}

.home-4 .what-you-get .home-services .service-item .interior .content .button:hover p {

  background-color: var(--primary-color);
}

.home-4 .what-you-get .home-services .service-item .interior .content .button img {
  width: 42px;
  height: 42px;
  border: 1px solid #808080;
  padding: 6px 6px;
  background-color: var(--primary-color);
  border-radius: 0 15px 15px 0;
}

.home-4 .what-you-get .home-services .service-item:nth-child(2) {
  grid-area: item2;
  width: 750px;
  height: auto;
  padding-left: 25px;
  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .kitchen {
  display: flex;
  gap: 15px;
}

.home-4 .what-you-get .home-services .service-item .kitchen .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  row-gap: 20px;
}

.home-4 .what-you-get .home-services .service-item .kitchen .content .button {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.home-4 .what-you-get .home-services .service-item .kitchen .content .button p {
  padding: 6px 2px;
}

.home-4 .what-you-get .home-services .service-item .kitchen .content .button img {
  width: 50px;
  height: 50px;
  padding: 6px 6px;
}

.home-4 .what-you-get .home-services .service-item:nth-child(3) {
  grid-area: item3;
  width: 800px;
  height: auto;

  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .innovative {
  display: flex;
  gap: 20px;
  background-color: #E9E9E9;
}

.home-4 .what-you-get .home-services .service-item .innovative .image img {
  /* width: 100%;*/
  height: 100%;
  object-fit: cover;
  /* important! */
  display: block;

}

.home-4 .what-you-get .home-services .service-item .innovative .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  row-gap: 20px;
  padding-bottom: 40px;
  padding-left: 10px;
}

.home-4 .what-you-get .home-services .service-item .innovative .content span.storage {
  font-size: 25px;
  font-weight: 500;
  color: var(--secondary-color);
  position: absolute;
  top: -75px;
  left: 35px;
}

.home-4 .what-you-get .home-services .service-item .innovative .content h2 {
  font-size: 35px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  color: var(--secondary-color);
}

.home-4 .what-you-get .home-services .service-item .innovative .content h2 span.i {
  font-size: 8em;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  color: var(--secondary-color);
}

.home-4 .what-you-get .home-services .service-item:nth-child(4) {
  grid-area: item4;
  width: 320px;
  height: auto;
  align-self: center;
  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .living-room {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.home-4 .what-you-get .home-services .service-item .living-room .button {
  display: flex;
  align-items: center;
  width: max-content;

}

.home-4 .what-you-get .home-services .service-item .living-room .button img {
  width: 42px;
  height: 42px;
  border: 1px solid #808080;
  padding: 6px;
  background-color: var(--primary-color);
  border-radius: 0 15px 15px 0;
}

.home-4 .what-you-get .home-services .service-item .living-room .button p {
  padding: 6px;
  border: 1px solid #808080;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--white-color);
  transition: background-color 0.5s ease;
}

.home-4 .what-you-get .home-services .service-item .living-room .button:hover p {

  background-color: var(--primary-color);
}

.home-4 .what-you-get .home-services .service-item:nth-child(5) {
  grid-area: item5;
  width: 360px;
  height: auto;
  align-self: center;
  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .bedroom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-self: flex-end;
}

.home-4 .what-you-get .home-services .service-item .bedroom .image img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  /* important! */
  display: block;

  border-radius: 0 50% 0 0;
}

.home-4 .what-you-get .home-services .service-item .bedroom .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
}

.home-4 .what-you-get .home-services .service-item .bedroom .content .button {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.home-4 .what-you-get .home-services .service-item .bedroom .content .button p {
  padding: 6px 2px;
}

.home-4 .what-you-get .home-services .service-item .bedroom .content .button img {
  width: 50px;
  height: 50px;
  padding: 6px 6px;
}

.home-4 .what-you-get .home-services .service-item:nth-child(6) {
  grid-area: item6;
  width: 400px;
  height: auto;
  margin-left: -80px;
  overflow: hidden;
}

.home-4 .what-you-get .home-services .service-item .home-improvement {
  display: flex;
  flex-direction: column;
}

.home-4 .what-you-get .home-services .service-item .home-improvement .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* important! */
  display: block;

}

.home-4 .what-you-get .home-services .service-item .home-improvement .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  row-gap: 20px;
}

.home-4 .what-you-get .home-services .service-item .home-improvement .button {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;

}

.home-4 .what-you-get .home-services .service-item .home-improvement .button p {
  padding: 6px 2px;
  font-size: 20px;
  font-weight: 500;
}

.home-4 .what-you-get .home-services .service-item .home-improvement .button img {
  width: 50px;
  height: 50px;
  padding: 6px 6px;
}


.home-5 .how-it-works {
  display: flex;
  flex-direction: column;
}

.home-5 .how-it-works .title {
  border-block: 1px solid var(--secondary-color);
  padding-block: 40px;
}

.home-5 .how-it-works .title h1 {
  text-align: center;
  font-size: 97px;
  font-weight: 400;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.home-5 .how-it-works .table {
  width: 100%;
  padding: 0;
  border-spacing: 0;
}

.home-5 .how-it-works .table tr {
  display: flex;
  align-self: center;
  justify-content: center;
}

.home-5 .how-it-works .table tr td {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--secondary-color);
  height: 200px;
  border-bottom: 1px solid var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-5 .how-it-works .table tr td.number {
  font-size: 75px;
  width: 26%;
}

.home-5 .how-it-works .table tr td.heading {
  font-size: 70px;
  text-transform: uppercase;
  width: 48%;
  border-inline: 1px solid var(--secondary-color);
}

.home-5 .how-it-works .table tr td.content {
  width: 26%;
}

.home-6 .partners {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  padding-inline: 30px;
}

.home-6 .partners .title-logos .title {
  display: flex;
  flex-direction: column;
  padding-left: 10%;
}

.home-6 .partners .title-logos .title h1 {
  font-size: 75px;
  font-weight: 400;
  color: var(--secondary-color);
}

.home-6 .partners .title-logos .title h1:nth-child(1) {
  color: var(--primary-color);
  display: flex;
  justify-content: center;
}

.home-6 .partners .title-logos .title h1:nth-child(2) {
  position: relative;
  /* padding-left: 170px; */
  display: flex;
  justify-content: center;
}

.home-6 .partners .title-logos .title h1:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 72%;
  width: 120px;
  height: 125px;
  background-image: url("/assets/images/partners-title.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50% 50% 0 0;
  border: 15px solid #e9e9e9;
  border-bottom: none;
}

.home-6 .partners .title-logos .title h1:nth-child(3) {
  padding-left: 10%;
}

.home-6 .partners .title-logos {
  display: flex;
  flex-direction: column;
}

.home-6 .partners .title-logos .logos {
  display: flex;
  gap: 0px;
  justify-content: end;
}

.home-6 .partners .title-logos .logos img {
  width: 80%;
}

.home-6 .partners .right-image img {
  border-radius: 50% 50% 0 0;
}

.home-7 .what-we-do .title {
  display: grid;
  grid-template-columns: auto auto;
  padding-inline: 30px;
}

.home-7 .what-we-do .title h1 {
  font-size: 76px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
}

.home-7 .what-we-do .title h1 span {
  color: var(--secondary-color);
}

.home-7 .what-we-do .title .button {
  display: flex;
  align-items: end;
  justify-content: end;
  padding-bottom: 3%;
}

.home-7 .what-we-do .title .button a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding-right: 8%;
  text-decoration: none;
}

.home-7 .what-we-do .title .button a:hover p {
  color: var(--primary-color);
}

.home-7 .what-we-do .title .button a img {
  width: 50px;
}

.home-7 .what-we-do .title .button a p {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary-color);
}

.home-7 .what-we-do .service-slides .slick-track {
  display: flex;
  align-items: center;
  padding-block: 40px;
}

.home-7 .what-we-do .service-slides .service-item img {
  width: 80%;
  max-width: 100%;
  border: none;
}

.home-7 .what-we-do .service-slides .service-item {
  transform: scale(1);
  transition: transform 0.3s ease-in;
}

.home-7 .what-we-do .service-slides .service-item:hover {
  transform: scale(1.1);
}

.home-7 .what-we-do .service-slides .service-item .service-img-kitchen {
  border-radius: 300px 300px 0 0;
}

.home-7 .what-we-do .service-slides .service-item .service-img-bedroom {
  border-radius: 200px 0 0 0;
}

.home-7 .what-we-do .service-slides .service-item .service-img-homeoffice {
  border-radius: 0 200px 0 0;
}

.home-7 .what-we-do .service-slides .service-item .button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.home-7 .what-we-do .service-slides .service-item .button img {
  width: 40px;
}

.home-7 .what-we-do .service-slides .service-item .button a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.home-7 .what-we-do .service-slides .service-item:hover .button a {
  color: var(--primary-color);
}

section.home-8 {
  padding-bottom: 0;
}

.home-8 .top-box {
  border: 1px solid #8c8c8c;
  padding: 15px;
}

.home-8 .refer-earn {
  display: grid;
  grid-template-columns: 23.5% 49% 23.5%;
  gap: 30px;
  overflow: hidden;
}

.home-8 .refer-earn .top-box,
.home-8 .refer-earn .left-box,
.home-8 .refer-earn .right-box,
.home-8 .refer-earn .middle-box {
  border: 1px solid #8c8c8c;
  border-top: none;
}

.home-8 .refer-earn .middle-box {
  padding: 0px 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-8 .refer-earn .middle-box .title h1 {
  color: var(--secondary-color);
  font-size: 75px;
  font-weight: 400;
  line-height: 96px;
}

.home-8 .refer-earn .middle-box .image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
}

.home-8 .refer-earn .middle-box .image-box img {
  rotate: 0;
  scale: 1;
  transition: all 0.7s ease-in-out;

}

.home-8 .refer-earn .middle-box .image-box:hover img {
  rotate: -20deg;
  scale: 0.8;
}

.home-8 .refer-earn .middle-box .price h1 {
  font-size: 76px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  line-height: 0;
}

.home-8 .refer-earn .middle-box .price p {
  text-align: center;
  font-size: 18px;
  color: var(--secondary-color);
}

.home-8 .refer-earn .middle-box .table {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.home-8 .refer-earn .middle-box .table table {
  width: 100%;
}

.home-8 .refer-earn .middle-box .table table tbody {
  vertical-align: top;
}

.home-8 .refer-earn .middle-box .table table td {
  width: 50%;
  padding-bottom: 50px;
}

.home-8 .refer-earn .middle-box .table td.heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
}


.zoom-step {
  overflow: hidden;
  /* optional: control height, aspect ratio, etc. */
  display: flex;
  justify-content: center;
  position: relative;
}

.zoom-step img {
  display: block;
  width: 60%;
  height: auto;
  transform-origin: center center;
  /* keep zoom centered */
  will-change: transform;
  /* small transition helps steps look pleasant — kept short so steps feel discrete */
  transition: transform 120ms linear;
  /* if you want a crisper step feel, reduce or remove transition */
}