
html{
  -webkit-font-smoothing: antialiased!important;
	-moz-osx-font-smoothing: grayscale!important;
	-ms-font-smoothing: antialiased!important;
}
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Open Sans", sans-serif;

}

/* Colors */
:root {
  --color-default: #133348;
  --color-primary: #36AAA2;
  --color-primary-light: #7BED97;
  --color-secondary: #52565e;
  --color-bright: #f6f7f5;
  --color-hover: #72c4be;
  --color-heading: #206661;
}

.light-background {
  background-color: #f4f5fe;

}

:root{
  --bg-gradient-1: linear-gradient(90deg, rgba(16, 51, 49, 75%) 43%, rgba(16, 51, 49, 30%) 100%);
  --bg-gradient-2: linear-gradient(180deg, rgba(6, 51, 110, 2%) 0%, rgba(56, 92, 139, 3%) 100%);
  --bg-gradient-3: linear-gradient(180deg, rgba(6, 51, 110, 6%) 0%, rgba(56, 92, 139, 9%) 100%);
  --bg-gradient-4: linear-gradient(180deg, rgba(6, 51, 110, 80%) 80%, rgba(56, 92, 139, 9%) 100%);
}

/* Font-size */
:root {
  --heading1: 48px;
  --heading2: 36px;
  --heading3: 24px;
  --heading4: 22px;
  --text-desktop: 16px;
  --text-mobile: 12px;
}


/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
h5{
  font-size: 1.1rem;
  font-weight: 600;
}
.text-justify{
  text-align: justify;
}
p{
  font-size: 16px;
}

.subhead{
  color: var(--color-secondary);
}

.primary-text{
  color: var(--color-primary);
}

.bgg-primary{
  background-color: var(--color-primary);
  color: white;
  transition: background-color 0.3s ease;
  padding: 5px 15px;
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.flexx {
  display: flex;
  justify-content: center;
  align-items: center;
}
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}


.section-header h2, .section-head2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-heading);
}


@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-bright);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 15px 0;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 30px;
  }
  section{
    padding: 30px 0;
  }
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
    font-size: 18px;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
    
  }

  .navbar a,
  .navbar a:focus, .navlink {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    gap: 10px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.7s;
    border-radius: 10px;
  }
  .navlink-colored{
    border: 1px solid var(--color-primary);
  }

  .navlink-colored1{
    background-color: var(--color-primary);
    font-size: 18px;
    font-weight: 400;
    padding: 0 10px;
  }

  .navlink-colored:hover{
    background-color: var(--color-primary);
    color: white;
  }

  .navlink-colored1:hover{
    background-color: var(--color-primary-light);
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 9px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {

    color: var(--color-primary);
    transition: 0.1s;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

.only-mbl{
  display: none;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .only-mbl{
    display: block;
    z-index: 99999;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    transition: 0.7s;
    
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 1s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

.only-mbl-link a{
 color: var(--color-primary);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#page-title{
  font-weight: 700;
  color: var(--color-primary);
}
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 1s;
}

.hero .carousel-item::before {
  content: "";
  background: linear-gradient(90deg, rgba(16, 51, 49, 75%) 43%, rgba(16, 51, 49, 30%) 100%);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  top: 100px;
}

.hero .info h1 {
  color: white;
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 46px;
  
  position: relative;
}

.hero .info p {
  color: white;
  font-size: 20px;
}

.hero .icon{
  color: var(--color-primary);
}


.hero .info .btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s;
  margin: 10px;
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-hover);
}



.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}





@media (max-width: 768px) {
  .hero .info h1 {
    font-size: 26px;
  }
  .hero .info h2 {
    font-size: 30px;
  }


  .hero .info p {
    font-size: 18px;
  }
  .hero .info{
    align-items: center !important;
  }
  
 
  .hero .info .btn-get-started {
    display: block;
    padding: 7px 20px;
    border-radius: 20px;
    transition: 0.5s;
    color: #fff;
    border: 2px solid var(--color-primary);
    margin: 40px auto;
    max-width: 250px;
  }
}




/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started{
  position: relative;
}
.get-started .content {
  padding: 0;
}

.small-head{
  display: flex;
  text-transform: uppercase;
  align-items: center;
}


