/* 

CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/

/*  General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  --heading-font: 'komet-sc', sans-serif;
  --heading-font-weight: 700;
  --heading-color: #313131;
  --heading-line-height: 1.24;

  --accent-color: #eb008a;
  --linear-gradient: linear-gradient(90deg, #0071bc 0%, #eb008a 100%);


  /* bootstrap */
  --bs-body-font-family: 'Roboto', sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6875rem;
  --bs-body-color: #777777;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8C907E;
  --bs-secondary: #6c757d;
  --bs-black: #313131;
  --bs-light: #FFFFFF;
  --bs-dark: #212529;
  --bs-gray: #D9D9D9;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;
}

h1,

.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}
h1, .h1 {
  font-size: calc(1.875rem + 1.8vw);
  letter-spacing: 0.29rem;
	font-weight: 900;
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
h2, .h2 {
  font-size: calc(1.425rem + 0.9vw);
	letter-spacing: 0.19rem;
	font-weight: 900;
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.8rem;
  }
}
h6 {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.19rem;
}

.heading-color {
  color: var(--accent-color);
}

a {
  text-decoration: none;
}


/* bootstrap button style  */

.btn {
  --bs-btn-padding-x: 1.88em;
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-font-family: var(--heading-font);
  --bs-btn-font-size: 1.1875rem;
  --bs-btn-font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff;
}

.btn-primary {
	background-color: #eb008a;
	border-color:  #fff;
	border-style: solid;
	border-width: 1px;
	border-radius: 3px;
  background-size: 200% auto;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
}

.btn-primary:hover {
  background-position: right center;
	background-color: #fff;
	color: #000;
}

.btn-secondary {
	border-color: #fff;
	border-width: 1px;
	border-style: solid;
	background-color: #000;
  background-size: 200% auto;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
	border-radius: 3px;
}

.btn-secondary:hover {
  background-position: right center;
	color: #000;
	background-color: #fff;
}
/*---- navigation section style start ----*/

.navbar {
  font-family: var(--heading-font);
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: var(--bs-black);
  --bs-navbar-hover-color: var(--accent-color);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: var(--accent-color);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
}

nav.navbar {
  z-index: 999999;
}


/* dropdown style  */

.dropdown-menu {
  --bs-dropdown-border-radius: 0px;
	--bs-dropdown-border-width: 0px;
}


.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--bs-gray);
  color: var(--bs-black);
}

.dropdown-item {
  font-weight: 600;
  color: var(--bs-black);
}
.phone-no {
	font-size: 1.2rem;
}
@media only screen and (max-width: 1200px) {
  a.phone-no {
    display: none;
  }
}

@media only screen and (max-width: 1800px) {
  .pattern-overlay {
    display: none;
  }
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: var(--accent-color) !important;
}



/*---- hero section style start ----*/

.pattern-overlay.pattern-right {
  top: 30%;
  right: 0px;
}

form.hero-form {
  background: rgba(255, 255, 255, 0.90);
}

.form-label {
  font-size: 1.1rem;
  color: var(--bs-black);
  text-transform: uppercase;
	font-weight: 400;
}

.form-control {
  /* border: none; */
  border-radius: 0;
}
.form-control:disabled {
	background-color: #fff;
}

/*---- partner section style start ----*/

img.logo-image {
  filter: saturate(0);
  opacity: 50%;
  transition: ease-in 0.2s;
}

img.logo-image:hover {
  filter: saturate(100%);
  opacity: 1;
}



/*---- testimonial section style start ----*/

section#testimonial {
  background: linear-gradient(90deg, #0071bc 0%, #eb008a 100%);
}

.testimonial-pattern-overlay.pattern-right {
  top: 35%;
  right: 0px;
}

.testimonial-pattern-overlay.pattern-left {
  top: 20%;
  left: 0px;
}

.testimonial-content {
  background: #ffffff;
}

iconify-icon.rate {
  color: #FFD700;
}

