/*------------------------------------------------------------------
Project: Plumbing
Author: The_Krishna
Last change: 16/01/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Site Image Animtion CSS
4.Whole Page scroll Aniamtion CSS
5.Header CSS
6.Section One CSS
7.Section Two CSS
8.Section Three CSS
9.Section Four CSS
10.Section Five CSS
11.Section Six CSS
12.Section Seven CSS
13.Section Eight CSS
14.Section Nine CSS
15.Section Ten CSS
16.Footer Section CSS 
17.Bottom top button CSS
18.About Page CSS
19.Team Page CSS
20.Pricing Page CSS
21.Get Quote Page CSS
22.Client Page CSS
23.FAQ Page CSS
24.Error Page CSS
25.Coming Soon Page CSS
26.Services Page CSS
27.Project Page 2 CSS
28.Project Page 3 CSS
29.Single Project Page CSS
30.Blog Page CSS
31.Single Blog Page CSS
32.Contact Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  scroll-behavior: smooth;
  font-family: 'Outfit', serif;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem;
}
ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}
button {
  border: none;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-corner {
  display: none;
}
::-webkit-scrollbar-thumb {
  background: #ff2424;
  background-clip: content-box;
}
::-webkit-scrollbar-track {
  background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 10000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.page-loader .water-drop {
  height: 80px;
  width: 80px;
  border: 7px solid #1228e1;
  transform: rotate(45deg);
  border-radius: 0 50% 50% 50%;
  position: relative;
  animation: move 0.5s linear infinite alternate-reverse;
}
.page-loader .water-drop::before {
  content: '';
  position: absolute;
  height: 55%;
  width: 55%;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: #1228e1;
  border-bottom-color: #1228e1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes move {
  to {
    transform: translateY(15px) rotate(45deg);
  }
}
.page-loader p {
  font-size: 40px;
  font-weight: 700;
  color: #ff2424;
  font-family: 'Outfit', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-top: 20px;
}
/*-----------------------[ 3.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
  transform-origin: 50% 50%;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
  transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
  transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
  transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
  transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
  transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
  clip-path: inset(0 15%);
  transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
  clip-path: inset(0 0);
  transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
  transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
  clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
  clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
  transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 4.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}
.fade_up {
  transform: translateY(-100%);
}
.fade_down {
  transform: translateY(100%);
}
.zoom_in {
  transform: scale(0.5);
}
.zoom_out {
  transform: scale(1.5);
}
.fade_right {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 2s;
}
.fade_left {
  opacity: 0;
  transform: translateX(100%);
  transition: all 2s;
}
.flip_left {
  opacity: 0;
  transform: perspective(400px) rotateY(-90deg);
  transition: all 2s;
}
.flip_right {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 2s;
}
.flip_up {
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transition: all 2s;
}
.flip_down {
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transition: all 2s;
}
.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/*-----------------------[ 5.Header CSS ]------------------------*/
.small-header {
  background: #f5f6f7;
}
.small-header-sub-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-header-sub p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.small-header-sub p:hover {
  color: #ff2424;
}
.small-header-sub p img {
  padding-right: 5px;
}
.small-header-sub {
  display: flex;
  align-items: center;
  gap: 60px;
}
.small-header-media-main {
  display: flex;
  align-items: center;
  gap: 15px;
}
header {
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 500;
  width: 100%;
  position: sticky;
  top: 0;
}
.header-sub {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.book-appointbtn {
  color: var(--5, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 20px;
  background: #1228e1;
  transition: all 0.3s ease-in-out;
}
.book-appointbtn:hover {
  background: #ff2424;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.media-contact-header {
  display: flex;
  align-items: center;
  gap: 48px;
}
.office-add {
  color: var(--4, #222);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.header-contact a,
.header-contact .enva {
  color: #1228e1;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.header-contact a p:hover {
  color: #ff2424;
}
.media-icon-bg {
  width: 36px;
  height: 36px;
  background-color: rgba(168, 169, 173, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.media-icon-bg:hover {
  background: #ff2424;
  border-radius: 30px 0 30px 30px;
}
.media-icon-bg:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(95deg) brightness(105%) contrast(101%);
}
.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ff2424;
  padding: 6px 30px 6px 6px;
  border-radius: 30px 0px 30px 30px;
}
.headphone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-info {
  color: var(--5, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.call-info a {
  color: var(--5, #fff);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
.contact-num-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1228e1;
  border-radius: 0px 30px 30px 0px;
}
.header-menu-main .list-arrow-main {
  display: flex;
  align-items: stretch;
}
.header-menu-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -30px;
}
.header-menu-main {
  position: relative;
}
.header-menu-main::before {
  content: '';
  width: 50%;
  height: 62px;
  background: #1228e1;
  position: absolute;
  left: 0;
}
.main {
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-transform-origin: 50% 0%;
  -webkit-transform: perspective(350px) rotateX(-90deg);
  position: absolute;
  top: 100%;
  left: 0;
  background: #1228e1;
  width: 220px;
  border-top: 3px solid #ffffff;
}
.main li a {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  display: block;
  padding: 10px 20px;
}
.main li a:hover {
  background: #ff2424;
}
.hov {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  padding: 18px 20px;
  cursor: pointer;
}
.hov:hover {
  background: #ff2424;
  color: #fff;
}
.hov.active {
  background: #ff2424;
}
a.submenu-link.active {
  background: #ff2424;
}
.hov:hover .main {
  transform-origin: top;
  transform: perspective(350px) rotateX(0deg);
  transition: transform 0.6s ease-in-out;
}
.contact-menu a {
  color: #fff;
}
.contact-menu-active {
  background: #ff2424;
}
.search-pop-serch-bar {
  position: relative;
}
.search-icon-circle {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 6px 6px 6px 200px;
}
.search-pop-up {
  position: absolute;
  right: 0;
  background: #ff2424;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-pop-up.open {
  opacity: 1;
  transform: translateY(0);
}
.search-pop-up img {
  position: absolute;
  right: 35px;
  cursor: pointer;
}
.search-pop-up input {
  width: 250px;
  outline: none;
  border: none;
  background: #f5f6f7;
  padding: 10px 15px;
  color: #000;
  font-size: 18px;
  line-height: 24px;
}
.humburger,
.side-menu-logo,
.side-menu-media,
.search-bar-menu {
  display: none;
}
/*-----------------------[ 6.Section One CSS ]------------------------*/
.info {
  position: absolute;
  width: 100%;
  max-width: 1320px;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 1000;
  margin: 0 auto;
}
.slider-text {
  position: absolute;
  top: 50%;
  z-index: 10;
}
.slider-text .info {
  transform: translateY(-50%);
  padding: 0px 30px;
}

.text-slide {
  display: none;
  position: relative;
}
.text-slide.active {
  display: block;
}
.background-img-slider-SecOne {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 560px; /* aumentado ligeramente para mejor presencia */
  width: 100%;
  position: relative;
  overflow: hidden;
}
.background-img-slider-SecOne::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* overlay para mejorar contraste */
  z-index: 5;
}
.slider-text {
  /* asegurar que el texto esté por encima del overlay */
  z-index: 10;
}
.text-slide .quality {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
.quality-top {
  margin-bottom: 6px;
}
.quality-bottom {
  margin-top: 0;
}
.text-slide .residents {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  max-width: 520px;
  line-height: 1.4;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.text-slide .button-main {
  margin-top: 18px;
  background: #ff2424;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .text-slide .quality {
    font-size: 28px;
  }
  .text-slide .residents {
    font-size: 16px;
    max-width: 100%;
  }
}

.slick-slide {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-main,
.slick-list,
.slick-track {
  height: 100%;
}
.slider-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px; /* ajustar acorde a .background-img-slider-SecOne */
}

@media (max-width: 992px) {
  .background-img-slider-SecOne {
    height: 500px;
  }
  .slider-section {
    height: 540px;
  }
}

@media (max-width: 768px) {
  .background-img-slider-SecOne {
    height: 420px;
  }
  .slider-section {
    height: 440px;
  }
}

@media (max-width: 576px) {
  .background-img-slider-SecOne {
    height: 300px;
  }
  .slider-section {
    height: 320px;
  }
  .text-slide .quality {
    font-size: 22px;
  }
  .text-slide .residents {
    font-size: 14px;
  }
}
.sec-one-slider-btn {
  width: 80px;
  height: 80px;
  background: #ffff;
  border: 0 none;
  text-align: center;
  color: #fff;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.NextArrow {
  position: absolute;
  bottom: 30px;
  left: 383px;
}
.NextArrow:before {
  content: url('../images/svg/right-arrow.svg');
  width: 36px;
  height: 36px;
}
.PrevArrow {
  position: absolute;
  bottom: 30px;
  left: 300px;
}
.PrevArrow:before {
  content: url('../images/svg/left-arrow.svg');
  width: 36px;
  height: 36px;
}
.quality {
  color: var(--3, #000);
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  max-width: 630px;
}
.residents {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  max-width: 630px;
  padding-top: 20px;
}
.button-main {
  color: var(--5, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding: 18px 30px;
  background: #ff2424;
  border-radius: 30px;
  display: inline-block;
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
}
.button-main:hover {
  background: #1228e1;
  border-radius: 30px 0 30px 30px;
}
.button-main-2 {
  color: var(--5, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding: 8px 16px;
  background: #ff2424;
  border-radius: 30px;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease-in-out;
}
.button-main-2:hover {
  background: #1228e1;
  border-radius: 30px 0 30px 30px;
}
.provide {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--10, #ff2424);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.text-circle-main {
  width: 190px;
  height: 190px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.text-circle-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 2px dashed #f5f6f7;
  border-radius: 50%;
}
.text-circle-sub .circular-text {
  animation: rotate-animation 30s infinite linear;
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pip-circle {
  width: 90px;
  height: 90px;
  background: #f5f6f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
  padding: 64px 0;
}
.main-text-sec {
  color: var(--3, #000);
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
}
.sec-two-row {
  margin: 40px 0 60px 0;
}
.pip-sec2 {
  position: absolute;
  left: 0;
  z-index: -1;
}
.sec-two-img-group {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.yer-of-exp {
  color: var(--3, #000);
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.yer-of-exp span {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  max-width: 90px;
}
.sec-two-img2 {
  max-width: 100%;
  margin-bottom: 30px;
}
.sec-two-img3 {
  max-width: 100%;
}
.sub-text-sec {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.sec-two-blue-check-box {
  margin: 30px 0;
  padding: 20px;
  background: #1228e1;
}
.blue-box-ul li {
  color: var(--5, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 20px;
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.blue-box-ul li::before {
  content: url('../images/svg/check-svg.svg');
}
.sec-two-img4 {
  border-radius: 50%;
}
.jackson-deatils {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.jackson-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 70px;
  border-right: 2px solid rgba(168, 169, 173, 0.15);
}
.jackson {
  color: var(--11, #1228e1);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding-bottom: 10px;
}
.ceo-tel-box {
  padding-left: 30px;
}
.ceo-home-rakshak {
  color: var(--4, #222);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.jack-tel {
  color: #ff2424;
  padding-top: 10px;
  display: block;
}
.vision-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vision {
  color: var(--3, #000);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 10px;
}
.vision-passage {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
  padding: 100px 0 170px 0;
  background: #f5f6f7;
}
.reasons {
  max-width: 630px;
}
.dui {
  max-width: 520px;
}
.sec-head-text {
}
.choose-us-row {
  gap: 24px 0;
  margin-top: -120px;
}
.why-choose-box {
  padding: 30px;
  background: var(--11, #1228e1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.why-choose-box:hover {
  border-radius: 30px 0 30px 30px;
}
.why-choose-box:hover .rusted {
  color: #fff;
}
.satisfa {
  color: var(--5, #fff);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding: 20px 0 10px 0;
}
.rusted {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
.call-svg-main {
  width: 48px;
  height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff2424;
}
.choose-call-box {
  display: flex;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}
.choose-call-box a {
  color: var(--10, #ff2424);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  padding: 12px 20px;
  background: #fff;
  width: 100%;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.services-box-col {
  display: flex;
  flex-direction: column;
}
.service-box-img {
  width: 100%;
  height: 200px; /* altura fija para uniformar */
  object-fit: cover; /* recorta y mantiene proporción */
  display: block;
}
.services-hov-box {
  padding: 12px 10px;
}
.services-box-col a {
  /*display: flex;
    flex-direction: column;
    height: 100%;*/
}

/* (Revertido truncado y ajuste de altura de cajas según petición del usuario) */

@media (max-width: 768px) {
  .service-box-img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .service-box-img {
    height: 130px;
  }
  .services-hov-box {
    padding: 10px 8px;
  }
}

.section-four {
  padding: 64px 0;
}
.our-services-sec {
  justify-content: center;
}
.services-plum {
  max-width: 815px;
  margin: 0 auto;
  text-align: center;
}
.services-box-col {
  position: relative;
}
.services-hov-box {
  background: #ffffff;
  padding: 20px;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s ease;
  z-index: 1;
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ff2424;
  border-radius: 10px;
}
/*.services-box-col:hover .services-hov-box {
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.80) 100%);
    backdrop-filter: blur(5px);
    height: calc(100% - 100px);
}*/
.plumbing-repair {
  color: var(--11, #1228e1);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 10px;
}
.Porttitor {
  color: var(--4, #222);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.section-four-row {
  margin-top: 60px;
  margin-bottom: 70px;
}
.service-box-img {
  max-width: 100%;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
  background-image: linear-gradient(
      rgba(18, 40, 225, 0.8) 0%,
      rgba(18, 40, 225, 0.8) 100%
    ),
    url('../images/contact-page/fixing-kitchen-sink.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 64px 0;
}
.free-contact {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(242deg) brightness(102%) contrast(103%);
}
.freeplum {
  color: #fff;
}
.sec-head-text-btns-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contact-us-btn {
  background: transparent;
  border: 2px solid #ffff;
  margin: 0;
}
.contact-us-btn:hover {
  background: #ff2424;
  border: 2px solid transparent;
}
.get-quote-frr-btn {
  border: 2px solid transparent;
  margin: 0;
}
.get-quote-frr-btn:hover {
  background: transparent;
  border: 2px solid #ffff;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sec-six-pip-img {
  position: absolute;
  top: 0;
  right: 0;
}
.project-sec-row {
  margin-top: 60px;
}
.proejct-sec-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project-imgs {
  max-width: 100%;
}
.overly-img-container {
  position: relative;
  overflow: hidden;
}
.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}
.project-text-name {
  padding: 20px;
  background: #ffffff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  z-index: 2;
  color: var(--11, #1228e1);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  width: calc(100% - 40px);
  animation: fadeDown 0.5s ease forwards;
}
.overly-img-container:hover .overlay::before {
  opacity: 1;
}
.overly-img-container:hover .project-text-name {
  opacity: 1;
  animation: fadeUp 0.5s ease forwards;
}
@keyframes fadeUp {
  from {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
@keyframes fadeDown {
  from {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.sec-seven-row {
  margin-top: 60px;
}
.process-cir-main {
  width: 160px;
  height: 160px;
  background: #f5f6f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.process-cir-main:hover {
  background: #1228e1;
  border-radius: 100px 0 100px 100px;
}
.process-cir-main:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(95deg) brightness(105%) contrast(101%);
}
.process-text {
  color: var(--3, #000);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
}
.process-text-sub {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.form-col {
  background: #000;
  padding: 100px 110px;
}
.row.form-row {
  margin-bottom: -200px;
  margin-top: 100px;
  position: relative;
}
.orm-pipes-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.leo {
  color: #a8a9ad;
  padding-top: 20px;
}
.req-form-main {
  margin-top: 30px;
}
.input-main {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.input-main input {
  background: rgba(168, 169, 173, 0.1);
  border: none;
  height: 48px;
  outline: none;
  padding: 12px;
  color: #a8a9ad;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
}
.input-main input::placeholder {
  color: #a8a9ad;
}
.wrapper {
  width: 100%;
  cursor: pointer;
}
.formDropDown {
  position: relative;
  padding: 12px;
  background: rgba(168, 169, 173, 0.1);
  color: #a8a9ad;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formDropDown-ul-list {
  display: none;
  margin-top: -1px;
  background: #fff;
  padding-left: 0;
  position: absolute;
  top: 5px;
  width: 100%;
  z-index: 5;
  border: 1px solid #222;
}
.formDropDown-ul-list {
  display: none;
}
.formDropDown-ul-list li {
  border-bottom: 1px solid #fff;
  padding: 10px 12px;
}
.formDropDown-ul-list a {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.form-row::before {
  content: url('../images/gat-qote-page/pipe-left.png');
  position: absolute;
  left: -172px;
  top: 4px;
}
.form-row::after {
  content: url('../images/gat-qote-page/pipe-right.png');
  position: absolute;
  right: -172px;
  top: 4px;
}
/*-----------------------[ 13.Section Eight CSS ]------------------------*/
.section-eight {
  padding: 300px 0 100px 0;
  background: var(--12, #f5f6f7);
}
.testimonial-box {
  background: #fff;
  padding: 30px;
  border: 2px solid rgba(168, 169, 173, 0.3);
  margin: 0 12px;
  margin-top: 60px;
  overflow: hidden;
}
.eget {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.testimonial-eply-det {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  border-top: 2px solid rgba(168, 169, 173, 0.3);
  width: 100%;
}
.eply-name {
  color: var(--11, #1228e1);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.eply-date {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.testimonilas-main .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.testimonilas-main li button {
  font-size: 0px;
  color: #a8a9ad;
  width: 10px;
  height: 10px;
  background: #a8a9ad;
  margin: 5px;
  border-radius: 50%;
}
.testimonilas-main .slick-active button {
  background: #ff2424 !important;
  width: 30px !important;
  height: 10px !important;
  border-radius: 5px;
}
/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.section-nine {
  background: #fff;
  padding: 100px 0;
}
.tellus {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}
.team-sec-row {
  margin-top: 60px;
}
.team-mem-datails {
  position: absolute;
  bottom: -2px;
  padding: 20px;
  background: linear-gradient(
    96deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(5px);
  clip-path: polygon(0 0, 85% 0, 100% 99%, 0% 100%);
  width: 100%;
  max-width: 330px;
}
.team-mem-datails h3 {
  color: var(--3, #000);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 5px;
}
.team-mem-datails p {
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}
.team-img-mem {
  width: 100%;
}
.team-box .team-img-mem {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.team-box:hover .team-img-mem {
  -webkit-transform: scale(1.1) rotate(-3deg);
  transform: scale(1.1) rotate(-3deg);
}
.share-btn-main {
  z-index: 20;
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.team-box .share {
  height: 48px;
  width: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff2424;
}
.team-box:hover .submenu li:nth-child(1) {
  opacity: 1;
  top: -50px;
  transform: rotate(0deg);
  transition-delay: 0.08s;
}
.team-box .submenu li:nth-child(1) {
  transform: rotateX(45deg);
}
.team-box:hover .submenu li:nth-child(2) {
  opacity: 1;
  top: -100px;
  transform: rotate(0deg);
  transition-delay: 0.16s;
}
.team-box .submenu li:nth-child(2) {
  transform: rotateX(90deg);
}
.team-box:hover .submenu li:nth-child(3) {
  opacity: 1;
  top: -150px;
  transform: rotate(0deg);
  transition-delay: 0.24s;
}
.team-box .submenu li:nth-child(3) {
  transform: rotateX(135deg);
}
.team-box:hover .submenu li:nth-child(4) {
  opacity: 1;
  top: -200px;
  transform: rotate(0deg);
  transition-delay: 0.32s;
}
.team-box .submenu li:nth-child(4) {
  transform: rotateX(180deg);
}
.team-box .submenu li {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  height: 48px;
  width: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submenu li:hover {
  background: #ff2424;
}
.submenu li:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(95deg) brightness(105%) contrast(101%);
}
/*-----------------------[ 15.Section Ten CSS ]------------------------*/
.section-ten {
  padding-bottom: 64px;
}
.blog-sec-row {
  margin-top: 60px;
}
.blog-image-container {
  position: relative;
  overflow: hidden;
}
.blog-img {
  width: 100%;
}
.overlay-blog {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  transition: all 2s ease-in-out;
}
.blog-image-container:hover .overlay-blog {
  background: linear-gradient(
    180deg,
    rgba(255, 36, 36, 0) 0%,
    rgba(255, 36, 36, 0.9) 100%
  );
}
.text-overly-box {
  position: absolute;
  bottom: 0;
  padding: 30px;
  width: 100%;
}
.overlay-text {
  color: var(--5, #fff);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 15px;
}
.hr-line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  mix-blend-mode: soft-light;
}
.plum-text-blog {
  color: var(--5, #fff);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
/*-----------------------[ 16.Footer Section CSS ]------------------------*/
footer {
  background: #000000;
  padding: 100px 0 60px 0;
}
.logo-sec-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--12, #f5f6f7);
  margin-top: -170px;
}
.footer-logo-main {
  background: #1228e1;
  padding: 30px;
}
.morbi {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.useful-link-text {
  color: #ff2424;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.usefulLinks-List {
  padding-left: 0;
}
.usefulLinks-List li {
  padding: 10px 0;
}
.usefulLinks-List li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.usefulLinks-List li a:hover {
  color: #ff2424;
}
.footer-icons-main {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
}
.footer-icons-main:hover {
  background: #ff2424;
  border-radius: 50px 0 50px 50px;
}
.footer-icons-main img {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(62deg) brightness(107%) contrast(100%);
}
.footer-media-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.copyright-main {
  padding: 15px 0;
  background: var(--4, #222);
}
.rights-reserved h2,
.rights-reserved a {
  color: var(--5, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
/*-----------------------[ 17.Bottom top button CSS ]------------------------*/
.bottom-top-button {
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 200;
  background: transparent;
  cursor: pointer;
}
.bottom-top-button .water-drop {
  width: 60px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(95%) saturate(7495%)
    hue-rotate(243deg) brightness(87%) contrast(103%);
  position: relative;
}
.arrow-drop {
  position: absolute;
  top: 34px;
  right: 12px;
  width: 35px;
}
/*-----------------------[ 18.About Page CSS ]------------------------*/
#about-bg {
  background-image: linear-gradient(
      91deg,
      rgba(234, 233, 229, 1) 40.86%,
      rgba(234, 233, 229, 0) 50%
    ),
    url(../images/about-page/page-header-img.jpg);
}
.page-img-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
}
.img-header-text {
  color: #000;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}
.breadcrumb-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
.breadcrumb-group a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
#about-section-five {
  margin-top: 100px;
}
#about-section-seven {
  padding: 100px 0;
}
#about-testimonial {
  padding-top: 64px;
}
#about-section-nine {
  padding-top: 100px;
}
/*-----------------------[ 19.Team Page CSS ]------------------------*/
.team-page-row {
  gap: 24px 0;
}
.Singale-team-img {
  max-width: 100%;
}
.feugiat {
  padding-top: 20px;
}
.contact-team-main {
  padding: 30px 0 40px;
}
.contact-team-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-team-person a {
  max-width: 300px;
  width: 100%;
}
.contact-team-person h2 {
  max-width: 110px;
  width: 100%;
}
.contact-team-person h2,
.contact-team-person p {
  color: var(--3, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.contact-team-person p {
  color: var(--4, #222);
  font-weight: 400;
}
.highQulity {
  color: var(--3, #000);
  font-size: 35px;
  font-weight: 600;
  line-height: 36px;
}
.single-team-page-row2 {
  margin-top: 70px;
}
.progress-bar {
  margin: 20px 0 10px;
  overflow: hidden;
  text-align: start;
}
.progress-title-holder {
  padding-bottom: 7px;
  position: relative;
}
.progress-title {
  color: var(--3, #000);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.progress-number-wrapper {
  width: 100%;
  z-index: 10;
}
.progress-number-mark {
  margin-bottom: 4px;
  position: absolute;
  bottom: 0;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.progress-number-wrapper,
.progress-number-mark {
  color: #ff2424;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.progress-content-outter {
  height: 4px;
  border-radius: 2px;
  background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
  height: 4px;
  border-radius: 2px;
  background-color: #ff2424;
  width: 0%;
}
.experti-list {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
}
.experti-list-ul li {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
}
.experti-list-ul li::before {
  content: url('../images/svg/rosette-check.svg');
  position: relative;
  top: 4px;
}
/*-----------------------[ 20.Pricing Page CSS ]------------------------*/
.tabs-btn {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.tabs-btn a {
  display: inline-block;
  background-color: #1228e1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  max-width: 132px;
  width: 100%;
  padding: 18px 0;
  text-align: center;
}
.monthly {
  border-radius: 30px 0 0 30px;
}
.yearly {
  border-radius: 0 30px 30px 0;
}
.tabContainer {
  width: 100%;
  position: relative;
}
.Tabcondent {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
  transform: translateY(20px);
}
.tabs-btn a.active {
  background-color: #ff2424;
  color: #ffffff;
}
.Tabcondent.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}
.plan-header {
  background: #fff;
  padding: 30px 30px 40px;
  border-top: 2px solid rgba(168, 169, 173, 0.3);
  border-left: 2px solid rgba(168, 169, 173, 0.3);
  border-right: 2px solid rgba(168, 169, 173, 0.3);
}
.plan-body {
  background: #1228e1;
  padding: 30px;
  position: relative;
}
.plan-text {
  color: #ff2424;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.plan-price {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
.plan-price sub {
  color: #222;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
.plan-body ul li {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  display: flex;
  gap: 10px;
}
.plan-body ul li:before {
  content: url('../images/svg/rosette-check-white.svg');
  position: relative;
  top: 7px;
}
.shape1 {
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(13%) sepia(97%) saturate(5078%)
    hue-rotate(240deg) brightness(85%) contrast(110%);
}
.pricing-btn {
  margin-top: 20px;
}
.get-started-btn {
  width: 100%;
  text-align: center;
  border: 2px solid transparent;
}
.get-started-btn:hover {
  border: 2px solid #ffff;
}
/*-----------------------[ 21.Get Quote Page CSS ]------------------------*/
#get-quote-blog {
  padding-top: 100px;
}
#get-qoute-working-process {
  padding-top: 100px;
}
/*-----------------------[ 22.Client Page CSS ]------------------------*/
.clients-main img {
  max-width: 100%;
}
.clients-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 54px;
  margin-top: 60px;
}
/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.testimonial-page-row {
  gap: 24px 0;
}
.pulm-multi {
  max-width: 100%;
}
#accordionExample {
  margin-top: 40px;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.accordion-button:focus {
  box-shadow: none;
}
#accordionExample .accordion-button {
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  background: rgba(168, 169, 173, 0.1);
  margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
  color: #ff2424;
  background-color: rgba(255, 36, 36, 0.1) !important;
}
#accordionExample.accordion {
  --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
  padding: 0 0 30px 0;
  color: var(--4, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.accordion-button::after {
  background-image: url('../images/svg/down-arrow-black.svg');
  --bs-accordion-btn-icon-width: 2rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../images/svg/down-arrow-red.svg');
}
/*-----------------------[ 24.Error Page CSS ]------------------------*/
.error-pge-img-main {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.error-pge-img {
  max-width: 100%;
  animation-name: hanging;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  transform-origin: center top;
  margin-top: -33px;
}
@keyframes hanging {
  0% {
    transform: rotate(7deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
/*-----------------------[ 25.Coming Soon Page CSS ]------------------------*/
.coming-soon-body {
  width: 100%;
  display: block;
  overflow: hidden;
  position: fixed;
  left: 0px;
  right: 0px;
}
#coming-soon-header {
  position: fixed;
  top: 0;
  background: transparent;
  border-bottom: none;
}
#coming-soon-header .media-icon-bg {
  background-color: #ffffff;
}
#coming-soon-header .media-icon-bg:hover {
  background-color: #ff2424;
}
.coming-soon {
  width: 100%;
  display: block;
  overflow: hidden;
  position: fixed;
  left: 0px;
  right: 0px;
}
.coming-soon-sec {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url('../images/coming-soon/coming-soon-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#coming-soon-header {
  background: transparent;
  border-bottom: none;
  position: fixed;
  width: 100%;
  top: 10px;
}
.coming-soon-img1 {
  max-width: 100%;
  -webkit-box-reflect: below -75px linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.count-down {
  display: flex;
  gap: 55px;
  padding: 10px 0;
}
.count-down .box {
  padding: 5px;
  text-align: center;
}
.count-down .box h3 {
  color: var(--5, #fff);
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
}
.count-down .box span {
  color: var(--8, #a8a9ad);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.coming-soon-box {
  padding: 10px 20px;
  color: var(--5, #fff);
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  background: var(--6, #3447e9);
  max-width: 243px;
  margin: 40px 0;
}
.our-website {
  color: var(--5, #fff);
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 50px;
}
.notified {
  color: var(--5, #fff);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.coming-soon-subscribe {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-top: 20px;
}
.coming-soon-subscribe input {
  width: 100%;
  max-width: 330px;
  height: 54px;
  border: none;
  background: #fff;
  font-size: 18px;
  color: #222222;
  padding: 10px 20px;
  outline: none;
}
.coming-soon-subscribe a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ff2424;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.coming-soon-subscribe a:hover {
  background: #1228e1;
}
.coming-soon-subscribe-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.count-down-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#rights-reserved h2,
#rights-reserved a {
  color: #ffff;
}
#rights-reserved {
  position: absolute;
  bottom: 30px;
}
/*-----------------------[ 26.Services Page CSS ]------------------------*/
.services-page-row {
  gap: 100px 0;
}
.handyman-text {
  color: var(--3, #000);
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  padding-top: 20px;
}
.fusce {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
}
.plumbing-services-img2 {
  margin: 40px 0;
  max-width: 100%;
}
.interdum {
  color: var(--3, #000);
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.single-services-list-fetur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0 30px;
}
.plumbing-grid img {
  max-width: 100%;
  padding: 0 12px;
}
.plumbing-grid .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.plumbing-grid li button {
  font-size: 0px;
  color: #a8a9ad;
  width: 10px;
  height: 10px;
  background: #a8a9ad;
  margin: 5px;
  border-radius: 50%;
}
.plumbing-grid .slick-active button {
  background: #ff2424 !important;
  width: 30px !important;
  height: 10px !important;
  border-radius: 5px;
}
.single-services-black-box {
  background: #ff2424;
  padding: 30px;
}
.single-services-black-box h3 {
  color: var(--5, #fff);
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
.single-services-sub-box {
  background-image: linear-gradient(
      rgba(18, 40, 225, 0.8) 0%,
      rgba(18, 40, 225, 0.8) 100%
    ),
    url(../images/services-page/other-services-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-services-sub-box ul {
  padding: 30px;
}
.single-services-sub-box ul li {
  padding: 15px 0;
  border-bottom: 2px solid #f8f9fa3b;
}
.single-services-sub-box ul li a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-services-sub-box ul li a:hover {
  color: #ff2424;
}
.current-page-active {
  color: #ff2424 !important;
}
.side-bar-img {
  width: 100%;
}
.ad-box {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.ad-box::before {
  content: '';
  width: 114%;
  height: 50px;
  background: #ff2424;
  position: absolute;
  top: 47%;
  right: -32px;
  transform: rotate(156deg);
}
.ad-details {
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url('../images/services-page/mic.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
  margin-top: -175px;
  text-align: center;
}
.logo-ad-details {
  position: absolute;
  top: 10px;
  right: 10px;
}
.frist-services {
  color: var(--5, #fff);
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  padding: 115px 0 30px;
}
.documents-box {
  background: rgba(168, 169, 173, 0.1);
  padding: 20px;
  margin-top: 40px;
}
.brochure-main {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  margin-bottom: 20px;
}
.brochure {
  width: 60px;
  height: 60px;
  background: #ff2424;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brochure-main h3 {
  color: var(--3, #000);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.brochure-main h3:hover {
  color: #ff2424;
}
/*-----------------------[ 27.Project Page 2 CSS ]------------------------*/
.project2-box-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.project2-box-main:hover .project2-page-content {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) rotateY(0deg);
}
.project2-page-img-main {
  position: relative;
}
.project2-page-img-main a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.project2-page-img-main img {
  width: 100%;
  object-fit: cover;
}
.project2-page-content {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  bottom: 10px;
  left: 10px;
  z-index: 1;
  padding: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 10px;
  overflow: hidden;
  transform: perspective(600px) rotateY(20deg);
}
.project2-page-content:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(18, 40, 225, 0.9);
  opacity: 0.9;
  z-index: -1;
}
.project2-page-title,
.project2-page-title a {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}
.project2-page-info .tag {
  font-size: 18px;
  color: #ffffff;
}
.project2-page-btn {
  text-align: right;
}
.circle-btn {
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ff2424;
}
.project-page-row {
  gap: 24px 0;
}
/*-----------------------[ 28.Project Page 3 CSS ]------------------------*/
.project3-box-main {
  padding: 30px;
  background-color: rgba(128, 128, 128, 0.06);
  transition: all 0.3s ease-in-out;
}
.project3-box-main:hover {
  border-radius: 30px;
}
.project3-box-img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.project3-box-main:hover .project3-box-img {
  border-radius: 30px;
}
.project3-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  color: #1228e1;
  padding-top: 20px;
}
.project3-box-main:hover .project3-text {
  color: #ff2424;
}
.project3-text-sub {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #000000;
}
/*-----------------------[ 29.Single Project Page CSS ]------------------------*/
.build {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  padding-bottom: 20px;
}
.nunc-text {
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
.single-project-img {
  margin: 30px 0 20px;
  max-width: 100%;
}
.sed {
  color: #000000;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  padding-bottom: 15px;
}
.liquam-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.liquam-grid-main img {
  width: 100%;
}
.diamond-nextbtn-head {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid rgba(168, 169, 173, 0.2);
  border-bottom: 2px solid rgba(168, 169, 173, 0.2);
  margin-top: 50px;
}
.diamond-next-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  cursor: pointer;
}
.diamond-next-btn h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.diamond-next-btn h3:hover {
  color: #1228e1;
}
.diamond-btn {
  background: #ff2424;
}
.diamond-next-btn:hover .diamond-btn {
  background: #1228e1;
}
.send-inquiry-form {
  padding: 30px;
  background: rgba(168, 169, 173, 0.1);
}
.project-info-text {
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 30px;
  text-align: center;
}
.project-info-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #9090903b;
  padding: 20px 0;
}
.project-info-main p:nth-child(1) {
  color: #222222;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.project-info-main p:nth-child(2) {
  color: #ff2424;
  font-size: 20px;
}
.single-project-media {
  margin-top: 30px;
  justify-content: center;
}
.send-inquiry-form {
  position: sticky;
  top: 180px;
}
.single-project-img video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/*-----------------------[ 30.Blog Page CSS ]------------------------*/
.blog-page1-row {
  gap: 24px 0;
}
.search-box-main {
  padding: 20px;
  background: rgba(168, 169, 173, 0.1);
}
.search-input {
  position: relative;
}
.search-input input {
  width: 100%;
  height: 60px;
  outline: none;
  border: none;
  padding: 18px 15px;
  color: var(--4, #222);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.search-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
#recent-post-box {
  margin-bottom: 20px;
  margin-top: 40px;
  background: #000000;
}
.recent-post-main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.recent-post-text-main p {
  color: var(--4, #222);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.recent-post-text-main h2 {
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}
.recent-post-text-main h2:hover {
  color: #ff2424;
}
/*-----------------------[ 31.Single Blog Page CSS ]------------------------*/
.single-blog-img1 {
  width: 100%;
}
.tag-date {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0 20px;
  border-bottom: 2px solid #000;
}
.tag-date-sub {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tag-date-sub p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.qoute-box {
  padding: 40px;
  background: rgba(168, 169, 173, 0.15);
  margin: 35px 0;
  position: relative;
}
.qoute-box h2 {
  color: var(--3, #000);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  font-style: italic;
}
.line_client {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.line {
  border-top: 2px solid #ff2424;
  width: 60px;
}
.jordon {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  padding-left: 10px;
}
#single-blog-slider {
  margin-top: 30px;
}
.interdum {
  color: var(--3, #000);
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.leave-replyfrom input {
  height: 60px;
  padding: 10px 15px;
  color: #000;
}
.input-main-blog input::placeholder {
  color: #000;
}
.single-blog3-row {
  justify-content: center;
}
/*-----------------------[ 32.Contact Page CSS ]------------------------*/
.map-iframe {
  width: 100%;
  height: 100%;
}
#contact-page-form {
  padding: 30px;
}
.search-input {
  position: relative;
}
#contact-page-form input {
  margin-bottom: 20px;
}
textarea {
  width: 100%;
  height: 120px;
  padding: 15px 20px;
  color: var(--4, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  border: none;
  outline: none;
  margin-bottom: 30px;
  resize: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* === Servicios cards iguales flotando sobre imagen === */
.section-four-row {
  align-items: stretch;
}

.services-box-col {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* Imagen fija y uniforme */
.service-box-img {
  width: 100%;
  height: 220px;         /* ajustá la altura si querés más/menos imagen */
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Caja blanca flotante */
.services-hov-box {
  position: absolute;       /* hace que se superponga sobre la foto */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  min-height: 200px;     /* asegura espacio para título + texto + botón */
  
  background: #fff;
  border: 1px solid #ff2424;
  border-radius: 10px;

  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  z-index: 2;
}

/* Títulos y textos completos */
.plumbing-repair {
  font-size: 18px;
  font-weight: 600;
  color: #1228e1;
  margin-bottom: 10px;
}
.Porttitor {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

/* Botón siempre al pie */
.services-hov-button {
  margin-top: auto;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .service-box-img { height: 180px; }
  .services-hov-box { bottom: -30px; min-height: 180px; }
}
@media (max-width: 576px) {
  .service-box-img { height: 250px; }
  .services-hov-box { width: calc(100% - 20px); padding: 14px; bottom: -20px; }
}