.small-head-line{
  align-items: center;
  display: flex;
  width: 40px;
  margin: 0;
  border-bottom: 3px solid var(--color-primary);
  color: var(--color-primary);
  opacity: 1;
}

.long-head-line{
  align-items: center;
  display: flex;
  justify-content: center;
  border-bottom: 3px solid var(--color-primary);
  color: var(--color-primary);
  opacity: 1;
}
.small-head-title{
  font-size: 12px !important;
  margin: 0;
  padding-left: 5px;
  font-weight: 600;
}

.get-started .content h3 {
  font-size: 28px;
  color: var(--color-default);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}


.get-started .content p {
  font-size: 16px;
}

.bi-check-circle-fill{
  color: var(--color-primary);
}
.service-form {
  background: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 575px) {
  .service-form {
    padding: 20px;
  }
}

.service-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 5px;
}

.service-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.service-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.service-form input,
.service-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
}

.service-form input:focus,
.service-form textarea:focus {
  border-color: var(--color-primary);
}

.service-form input {
  padding: 12px 15px;
}

.service-form textarea {
  padding: 12px 15px;
}

.service-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.service-form button[type=submit]:hover {
  background: var(--color-primary-light);
  background-color: rgba(54, 170, 162, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  
  height: 100%;
  border-radius: 10px;
  min-height: 380px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: all 0.5s ease;
}


.services .service-item-text{
  height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border-radius: 0 0 10px 10px;
    align-items: center;
}

.swiper-button-next,
    .swiper-button-prev {
      color: #000;
      height: 20px;
    }
    .swiper-pagination-fraction {
      color: #000;
    }

.service-item:hover{
  box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 10px;
  transform: translateY(-3px);
}

.service-call-icon{
  background-color: var(--color-primary);
  padding: 5px 13px;
}
 .service-item .icon>img{
  border-radius: 10px 10px 0 0;
}

.service-item h3 {
  color: var(--color-default);
  font-weight: 600;
  font-size: var(--heading4);
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 0;
  border-bottom: 3px solid #ebebed;
  transition: 0.7s;
}
.service-item:hover h3 {
  color: var(--color-primary);
}

.service-item p {
  line-height: 24px;
  font-size: 16px;
  
}

.service-item .readmore {
  color: white;
    font-weight: 600;
    background-color: var(--color-primary);
    width: fit-content;
    padding: 5px 15px;
  font-weight: 600;
}

.service-item:hover .icon:before {
  background: var(--color-primary);
}

.service-item:hover h3 {
  border-color: var(--color-primary);
}





/*--------------------------------------------------------------
# Procedure
--------------------------------------------------------------*/
/*
.procedure{
  background-image: url(../img/cleanify2.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
  position: relative;
}

.overlay{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, rgba(28, 25, 89, 0.90) 60%, rgba(28, 25, 89, 0) 100%);
}
*/

.procedure {
  color: #fff;
  background: url("../img/cleanify2.jpeg") top center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 14px;

}

/*
.procedure:before {
  content: "";
  background: linear-gradient(150deg, rgba(28, 25, 89, 0.80) 25%, rgba(28, 25, 89, 0.5) 100%);
  position: absolute;
  inset: 0;
}*/

.step-icon{
  height: 70px;
  width: 70px;
  border-radius: 35px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}


.step-item{
  background: var(--bg-gradient-2);
  transform: translateY(0);
  transition: all 0.5s ease;
  position: relative;
  border-radius: 10px;

}




.step-heading{
  width: fit-content;
  border-bottom: 3px solid var(--color-primary-light);
  transition: 0.3s;
  display: flex;
  justify-self: center;
}


#stepss{
  background: var(--bg-gradient-1);
  
  padding: 40px;
}
.step-arrow{
  color: var(--color-primary);
}
.step-item:hover{
  transform: translateY(-5px);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .step-icon{
    height: 70px;
    width: 70px;
    border-radius: 35px;
  }
  .step-item{
    border-radius: 15px;
  }
  #stepss{
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  font-size: 14px;
  padding: 50px 0 0 0;
  position: relative;
}

.footer:before {
  content: "";
  background: linear-gradient(150deg, rgba(19, 51, 72, 1) 25%, rgba(19, 51, 72, 0.9) 100%);
  position: absolute;
  inset: 0;
}