/* swiper overide 
--------------------------------------------------------------*/

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, var(--bs-light));
}


/*---- services section style start ----*/

.services-components {
  transition: all 0.5s ease-in;
	background-color: #fff;
}
#services {
	background-color: #f5f5f7;
}
iconify-icon.services-icon {
  font-size: 80px;
  color: var(--accent-color);
  transition: all 0.5s ease-in;
}

.services-heading {
  transition: all 0.5s ease-in;
}

.service-btn {
  transition: all 0.5s ease-in;

}

/* .services-components:hover {
  background: var(--accent-color);
  color: var(--bs-light);
}

.services-components:hover .services-heading,
.services-components:hover iconify-icon.services-icon {
  color: var(--bs-light);
}

.services-components:hover .service-btn {
  background: var(--bs-light);
  color: var(--bs-black);
  transition: all 0.5s ease-in;
} */


/*---- projects section style start ----*/

section#projects {
  background: var(--accent-color);
}

button.filter-button {
  font-family: var(--heading-font);
  border: 1px solid #FFF;
  background: transparent;
  color: var(--bs-light);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.active {
  color: var(--bs-dark);
  background: var(--bs-light);
}

button.filter-button:hover {
  color: var(--bs-dark);
  background: var(--bs-light);
}


.item .description {
  width: 90%;
  height: 90%;
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 5;
  opacity: 0;
  background: rgba(255, 255, 255, 0.90);
  transition: all 0.5s ease-in;
}

.item:hover .description {
  opacity: 1;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
  .item .description {
    text-align: start;
  }

  .project-date,
  .project-heading {
    display: none;
  }
}

@media only screen and (min-width:770px) and (max-width: 1200px) {
  .item .description {
    left: -5px;
    background: none;
  }
}



/*---- process section style start ----*/

.process-components {
  border-bottom: 2px dotted var(--accent-color);
  /* border-top: 2px solid var(--accent-color); */
  transition: ease-in 0.3s;
}

img.arrow {
  opacity: 0;
}

iconify-icon.process-icon {
  color: var(--accent-color);
  font-size: 110px;
}



/*---- faq section style start ----*/

/* accordian style override  */

.accordion {
  --bs-accordion-border-color: var(--accent-color);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23eb008a&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23eb008a&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-header {
  margin-bottom: 0;
  border-top: 1px solid var(--accent-color);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: var(--bs-light);
  box-shadow: none;
}


/*---- cta section style start ----*/

section#cta {
  background: var(--linear-gradient);
}

.cta-button {
  background: var(--bs-light);
  color: var(--bs-black);
}

.cta-button:hover,
.cta-button:active,
.cta-button:focus {
  background: var(--bs-light);
  color: var(--bs-black);
}

@media only screen and (max-width: 770px) {
  .cta-pattern-overlay {
    display: none;
  }
}


/*---- footer section style start ----*/

iconify-icon.contact-icon {
  font-size: 50px;
}

iconify-icon.contact-icon-top {
  font-size: 24px;
}

iconify-icon.social-link-icon {
  color: rgba(0, 113, 188, 0.60);
  font-size: 24px;
}

iconify-icon.social-link-icon.active,
iconify-icon.social-link-icon:hover {
  color: #eb008a;
}


/*--------------------------------------------------------------
About page style
--------------------------------------------------------------*/

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
}


/*--------------------------------------------------------------
  Blog page style
  --------------------------------------------------------------*/

.active>.page-link,
.page-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}


.form-control:focus {
  border-color: var(--bs-black);
  box-shadow: none;
}


/*--------------------------------------------------------------
  Price page style
  --------------------------------------------------------------*/


.plan-post {
  border: 1px solid var(--accent-color);
}

span.price-tick {
  color: var(--accent-color);
}

.price-option {
  height: 320px;
}

.recommend-price {
  background: #eb008a;
}

/*--------------------------------------------------------------
  Project page style
  --------------------------------------------------------------*/