.footer-info-mbl{
  margin-top: 50px;
  color: white;
  width: 100%;
}

.footer-info-mbl h3{
  font-size: 20px;
  font-weight: 600;
}
.footer-contact-info{
  font-size: 12px;
}
.footer-info-mbl p{
  font-size: 16px;
}

.social-linkss a {
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 5px;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.social-linkss a:hover {
  background: white;
  color: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 2px;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .logo img {
  max-height: 40px;
  margin-right: 6px;
}







/* Blog */
.blog-item{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  transition: 0.6s;
}

.blog-item .icon img{
  border-radius: 10px 10px 0 0;
}

.blog-desc{
  color: #8892B0;
}

.blog-item:hover{
  box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
  transform: translateY(-7px);
}

.blog-title{
  line-height: 1.25;
}

.bg-color-primary{
  background-color: var(--color-primary);
}


/* Blog */
.blog-content p, li{
  text-align: justify;
}


/* More Blog */
.more-blog-image img{
  height: 80px;
  width: 100px;
}

.more-blog-title{
  font-weight: 600;
}

.more-blog-date{
  color: #565656;
  font-size: 12px;
  font-style: italic;
}

.more-blogs{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.more-blog-seperator{
  color: var(--color-primary);
}

.more-blog-title{
  font-size: 16px;
}

.blog-items-list {
  list-style-type: lower-alpha;
}








/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
.features{
  background: var(--bg-gradient-3);
}
.features .feature-item, .feature-item1 {
  background-color: white;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.feature-item i{
  color: var(--color-primary) !important;
}


.features .feature-item h4 {
  font-weight: 700;
  font-size: 20px;
}

.features .feature-item h4 a {
  color: var(--color-default);
  transition: ease-in-out 0.3s;
}

.features .feature-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features .feature-item:hover {
  transform: translateY(-5px);
}


.features .feature-item:hover h4 {
  color: var(--color-primary) !important;
}

.feature-box p{
  text-align: left;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats{
  background-color: var(--color-primary);
}

.stats i {
  background-color: var(--color-bright);
  color: var(--color-primary);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--color-bright);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}




/* Service Accordion */

.services-section .accordion-item {
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  
}

.services-section .accordion-button {
  padding: 10px;
  border-radius: 10px !important;
}

.services-section .accordion{
  display: flex;
  flex-direction: column;
  justify-content: start;
  
  height: 100%;
}

.accordion-body i{
  margin-right: 5px;
}


.services-section .accordion-collapse {
  border: 0;
}

.services-section .accordion-button {
  
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}


.services-section .accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
  color: white;
  border-bottom: 0;
  box-shadow: none;
  border-radius: 10px 10px 0 0 !important;
}

.services-section .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.services-section .accordion-body {
  padding: 10px 20px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}



/* Trusted Clients Section */
.clients-section{
  /*background: var(--bg-gradient-3)*/
}
.client-logo {
    max-width: 150px;
    max-height: 50px;
    /*filter: grayscale(100%);*/
    transition: 0.4s ease-in-out;
}
.abc{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}
.client-logo:hover {
 scale: 1.1;

}

/* Responsive adjustments */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
  .client-logo {
      max-width: 120px; /* Smaller logos on smaller screens */
      margin: 15px;
  }
  .abc{
    padding: 10px 0px;
}
}
.clients-section {
padding: 40px 0; /* Add padding to the section */
}






.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 15px;
  padding: 0px;
}

.industry-item {
  display: flex;
  align-items: center; /* Vertically center icon and title */
  gap: 10px;
  color: var(--color-secondary);
}

.industry-item i {
  font-size: 2rem;
}

.industry-title {
  margin: 0;
  font-weight: bold;
}



/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px !important;
  font-style: italic;
  letter-spacing: 0.5px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  
}

.faq .accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
 border-radius: 10px 10px 0 0 !important;
  color: white;
  box-shadow: none;
}


.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 10px 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 30px;
}

.testimonials{
  background: var(--bg-gradient-3);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  padding: 20px;
  height: 250px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
  position: relative;
  background: #fff;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #2c2b2b;
  font-style: italic;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 0;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-primary);
  margin: 0 1px;
  min-height: 50px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: 0px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: 0px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  text-align: justify;
  font-style: italic;
  margin: 10px auto 10px auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #d5d7da;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Call to action