button.filter-button.gallery-btn {
  letter-spacing: 0.075rem;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-black);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.gallery-btn.active {
  color: var(--bs-light);
  background: var(--accent-color);
}

button.filter-button.gallery-btn:hover {
  color: var(--bs-light);
  background: var(--accent-color);
}



/*--------------------------------------------------------------
reviews section style start
--------------------------------------------------------------*/

.reviews-components {
  border: 2px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--accent-color);
}

.rate {
  color: var(--accent-color);
}

.bgimage {
  width:100%;
  background: url('images/banner-img.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size:cover;
  background-attachment: scroll;
}

.bgimage::before{
  content: "";
  position: absolute;
  inset: 0;                 /* top:0 right:0 bottom:0 left:0 */
  background: rgba(0,0,0,0.5); /* darkness level */
  z-index: 1;
}

.bgimage-window-cleaning {
  width:100%;
  background: url('images/banner-img-window-cleaning.png');
  background-repeat: no-repeat;
  background-position: right 15% bottom 0%;
  background-size:cover;
  background-attachment: scroll;
}
#hero .container{
  position: relative;
  z-index: 2;
}

.bgimage-gutter-cleaning {
  width:100%;
  background: url('images/banner-img-gutter-cleaning.png');
  background-repeat: no-repeat;
  background-position: right 63% bottom 100%;
  background-size:cover;
  background-attachment: scroll;
}

.bgimage-conservatory-cleaning {
  width:100%;
  background: url('images/banner-img-conservatory-cleaning.jpg');
  background-repeat: no-repeat;
  background-position: right 63% bottom 100%;
  background-size:cover;
  background-attachment: scroll;
}

.bgimage-fascia-cleaning {
  width:100%;
  background: url('images/banner-img-fascia-cleaning.png');
  background-repeat: no-repeat;
  background-position: right 63% bottom 100%;
  background-size:cover;
  background-attachment: scroll;
}
section#projects {
  background: linear-gradient(90deg, #002561 0%, #0071bc 100%);
}

.copyright {
	font-size: 0.8rem;
}
.footer-copyright {
	border-top: 1px solid #fff;
}
.projects-icon-text {
	font-size: 2rem;
	font-weight: 700;
}
.projects-h4-text {
	font-weight: 200;
	text-transform: lowercase;
}
.aqua-color {
	color:#eb008a;
}
.aqua-color:hover {
	color:#eb008a;
}
.aqua-color-background {
  background: rgba(0, 174, 239, 0.80);
}
.background-color-darker {
  background: rgba(0, 174, 239, 0.80);
	
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>

.reviewer {
	display: flex !important;
    flex-wrap: nowrap !important;
}
.review-avitar {
    width: 44px;
    height: 44px;
	padding-top: 5px;
    border-radius: 50%;
    overflow: hidden;
	text-align: center;
	font-size: 24px;
	color: #fff;
	margin-right: 15px;
	margin-bottom: 15px;
}
.background-1 {
	background-color: #5c6bc0;
}
.background-2 {
	background-color: #ab47bc;
}
.background-3 {
	background-color: #01579b;
}
.background-4 {
	background-color: #455a64;
}
.background-5 {
	background-color: #689f38;
}
.background-6 {
	background-color: #8d6e63;
}
.background-7 {
	background-color: #33691e;
}
.background-8 {
	background-color: #78909c;
}
.background-9 {
	background-color: #f4511e;
}
.background-10 {
	background-color: #0097a7;
}
.background-11 {
	background-color: #512da8;
}
.background-12 {
	background-color: #0288d1;
}
.background-trustatrader {
	background-color: #308bb4;
}
.review-name p {
	font-size: 1.2rem;
	font-style: italic;
}
.review-date {
	margin-left: 0.5rem;
}
.gold {
	color: rgb(252, 191, 2) !important;
}
.grey {
	color: #DDDDDD !important;
}
.star-percent {
	clip-path: inset(0px 50% 0px 0px);
}
.review-rating {
	font-size: 1.3rem;
}
.review-rating img {
	padding-right:10px;
	width: 100px;
}
.review-posted {
	font-size: 0.7rem;
	margin-bottom: 0rem;
}
.review-on p {
	margin-right: 5rem;
}
.review-on a {
    color: rgb(25, 123, 255);
	
}

.alert-success {
  --bs-alert-color: #000;
  --bs-alert-bg: #fff;
  --bs-alert-border-color: #fff;
}
.bg-window {
  background: url("images/tile-window-cleaning.png") center center / cover no-repeat;
  color: #fff;
  position: relative;
}

.bg-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* dark overlay */
}

.bg-window * {
  position: relative;
  z-index: 2;
}

.bg-gutter {
  background: url("images/tile-gutter-cleaning.png") center center / cover no-repeat;
  color: #fff;
  position: relative;
}

.bg-gutter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* dark overlay */
}

.bg-gutter * {
  position: relative;
  z-index: 2;
}

.bg-conservatory {
  background: url("images/tile-conservatory-cleaning.png") center center / cover no-repeat;
  color: #fff;
  position: relative;
}

.bg-conservatory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* dark overlay */
}

.bg-conservatory * {
  position: relative;
  z-index: 2;
}

.bg-soffits {
  background: url("images/tile-soffits-cleaning.png") center center / cover no-repeat;
  color: #fff;
  position: relative;
}

.bg-soffits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* dark overlay */
}

.bg-soffits * {
  position: relative;
  z-index: 2;
}

.call-now a {
  display: flex;
  align-items: center;   /* vertically centre icon + text */
  white-space: nowrap;   /* stops text wrapping */
  color: #fff;
  text-decoration: none;
}

.call-now {
  display: flex;
  justify-content: center; /* optional: centre in black bar */
  padding: 8px 0;
}

@media only screen and (min-width: 575px) {
  /* For desktop: */
	.call-now {display: none;}
}

.bg-pink {
	background-color: #EB008A;
}

.bg-black {
	background-color: #000;
}
.responsive-logo{
  height: 43px;     /* your normal size */
  width: auto;
  transition: 0.3s ease; /* nice smooth shrink */
}
@media (max-width: 400px){
  .responsive-logo{
    height: 30px;   /* smaller logo on small phones */
  }
}
.background-overlay {
	opacity: 0.85;
	background-color: #a4add3;
	
}
.hero-button-headline {
	font-weight: 900;
  font-size: 1.4rem;
}
	
.hero-button-text {
	padding-bottom: 10px;
	font-weight: 100;
	
}
.hero-p p {
	margin-bottom: 0; !important;
}
#hero .col-md-12{
  text-align: center;
}
.hero-p{
  justify-content: center;   /* centres the two columns */
  text-align: center;        /* centres text inside columns */
}
.hero-p .col-md-6{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-white-70 {
	color: #DADADA;
	
}
.min-vh-70 {
	min-height: 70svh;
}
#hero{
  display: flex;
  align-items: center;   /* vertical centring */
}
#hero .container{
  display: flex;
  align-items: center;
  height: 100%;
}
#hero .container,
#hero .row{
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@media (max-width:768px){
  #hero{
    align-items: flex-start;
    padding-top: 30px;
  }
}
.hero-tagline {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeMoveDown 1s ease-out forwards;
  animation-delay: 0.05s; /* delay on page load */
}

@keyframes fadeMoveDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  opacity: 0;
  transform: translateY(25px); /* start slightly lower */
  animation: fadeMoveUp 1s ease-out forwards;
  animation-delay: 0.15s; /* your requested delay */
}

@keyframes fadeMoveUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-desc {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.25s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-cta {
  opacity: 0;
  transform: scale(0.85);
  animation: zoomFadeIn 0.8s ease-out forwards;
  animation-delay: 0.45s;
}

@keyframes zoomFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}.hero-cta-urgent {
  animation: pulseUrgent 0.8s ease-in-out 1.75s 1;
}