--------------------------------------------------------------*/
.home-contact{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cto-button{
  background-color: var(--color-primary);
  color: var(--color-bright);
  border-radius: 10px;
  transition: all 0.4s;
}
.cto-button:hover{
  background-color: var(--color-primary-light);
  color: #322e2e;
}

.section-head2{
  font-size: 36px;
}

@media (max-width: 991px) {
  
  .section-head2{
    font-size: 26px !important;
  }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
  background: white;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.work-process .steps-item:hover {
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
  background: var(--color-primary);
  color: var(--color-bright);
}

.work-process .steps-item:hover .steps-image img {
  transform: scale(1.1);
}

.work-process .steps-image {
  position: relative;
  
}

.work-process .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-process .steps-content {
  position: relative;
  padding: 40px 15px 20px;
}

.work-process .steps-content .steps-number {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-bright);
  color: var(--color-primary);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--color-primary);
}

.work-process .steps-content h3 {
  font-size: 18px;
  font-weight: 700;
}

.work-process .steps-content p {
  font-size: 15px;
  margin-bottom: 10px;
}

.work-process .steps-features .feature-item {
  display: flex;
  align-items: start;
}

.work-process .steps-features .feature-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.work-process .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
  .work-process .steps-image {
    height: 240px;
  }

  .work-process .steps-content {
    padding: 35px 25px 25px;
  }

  .work-process .steps-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .work-process .steps-item {
    margin-bottom: 30px;
  }

  .work-process .steps-image {
    height: 220px;
  }

  .work-process .steps-content {
    padding: 30px 20px 20px;
  }

  .work-process .steps-content .steps-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  top: -25px;
  }

  .work-process .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .work-process .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--color-primary);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: white;
  position: relative;
  z-index: 2;
}

.btn-cta:hover{
  background-color: var(--color-bright);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-cta {
  background-color: var(--color-primary);
  color: var(--color-bright);
  border: 2px solid var(--color-bright);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}


@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}


.form-section-title{
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
    padding-bottom: 5px;
    width: 100%;
}


.hero .carpet-clean-header {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 1s;
  background-image: url(../img/serivce-header.jpeg);
}

.hero .carpet-clean-header::before {
  content: "";
  background: linear-gradient(150deg, rgba(19, 51, 72, 0.9) 25%, rgba(19, 51, 72, 0) 100%);
  position: absolute;
  inset: 0;
}

@media (max-width: 768px) {
  .carpet-clean-header{
    background-image: url(../img/cleanify-hero.jpeg) !important;
  }
}


.ttext-primary{
  color: var(--color-primary);
}





/*--------------------------------------------------------------
#  Section
--------------------------------------------------------------*/
.about-item{
  border-radius: 18px;
  min-height: max-content;
}

.about-item{
  background-color: aliceblue;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
}

.about-item:hover{
  transform: translateY(-5px);
  transition: 0.3s;
  border-color: var( --color-primary);
 
}
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  
}
.card-body {
  flex: 1;
 
}

.card-header{
  padding: 15px 0;
}


.why-us{
 color: white;

}
.feature-item1{
  width: 300px;
}
.feature-itemm{
  display: flex !important; 
  flex-direction: column;
  justify-content: center;
}

.feature-itemm h4, p{
  text-align: center;
}
.item-number{
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  color: white;
  width: 4rem; 
  height:4rem; 
  margin-top:-3.5rem;
  background-color: var(--color-primary);
}

.item-title{
  display: flex;
  align-self: center;
  padding-bottom: 5px;
  border-bottom: 3px solid white;
 
  transition: 0.7s;
}


.procedure .card:hover .item-title{
  border-color: var(--color-primary);
}

.procedure .card:hover{
  transform: translateY(-5px);
  transition: 0.7s;
}
.procedure .card{
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .procedure .card{
      height: fit-content;
  }
}




/* Services Page */
.cleanify-service-item{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cleanify-service-item .icon img{
  border-radius: 10px 10px 0 0;
}

.cleanify-service-item-text p{
  color: #8892B0;
}

.cleanify-service-item:hover{
  box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
  transform: translateY(-7px);
}

.cleanify-title{
  line-height: 1.25;
}
.procedure-body {
  background: var(--bg-gradient-1);
}