/* subtle pulse */
@keyframes pulseUrgent {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}
/* Shake every 5 seconds */
.cta-shake {
  display: inline-flex;
  align-items: center;
  animation: shakeX 5s infinite;
}

/* Horizontal shake keyframes */
@keyframes shakeX {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-4px); }
  94% { transform: translateX(4px); }
  96% { transform: translateX(-3px); }
  98% { transform: translateX(3px); }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

/* ===== MOBILE TRUST TICKER ===== */

.trust-ticker{
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 28px;
}

/* All items stacked on top of each other */
.trust-ticker__item{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;

  /* Start off screen right */
  transform: translateX(120vw);
}

.trust-ticker__item:nth-child(1){
  animation: trustTicker 10.5s linear infinite;
  animation-delay: -0.5s; /* starts centred */
}

.trust-ticker__item:nth-child(2){
  animation: trustTicker 10.5s linear infinite;
  animation-delay: 3.0s;  /* was 3.5s */
}

.trust-ticker__item:nth-child(3){
  animation: trustTicker 10.5s linear infinite;
  animation-delay: 6.5s;  /* was 7s */
}

@keyframes trustTicker{

  /* Slide IN from right (0.5s) */
  0%   { transform: translateX(120vw); }
  5%   { transform: translateX(0); }

  /* HOLD centre (3 seconds) */
  33%  { transform: translateX(0); }

  /* Slide OUT left (0.5s) */
  38%  { transform: translateX(-120vw); }

  /* Stay hidden until next cycle */
  100% { transform: translateX(-120vw); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .trust-ticker__item{
    position: relative;
    transform: none !important;
    animation: none !important;
  }
}
.trust-strip {
	background-color: #000;
  font-size: calc(0.975rem + 0.90vw);
	font-weight: 700;
}
@media (min-width: 500px){
  .trust-strip {
  font-size: calc(1.375rem + 1.3vw);
  letter-spacing: 0.29rem;
	font-weight: 700;
  }
}
@media (min-width: 768px){
  .trust-strip {
  font-size: calc(1.0rem);
  letter-spacing: 0.29rem;
	font-weight: 600;
  }
}
@media (min-width: 992px){
  .trust-strip {
  font-size: calc(1.2rem);
  letter-spacing: 0.29rem;
	font-weight: 400;
  }
}
@media (min-width: 768px){
  .strap-icons {
	font-size: 1.9rem;
  }
}
@media (min-width: 992px){
  .strap-icons {
	font-size: 1rem;
  }
}
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/* external css: flickity.css */


.carousel-cell {
  width: 48%;
  margin-right: 20px;
  border-radius: 3px;
  counter-increment: carousel-cell;
}
@media (max-width: 767px){
  .carousel-cell { width: 94%;
  }
}

@media (min-width: 1200px){
  .carousel-cell { width: 32%;
  }
}
.review-stars {
  display: inline-flex;
  gap: 2px;
}

.review-stars iconify-icon {
  color: #FFD700;
  font-size: 25px;
}
.reviews-border {
	border: 1px #eb008a solid;
}
.services-icon iconify-icon {
	color: #eb008a;
	font-size: 80px;
}
.services-components {
    border-radius: 12px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0.9);
    opacity: 0;
}

/* When visible */
.services-components.in-view {
    transform: scale(1);
    opacity: 1;
}



.contact-form{overflow:hidden}
label {
  color: #666666;
  display:block;
  font-weight: 500;
  margin-bottom:5px;
  max-width: 100%;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-form textarea{
  border: 1px solid #bbb;
  border-radius: 4px;
  height: 168px;
  margin-bottom: 20px;
  padding: 6px 15px;
  resize: none;
  width: 100%;
}
.contact-form input{
  height: 36px;
  padding: 0 8px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 20px; 
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 5px;
}
/* Make the form columns equal height */
.contact-form .row {
  display: flex;
  align-items: stretch;
}
/* Make the contact form pop out with a shadow */
.contact-form {
  background: #ffffff;
	padding: 30px 30px 10px 30px;
	
	
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  position: relative;
  z-index: 5;
}
.contact-form-title {
	font-size: 1.2rem;
}
/* Ensure left column stretches, and message box fills the right column */
.contact-form .col-md-6 {
  display: flex;
  flex-direction: column;
}
/* Overlap the next section */
.contact-area {
  margin-bottom: -100px; /* adjust this to overlap more or less */
  position: relative;
  z-index: 10;
}
.contact-area-top {
  margin-top: -100px; /* adjust this to overlap more or less */
  position: relative;
  z-index: 10;
}
/*5. purchase-area */
.purchase-area{overflow:hidden}
.purchase-content{
  position:relative;
  z-index:99;  
}
/* Adjust spacing so purchase area moves up behind it */
.purchase-area {
  position: relative;
  z-index: 1;
}
.bg-img-1 {
    background: rgba(0, 0, 0, 0) url("images/car recovery background.png") repeat scroll center center / cover ;
}
.bg-img-2 {
    background: rgba(0, 0, 0, 0) url("images/huntingdon-car-recovery.png") repeat scroll center center / cover ;
}
/*5. purchase-area */
.purchase-area{overflow:hidden}
.purchase-content{
  position:relative;
  z-index:99;  
}
.purchase-content{}
.purchase-content > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin: auto auto 15px;
  width: 75%;
}
.bg-opacity{position:relative;}
.bg-opacity:before{
 position:absolute;
 height:100%;
 width:100%;
 content:"";
 left:0;
 top:0;
 opacity:0.5;
 background:#000; 
 z-index:0;
 pointer-events:none;

}
.bg-opacity > *{position:relative; z-index:1;}

.bg-opacitydark{position:relative;}
.bg-opacitydark:before{
 position:absolute;
 height:100%;
 width:100%;
 content:"";
 left:0;
 top:0;
 opacity:0.85;
 background:#000; 
 z-index:0;
 pointer-events:none;

}
.bg-opacitydark > *{position:relative; z-index:1;}
.pt-80 {
	padding-top: 100px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-80 {
	padding-bottom: 80px;
}
.pt-20 {
	padding-top: 20px;
}
.pt-50 {
		padding-top: 50px;
	}
@media (max-width: 991.98px) {
  .about-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.reveal-zoom {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  will-change: transform, opacity;
}

.reveal-zoom.in-view {
  transform: scale(1);
  opacity: 1;
}
#footer  {
	background-color: #000;
}
.footer-logo {
	max-width: 350px;
}

/* Hidden on desktop */
.wa-float {
  display: none;
}

/* Mobile only */
@media (max-width: 767.98px) {

  .wa-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2147483647;

    width: 56px;
    height: 56px;

    text-decoration: none;

    /* Start invisible for subtle entrance */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Show after load */
  .wa-float.wa-show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Shake animation */
  .wa-float.shake {
    animation: wa-shake 1.2s ease-in-out;
  }

  @keyframes wa-shake {
    0% { transform: translateY(0) rotate(0); }
    15% { transform: translateY(0) rotate(-12deg); }
    30% { transform: translateY(0) rotate(10deg); }
    45% { transform: translateY(0) rotate(-8deg); }
    60% { transform: translateY(0) rotate(6deg); }
    75% { transform: translateY(0) rotate(-4deg); }
    100% { transform: translateY(0) rotate(0); }
  }
}
<div class="carousel"
  data-flickity='{
    "wrapAround": true,
    "autoPlay": 4500,
    "pauseAutoPlayOnHover": true,
    "pageDots": false,
    "prevNextButtons": true,
    "cellAlign": "left",
    "contain": true,
    "groupCells": 3
  }'>

.flickity-prev-next-button {
  display: none;
}
.reviewinsert {
	background-color: #f5f5f7;
}