/* ========================================== */
/* === CSS Table of Contents ================ */
/* === 2023 © Guardian Sages ================ */ 
/* ========================================== */

/* ========================================== */
/* === 1. Top Header Section ================ */
/* === 2. Navigation Section ================ */
/* === 3. Website Pages Section ============= */
/* ===    a. Home Section =================== */
/* ===    b. About Section ================== */
/* ===    c. Services Section =============== */
/* ===    d. Gallery Section ================ */
/* ===    e. Areas We Service Section ======= */
/* ===    f. Testimonials Section =========== */
/* ===    g. Contact Section ================ */
/* ===    h. Sections On Every Page ========= */
/* === 4. Misc. Section ===================== */
/* ===    a. Referrals Owl Carousel ========= */
/* ===    b. Default Classes ================ */
/* ===    c. Gallery Function Section ======= */
/* ===    d. Reviews Function Section ======= */
/* === 5. Footer Section ==================== */
/* === 6. Lg. Laptop CSS Section ============ */
/* === 7. Sm. Laptop CSS Section ============ */
/* === 8. Tablet CSS Section ================ */
/* === 9. Mobile CSS Section ================ */
/* === 10. Sm. Mobile CSS Section =========== */
/* ========================================== */

@import url('https://fonts.googleapis.com/css?family=Staatliches');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700,900');

@font-face {
	font-family: 'font';
	src:url('../fonts/arvo.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font3';
	src:url('../fonts/Monoton-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'font4';
	src:url('../fonts/Swinston.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}

/* =============================
   XC HEADER WRAPPER
============================= */

.xc-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* =============================
   XC TOP BAR
============================= */

.xc-topbar {
    background: #253179;
    color: #fff;
    font-size: 14px;
    padding: 8px 40px;
}

.xc-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xc-topbar-right span {
    margin-left: 25px;
}

.xc-topbar a {
	color: #85c153; font-weight: 600;
}
.xc-topbar a:hover {
	color: #f9f9f9; text-decoration: underline !important;
}

/* =============================
   XC NAV SHELL
============================= */

.xc-navshell {
    background: #ffffff;
    padding: 26px 40px;
    transition: padding .3s ease, box-shadow .3s ease;
}

.xc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =============================
   XC LOGO
============================= */

.xc-logo img {
    height: 55px;
    transition: height .3s ease;
}

/* =============================
   XC MENU
============================= */

.xc-menu-list {
    list-style: none;
    display: flex;
    gap: 45px; font-family: Montserrat; text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.xc-menu-item {
    position: relative;
}

.xc-menu-item a {
    text-decoration: none;
    font-weight: 600;
    color: #253179;
    transition: color .2s ease;
}

.xc-menu-item a:hover {
    color: #85c153;
}

/* =============================
   XC SUBMENU (Vertical)
============================= */

.xc-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 999;
}

.xc-submenu li a {
    display: block;
    padding: 12px 20px;
    color: #253179;
}

.xc-submenu li a:hover {
    background: #f4f4f4;
    color: #85C153;
}

.xc-has-sub:hover > .xc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* =============================
   XC MEGA MENU
============================= */

.xc-has-mega {
    position: static; /* important for full width */
}

.xc-mega {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #ffffff;
    padding: 40px 60px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .25s ease;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.xc-has-mega:hover > .xc-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(-45px);;
}

/* Grid Layout */
.xc-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* Card */


.xc-mega-card:hover {
    transform: translateY(-3px); background: #85c1531c; border-right: 3px solid #85c153;
}

.xc-mega-card {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #222;
    align-items: center;
	width: 80%;
}

/* Thumbnail container */
/* Thumbnail container */
.xc-mega-thumb {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

/* Image */
.xc-mega-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Top horizontal */
.xc-mega-thumb::before {
    content: "";
    position: absolute;
    top: -5px;              /* closer */
    left: -12px;            /* longer extension */
    width: calc(100% + 25px);  /* longer line */
    height: 2px;
    background: #7bbf42;
    z-index: 1;
}

/* Left vertical */
.xc-mega-thumb::after {
    content: "";
    position: absolute;
    top: -12px;             /* longer extension */
    left: -5px;             /* closer */
    width: 2px;
    height: calc(100% + 25px);  /* longer line */
    background: #7bbf42;
    z-index: 1;
}

/* Bottom horizontal */
.xc-mega-thumb span.bottom-line {
    position: absolute;
    bottom: -5px;           /* closer */
    left: -12px;            /* longer */
    width: calc(100% + 25px);
    height: 2px;
    background: #7bbf42;
    z-index: 1;
}

/* Right vertical */
.xc-mega-thumb span.right-line {
    position: absolute;
    top: -12px;             /* longer */
    right: -5px;            /* closer */
    width: 2px;
    height: calc(100% + 25px);
    background: #7bbf42;
    z-index: 1;
}



/* Icon container */
.xc-mega-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7fa;
    border-radius: 12px;

    font-size: 22px;
    color: #85c153;

    position: relative;
    transition: all .3s ease;
}

/* Icon hover effect */
.xc-mega-card:hover .xc-mega-icon {
    background: #253179;
    color: #fff; border-radius: 0px;
    transform: translateY(-2px);
}

/* Top horizontal */
.xc-mega-icon::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -10px;
    width: calc(100% + 20px);
    height: 2px;
    background: #7bbf42;
    z-index: 1;
}

/* Left vertical */
.xc-mega-icon::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -4px;
    width: 2px;
    height: calc(100% + 20px);
    background: #7bbf42;
    z-index: 1;
}

/* Bottom horizontal */
.xc-mega-icon span.bottom-line {
    position: absolute;
    bottom: -4px;
    left: -10px;
    width: calc(100% + 20px);
    height: 2px;
    background: #7bbf42;
    z-index: 1;
}

/* Right vertical */
.xc-mega-icon span.right-line {
    position: absolute;
    top: -10px;
    right: -4px;
    width: 2px;
    height: calc(100% + 20px);
    background: #7bbf42;
    z-index: 1;
}




.xc-mega-content h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
}

.xc-mega-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* =============================
   XC CTA
============================= */

.xc-btn {
    padding: 12px 26px;
    background: #85C153;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all .3s ease;
}

.xc-btn:hover {
    background: #111;
    color: #fff;
}

/* =============================
   SCROLL STATE
============================= */

.xc-header-wrap.scrolled .xc-topbar {
    display: none;
}

.xc-header-wrap.scrolled .xc-navshell {
    padding: 16px 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.xc-header-wrap.scrolled .xc-logo img {
    height: 45px;
}






/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 200px; padding: .5rem 0; margin: .125rem 0 0; font-size: 18px; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255,255,255); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-menu.columns-3 {
	min-width: 600px;
}
.dropdown-menu li a {
	padding: 5px 15px; font-weight: 300;
}
.dropdown-item {
	display: block; width: 100%; font-weight: 600; font-family: 'font2'; padding: .25rem 1.5rem; clear: both; color: rgb(12,12,12); text-align: inherit; white-space: nowrap; background: 0 0;border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255,255,255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.dropdown {
	float: left; position: relative;
}
.dropdown .dropbtn {
	font-size: 16px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit;font-family: inherit; margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
	background-color: #043174;
}
.dropdown-one {
	cursor: pointer; display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-two {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
	display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
	display: block;
}
.dropdown-one .dItem {
	color: black; padding: 12px 16px; display: block; text-align: left;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
	background-color: #ddd;
}
.my-pad {
	padding: 0 0 0 15px;
}
.my-pad h5 {
	color: rgb(255,255,255); font-size: 18px; text-transform: uppercase; padding-top: 20px;	line-height: 5px; font-weight: 600;
}
.multi-column-dropdown {
	list-style: none; margin: 0px; padding: 0px;
}
ul.multi-column-dropdown {
	padding: 0 0 0;
}
.multi-column-dropdown li a {
	display: block;	clear: both; line-height: 1.428571429; color: #333; white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none; color: #262626; background-color: #999;
}
.tab {
	overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1; font-family: 'font2';
}
.tab button {
	background-color: inherit; float: left; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s; font-size: 17px;
}
.tab button:hover {
	background-color: #ddd;
}
.tab button.active {
	background-color: #ccc;
}
.tabcontent {
	display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none;
}
.tabcontent h3 {
	padding-top: 40px; padding-bottom: 40px; font-family: 'font'; text-align: center; font-size: 2rem; color: rgb(246,177,24);
}

.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out; overflow-x: hidden;
}
.navbar-scroll {
	padding: 95px 0 0; position: fixed; background: rgb(83,82,82); width: 100%; z-index: 2;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background: #fdfdfd; position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em; position: absolute; top: 6px; right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8; font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700; text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
	margin: 0 28px; padding: 6px 0px; font-weight: 900; font-size: 18px; color: rgb(255,255,255); font-family: 'font2';
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav
.nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light
.navbar-nav .show>.nav-link {
	color: rgb(255,255,255);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: rgb(196,41,56);
}
.navbar-light .navbar-nav li a {
	position: relative;
}
.navbar-collapse {
	height: 100%;
}
.mobile-top-header {
	display: none !important;
}

/* ========================================== */
/* === Website Pages Section ================ */
/* ========================================== */

/**** Home Section ****/
.bg-primary {
	background: rgb(83,82,82) !important;
}
.home-header-section {
	padding-top: 125px;
}
.home-header-section .slider-logo span {
	font-family: 'font'; color: rgb(196,41,56);
}
/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Slide Base */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

/* Dark Overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none; /* 🔥 CRITICAL FIX */
}

/* Active Slide */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Container */
.hero-slider .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3; /* ABOVE OVERLAY */
}

/* Slide Layout */
.slide-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.slide-left {
  max-width: 750px;
  position: relative;
  z-index: 4;
}

.slide-right {
  position: relative;
  z-index: 4;
}

/* Typography */
.subtitle {
 color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    background: #85c153;
    border-radius: 10px;
    text-align: center;
}

.title {
  font-size: 50px; font-family: Montserrat; text-transform: uppercase; font-weight: 700;
  margin: 15px 0;
}

.overview {
  margin-bottom: 25px;
  font-size: 17px; font-family: Montserrat; line-height: 35px;
}

/* CTA Buttons */
.cta-group a {
  margin-right: 15px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 5;
}

.btn-primary {
  background: #253179;
  color: #fff; border-radius: 7px;
}
.btn-primary:hover {
	background: #85c153;
}

.btn-secondary {
  background: #6d6e70;
  color: #fff; border-radius: 7px;
}
.btn-secondary:hover {
	background: #fff; color:  #253179;;
}

/* Play Button */
.play-btn {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.play-btn:hover {
  background: #fff;
  color: #000;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 6; /* ABOVE EVERYTHING */
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .active-dot {
  background: #fff;
}


@media (max-width: 991px){
.title {
    font-size: 2rem;
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0;
}
.subtitle {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    background: #85c153;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.hero-slider .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
    text-align: center;
}

.slide-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: column;
	        gap: 30px;
}

.overview {
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-family: Montserrat;
    line-height: 35px;
}
.cta-group{
	    display: flex;
    justify-content: center;
    align-items: center;
}



.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 6;
    display: none;
}

}
/* =========================================
   VIDEO MODAL
========================================= */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.video-modal video {
  width: 100%;
  height: auto;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


/* =========================================
   SERVICE HIGHLIGHTS SECTION
========================================= */

.service-highlights {
  position: relative;
  margin-top: -80px;
  padding: 0 10% 75px;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: .8fr .8fr .8fr 2fr; /* 🔥 4th is larger */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Regular Cards */
.highlight-card {
  padding: 40px 25px;
  border-right: 1px solid #eee;
  background: #ffffff;
  transition: background 0.3s ease;
}

.highlight-card h3 {
  font-size: 20px; font-family: Montserrat; font-weight: 600; text-transform: uppercase;
  margin-bottom: 12px;
   color: #253179;
}

.highlight-card p {
  font-size: 18px;
  line-height: 25px;
  font-family: font4; letter-spacing: .7px;
  color: #6b7c93;
  margin-bottom: 18px;
}

.highlight-link {
  font-weight: 600;
  color: #1f6fd5;
  text-decoration: none;
}

.highlight-card:hover {
  background: #f8fbff;
}

/* FEATURE CARD (LARGER) */
.highlight-feature {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.feature-overlay {
  background: rgba(60, 180, 75, 0.88);
  padding: 50px 40px; /* slightly more padding */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-feature h3 {
  font-size: 25px;font-family: Montserrat; font-weight: 600; text-transform: uppercase;
  margin-bottom: 15px; text-align: center;
}

.highlight-feature p {
  font-size: 20px;font-family: font4; letter-spacing: .5px;
  line-height: 32px; text-align: center;
  margin-bottom: 22px;
}

.feature-btn {
  display: inline-block;
    padding: 15px;
    background: #fff;
    color: #253179;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
    width: 55%;
    align-self: center;
    margin-top: 25px;

}

.feature-btn:hover {
  background: #253179; color: #fff;
}

@media (max-width: 1100px) {
	
.service-highlights {
    position: relative;
    margin-top: -80px;
    padding: 0 5% 75px;
    z-index: 10;
}
	
	
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-feature {
    grid-column: span 2; /* 🔥 feature spans full width on tablet */
  }
	.feature-overlay {
		background: rgba(60, 180, 75, 0.88);
		padding: 50px 10px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
.feature-btn {
    display: inline-block;
    padding: 15px;
    background: #fff;
    color: #253179;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
    width: 90%;
    align-self: center;
    margin-top: 25px;
}
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-feature {
    grid-column: span 1;
  }

  .service-highlights {
    margin-top: 0;
  }
}


.home1 {
	padding: 75px 0 125px 0;     background: linear-gradient(142deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/tile-01.jpg);
    background-size: cover; background-attachment: fixed; 
}



.home1 hr {
	height: 3px; background: #85c153; width: 115%; opacity: 100%;
}
.home1 h2 {
	font-family: Montserrat; font-size: 50px; text-align: left; font-weight: 800; color: #253179; margin-bottom: 50px;
}

.home1 h3 {
	font-family: Montserrat; font-size: 22px; text-transform: uppercase; color: #85c153; margin-left: 100px;
}

.home1 h3 span {
	font-size: 45px;color: #85c153; padding: 0px 25px 0px 25px;
}

.home1 h4 {
	font-family: Montserrat; font-size: 45px;
	text-align: left; font-weight: 800; color: #253179; margin-bottom: 25px; margin-top: 35px;    margin-left: 35px;
}

.home1 h5 {
	font-family: Montserrat; text-align: center; font-size: 30px;border-top-left-radius: 7px; margin-top: 100px;
	text-transform: uppercase; background: #85c153; padding: 10px; color: #fff; margin-bottom: -4px; border: 2px solid #fff;
}

.home1 .switcha {
	background: #253179; color: #fff;border-top-right-radius: 7px;border-top-left-radius: 0px
}

.home1 p {
	    font-size: 22px;
    font-family: font4;
	margin-top: 15px;
    margin-left: 25px;
    margin-right: -25px;
    font-weight: 500;
    text-align: left;
    color: rgb(151 151 151);
    line-height: 35px;
    letter-spacing: 1px;
}

.home1 li {
	font-family: font4; font-size: 20px; letter-spacing: .5px; color: rgb(151 151 151); margin: 5px 35px 5px 0px; line-height: 35px;
	padding: 15px;border: 2px dashed #fff; border-bottom: 3px solid #fff; border-right: 3px solid #fff; border-radius: 10px;
}

.home1 li:hover {
	border-color: #85c153; cursor: pointer; background: #EAF7DE;
}

.home1 li:hover span {
	font-weight: 900;
}

.home1 li strong {
	font-size: 30px; color: #253179;
}

.home1 li i {
	color: #fff;
    font-size: 40px;
    border: 2px dashed #253179;
    border-radius: 10px;
    padding: 5px;
    background: #85c153;
}

.home1 li span {
	color: #253179; font-weight: 800; 
	text-transform: uppercase; font-size: 25px; letter-spacing: 1px; margin-left: 20px; font-family: Montserrat;
}

.home1 img {
	border-radius: 7px;
}

.home1 a {
	color: inherit;
}

.home-property {
 
    background: #fff;
}

.home-property .container-fluid {
    padding: 120px 60px;
    background: linear-gradient(90deg, rgba(133,193,83,1) 50%, rgba(37,49,121,1) 50%);
    position: relative;
}

.home-property .property-card {
    background: #fff;
    padding: 100px 60px;
    height: 100%;
    position: relative;
}

.home-property .property-card.left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.home-property .property-card.right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home-property .divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    /*background: #e5e5e5;*/
    transform: translateX(-50%);
}

.home-property .best-value {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(133, 193, 83, 1) 49.9%, rgba(37, 49, 121, 1) 49.9%);
    color: #fff;
    font-size: 37px;
    font-weight: 600;
    padding: 10px 50px 10px 25px;
    border-radius: 3px;
    font-family: Montserrat;
    letter-spacing: 2px;
}


.home-property .property-card.left .icon-3d {
	width: 300px;
    left: 50%;
    top: 45%;
}

/* 3D ICON */
.home-property .icon-3d {
        position: absolute;
    top: 40%;
    left: 60%;
    width: 200px;
}

.home-property h3 {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-left: 95px; /* makes space for icon */
}

.home-property .description {
    font-size:20px;
    line-height: 1.7; letter-spacing: 1px;
    color: #1e2a3a; font-family: font4;
    margin-bottom: 35px;
    padding-left: 95px;
}

.home-property ul {
    list-style: none;
    padding-left: 95px;
    margin-bottom: 40px;
}

.home-property ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.home-property ul li::before {
    content: "✔";
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.home-property .left ul li::before {
    color: #85c153;
}

.home-property .right ul li::before {
    color: #253179;
}

.home-property .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 95px;
    margin-top: 30px;
}

.home-property .price {
    font-size: 42px;
    font-weight: 700;
    color: #1e2a3a;
}

.home-property .price span {
    font-size: 16px;
    font-weight: 500;
}

.home-property .btn-main {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.home-property .btn-green {
    background: #85c153;
    color: #fff;
}

.home-property .btn-blue {
    background: #253179;
    color: #fff;
}

@media (max-width:1100px){
	
.home-property .property-card {
    background: #fff;
    padding: 100px 10px;
    height: 100%;
    position: relative;
}
.home-property h3 {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-left: 0;
}
.home-property .description {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #1e2a3a;
    font-family: font4;
    margin-bottom: 35px;
    padding-left: 0;
}

.home-property ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}
}


/* Mobile */
@media(max-width:991px){
    .home-property .container-fluid{
        background: #85c153;
    }
.home-property .container-fluid {
    padding: 120px 10px;
    background: linear-gradient(90deg, rgba(133,193,83,1) 50%, rgba(37,49,121,1) 50%);
    position: relative;
}
    .home-property .divider,
    .home-property .best-value{
        display:none;
    }


.home-property h3 {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding-left: 0;
}
.home-property ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}
    .home-property .property-card{
        border-radius:10px;
        margin-bottom:30px;
    }
.home-property .property-card {
    background: #fff;
    padding: 100px 10px;
    height: 100%;
    position: relative;
}
.home-property .description {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #1e2a3a;
    font-family: font4;
    margin-bottom: 35px;
    padding-left: 0;
}
.home-property .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 30px;
}

.home-property .property-card.left .icon-3d {
    width: 100px;
    left: 50%;
    top: 45%;
}
.home-property .icon-3d {
    opacity: 0.5;
    position: absolute;
    top: 40%;
    left: 65%;
    width: 100px;
}
}


/* SECTION */
.xc-services {
    padding: 125px 0;
        /*background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
	background-color: #dde8f1;
    background-attachment: fixed;
    background-position: center;*/
		background: #ebeef1;
}

.xc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.xc-services h2  {
	font-family: Montserrat; font-size: 65px; font-weight: 800; text-align: center;margin-bottom: 50px; color: #253179;
	line-height: 80px;
}

.xc-services h2 span {
	font-family: font4; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; background: #85c153; padding: 15px;
	color: #fff; border-radius: 7px; position: relative;
}





/* CARD */
.xc-service-card {
    position: relative;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    transition: all .4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* IMAGE (Hidden by default) */
.xc-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
}

.xc-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform .6s ease;
}

/* BLUE OVERLAY */
.xc-card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,92,185,0.75),
        rgba(0,40,90,0.95)
    );
}

/* HOVER STATE */
.xc-service-card:hover .xc-card-bg {
    opacity: 1;
}

.xc-service-card:hover .xc-card-bg img {
    transform: scale(1.08);
}

/* CONTENT */
.xc-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ICON */
.xc-card-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #253179;
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all .4s ease;
}

/* TEXT */
.xc-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color .4s ease;
}

.xc-card-content p {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: auto;
    transition: color .4s ease;
    font-family: font4;
    letter-spacing: .5px;
}

.xc-read-more {
    font-weight: 600;
    font-size: 14px;
    margin-top: 25px;
    display: inline-flex;
    align-items: center; width: fit-content;
    gap: 8px; padding: 10px;
    transition: transform .3s ease, color .4s ease;
}

/* TEXT TURNS WHITE ON HOVER */
.xc-service-card:hover {
    color: #ffffff; box-shadow: 0px 0px 0px 7px #85c153; border-radius: 0px; transition: .5s;
}

.xc-service-card:hover h3,
.xc-service-card:hover p,
.xc-service-card:hover .xc-read-more {
    color: #ffffff;
}

.xc-service-card:hover .xc-card-icon {
    background: #85c153;
    color: #fff;
}

.xc-service-card:hover .xc-read-more {
    transform: translateX(6px); background: #85c153; border-radius: 5px;
}

.xc-services .xc-carpet-cleaning {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/carpet-cleaning-01.jpg);
    background-size: cover;
}

.xc-services .xc-tile-grout-cleaning {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/tile-cleaning-01.jpg);
    background-size: cover;
}

.xc-services .xc-upholstery-cleaning {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/upholstery-cleaning-01.jpg);
    background-size: cover;
}

.xc-services .xc-carpet-repair {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/carpet-repair-01.jpg);
    background-size: cover;
}

.xc-services .xc-area-rug-cleaning {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/area-rug-cleaning-01.jpg);
    background-size: cover;
}
.xc-services .xc-flooring-sales {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/flooring-materials-01.jpg);
    background-size: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .xc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
.xc-services h2 span {
    font-family: font4;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #85c153;
    padding: 15px;
    color: #fff;
    border-radius: 7px;
    position: relative;
    display: flex;
}
	
.xc-services h2 {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #253179;
    line-height: 50px;
}
	
}

@media (max-width: 600px) {
    .xc-services-grid {
        grid-template-columns: 1fr;
    }
}


.cleaning-options {
    padding: 100px 0;
    background: linear-gradient(172deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/tile-01.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.cleaning-options h2 {
	padding: 35px;
    border-radius: 10px;
    background: #85c153;
    width: fit-content;
    /*margin: -150px 0px 100px 0px;*/
    margin:  0px;
    color: #fff;
    font-family: Montserrat;
    font-weight: 800;
    font-size: 45px;
}

.option-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
       box-shadow: 0px 0px 25px 10px #85c153;
}

.option-card.reverse {
    flex-direction: row-reverse;
}

.option-card.reverse:hover {
	transform: translateY(-10px);
       box-shadow: 0px 0px 25px 10px #253179 !important;
}

.option-img {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-content {
    flex: 1; text-align: center;
        padding: 50px;
}

.option-icon {
    font-size: 50px;
    color: #85c153;
    margin-bottom: 15px;
}

.option-content h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.option-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.option-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #253179;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.option-btn:hover {
    background: #85c153;
    color: #fff;
}



@media (max-width: 1100px){
.home-choose p {
    font-size: 1rem;
    letter-spacing: .5px;
    font-family: font4;
    line-height: 30px;
}
	
}
/* Mobile */
@media(max-width:991px){
	
	.cleaning-options h2{
		padding: 20px; 
		font-size:2rem;
	}
	
    .option-card,
    .option-card.reverse {
        flex-direction: column;
    }

    .option-img {
        height: 250px;
    }

    .option-content {
        padding: 40px;
        text-align: center;
    }
}
.home-choose {
  position: relative;
  overflow: hidden;
}

.home-choose h2 {
	font-family: Montserrat; font-size: 35px; font-weight: 800; text-transform: uppercase; line-height: 55px;
}
.home-choose h2 span {
	color: #253179;font-size: 40px; 
}

.home-choose h4 {
	display: inline-block; font-family: font4; text-transform: uppercase; border-radius: 5px; padding: 10px; background: #85c153; color: #fff;
	text-align: center; font-size: 15px; letter-spacing: 1px; font-weight: 600;
}
.home-choose p {
	font-size: 20px; letter-spacing: .5px; font-family: font4; line-height: 40px;
}

.choose-wrapper {
  position: relative;
  width: 100vw;
  height: 650px;
}


/* IMAGE */
.choose-image {
  position: absolute;
  inset: 0;
  background: url(/img/homepage/cleaner-carpet-02.jpg); /*background-attachment: fixed;*/
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* REASON CARDS (fixed to table) */
.reason-card {
  position: absolute;
  top: 0;
  width: 25vw;
  height: 100%;
  padding: 100px 40px;
  background: #253179e0;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s ease;
}

/* Position cards side-by-side */
.card-1 { left: 25vw; }
.card-2 { left: 50vw; background: #85c153c9; }
.card-3 { left: 75vw; }


.card-1:hover {
	background: #253179; box-shadow: 1px 1px 10px 1px #000; cursor: pointer;
}
.card-2:hover {
	background: #85c153; box-shadow: 1px 1px 10px 1px #000; cursor: pointer;
}
.card-3:hover {
	background: #253179; box-shadow: 1px 1px 10px 1px #000; cursor: pointer;
}

/* Visible state */
.reason-card.show {
  opacity: 1;
}

/* CONTENT PANEL */
.choose-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 25vw;
  height: 100%;
  padding: 100px 40px;
  background: #f2f2f2d1;
  z-index: 5;
  transition: transform 1s ease;
}

.choose-content:hover {
	background: #f2f2f2; box-shadow: 1px 1px 10px 1px #000;
}

/* Button styling */
.choose-content button {
  margin-top: 30px;
  background: #85c153;
  border: none;
  padding: 14px 30px;
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
}

.reason-inner {
  max-width: 420px;
}

/* Big Number */
.reason-number {
  font-size: 80px;
  font-weight: 800;
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 10px;
}

/* Icon */
.reason-icon {
  font-size: 42px;
  margin-bottom: 20px;
  color: #85c153;
}

.card-2 .reason-icon {
	color: #253179;
}

/* Title */
.reason-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Lead Sentence */
.reason-lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Bullets */
.reason-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reason-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 16px;
}

.reason-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #85c153;
  font-weight: bold;
}


@media (max-width:1440px){
.home-choose h2 span {
    color: #253179;
    font-size: 2rem;
}
.home-choose p {
    font-size: 20px;
    letter-spacing: .5px;
    font-family: font4;
    line-height: 20px;
}
.choose-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 25vw;
    height: 100%;
    padding: 50px 20px;
    background: #f2f2f2d1;
    z-index: 5;
    transition: transform 1s ease;
}



.reason-card {
    position: absolute;
    top: 0;
    width: 25vw;
    height: 100%;
    padding: 24px 40px;
    background: #253179e0;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s ease;
}



}

@media (max-width:991px){
.home-choose {
    position: relative;
    overflow: hidden;
    display: none;
}
}

/* ===== BEFORE / AFTER NAV SECTION ===== */

.ba-nav-section {
  padding: 100px 0;
  background: #f4f4f4;
}

.ba-nav-section h2 {
	font-family: Montserrat; font-weight: 800; font-size: 45px;
}

.ba-nav-section p {
	font-family: font4; font-size: 20px; letter-spacing: .5px;
}

.ba-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ba-image-container {
  max-width: 700px; /* controls width */
  width: 100%;
}

.ba-image-container img {
  width: 100%;
  height: 450px; /* control height here */
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.35s ease;
  border-radius: 6px;
}

/* Buttons */


/* Mobile layout */
@media (max-width: 768px) {
  .ba-nav-wrapper {
    flex-direction: column;
  }

  .ba-image-container img {
    height: 350px;
  }
}

/* ============================= */
/* BEFORE / AFTER GALLERY       */
/* ============================= */

.ba-gallery-section {
  padding: 100px 0 150px 0;
      background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #ffffff;
    background-attachment: fixed;
    background-position: center;
}

.ba-gallery-header h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 45px;
}

.ba-gallery-header p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: -30px;
}

.ba-gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.ba-gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.ba-gallery-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.ba-slide-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.ba-image-container {
  max-width: 700px;
  width: 100%;
}

.ba-image-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.35s ease;
  border-radius: 6px;
}

/* Buttons */
.ba-gallery-section .ba-btn {
  padding: 18px 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.ba-gallery-section .ba-before {
  background: #253179;
  color: #fff;
      position: relative;
      top: 15.3%;
    left: -39.27%;

}

.ba-gallery-section .ba-after {
  background: #85c153;
  color: #fff;
      position: relative;
    top: -15.5%;
    left: 39%;

}

.ba-gallery-section .ba-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* DOTS */
.ba-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -20px;
}

.ba-gallery-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-gallery-dots span.active {
  background: #85c153;
}

/* Mobile */
@media (max-width: 991px) {
  .ba-slide-inner {
    flex-direction: column;
  }
.ba-gallery-section .ba-before {
    background: #253179;
    color: #fff;
    position: relative;
    top: 15.3%;
    left: 0;
}


.ba-gallery-section .ba-after {
    background: #85c153;
    color: #fff;
    position: relative;
    top: -15.5%;
    left: 0;
}
  .ba-image-container img {
    height: 350px;
  }
}


/**** About Section ****/


/* ===================================== */
/* ABOUT HERO */
/* ===================================== */

.xc-about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
  color: #fff;
}

.xc-about-overlay {
  background: linear-gradient(#85c153d9, #85c153d9);
  padding: 120px 0;
}

.xc-about-hero h1 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 52px;
  margin-bottom: 20px;
}

.xc-about-hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}


/* ===================================== */
/* STORY + FAMILY SECTION */
/* ===================================== */

.xc-about-story,
.xc-family-section {
  padding: 100px 0;
}

.xc-family-section {
  background: #f8f8f8;
}

.xc-about-story h2,
.xc-family-section h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 38px; color: #253179;
  margin-bottom: 20px;
}

.xc-about-story p,
.xc-family-section p {
  font-size: 18px;
  line-height: 1.8; font-family: font4; letter-spacing: .5px;
  color: #444;
}

.xc-about-story img,
.xc-family-section img {
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

@media (max-width: 991px){
.xc-about-story, .xc-family-section {
    padding: 100px 0;
    text-align: center;
}
}

/* ===================================== */
/* WHAT MAKES US DIFFERENT */
/* ===================================== */

.xc-difference {
  padding: 110px 0;
  background: #fff;
}

.xc-difference h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 40px; color: #253179;
  margin-bottom: 60px;
}
.xc-difference h3 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 40px; color: #253179;
  margin-bottom: 60px;
}
.xc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.xc-pillar {
  padding: 100px 0px;
	border: 2px solid #85c153;
  border-radius: 12px;
  transition: all .3s ease;
}

.xc-pillar .pillar-banner {
	padding: 25px 15px 15px 15px; 
}

.xc-pillars .clean-experience {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/clean-experience-01.jpg);
    background-size: cover;
}
.xc-pillars .clean-experience:hover {
    background: linear-gradient(rgb(0 0 0 / 23%), rgb(0 0 0 / 26%)), url(/img/homepage/clean-experience-01.jpg);  background-size: cover;
}

.xc-pillar:hover  .pillar-banner {
	background: #85c15391; color: #fff;
}

.xc-pillar:hover  i {
	    color: #fff;
    background: #85c15391;
    margin-bottom: 0px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.xc-pillars .clean-service {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/clean-service-01.jpg);
    background-size: cover;
}
.xc-pillars .clean-service:hover {
    background: linear-gradient(rgb(0 0 0 / 23%), rgb(0 0 0 / 26%)), url(/img/homepage/clean-service-01.jpg);  background-size: cover;
}

.xc-pillars .clean-satisfaction {
	    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/clean-satisfaction-01.jpg);
    background-size: cover;
}
.xc-pillars .clean-satisfaction:hover {
    background: linear-gradient(rgb(0 0 0 / 23%), rgb(0 0 0 / 26%)), url(/img/homepage/clean-satisfaction-01.jpg);  background-size: cover;
}

.xc-pillar:hover {
  transform: translateY(-5px);border: 2px solid #253179;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.xc-pillar i {
  font-size: 40px; width: 215px;
  color: #85c153; padding: 25px 10px 10px 10px;
  margin-bottom: 20px;
}

.xc-pillar h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.xc-pillar p {

}


/* ===================================== */
/* STATS */
/* ===================================== */

.xc-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.xc-stats div {
  text-align: center;
}

.xc-stats strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #253179;
}

.xc-stats span {
  font-size: 16px;
  color: #666;
}


/* ===================================== */
/* TEAM SECTION */
/* ===================================== */

.xc-team {
  padding: 110px 0;
  background: #f8f8f8;
}

.xc-team h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 60px;
}

.xc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.xc-team-card {

  padding: 30px;
  border-radius: 12px;
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.member-1 {
	 background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/about/team-member-01.png);
        background-size: 105%;
    background-position: top;
}
.member-2 {
	 background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/about/team-member-03.png);
        background-size: 105%;
    background-position: top;
}
.member-3 {
	 background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/about/team-member-02.png);
       background-size: 105%;
    background-position: top;
}
.xc-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.xc-team-card img {
  width: 35%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.xc-team-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.xc-team-card span {
  display: block;
  font-size: 14px;
  color: #85c153;
  margin-bottom: 15px;
  font-weight: 600;
}

.xc-team-card p {
  font-size: 15px;
  color: #555;
}


/* ===================================== */
/* MISSION */
/* ===================================== */

.xc-mission {
  padding: 110px 0;
      background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #ffffff;
    background-attachment: fixed;
    background-position: center;
}

.xc-mission h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 20px;
}

.xc-mission p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}


/* ===================================== */
/* CTA SECTION */
/* ===================================== */

.xc-about-cta {
  padding: 120px 0;
  background: #253179;
  color: #fff;
}

.xc-about-cta h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
}

.xc-about-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.xc-about-cta .xc-btn {
  padding: 16px 34px;
  background: #85c153;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all .3s ease;
}

.xc-about-cta .xc-btn:hover {
  background: #fff;
  color: #253179;
}


/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

  .xc-pillars {
    grid-template-columns: 1fr;
  }

  .xc-team-grid {
    grid-template-columns: 1fr;
  }

  .xc-stats {
    flex-direction: column;
    gap: 40px;
  }

  .xc-about-hero h1 {
    font-size: 36px;
  }
.xc-about-cta .xc-btn {
    padding: 16px 34px;
    background: #85c153;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    text-align: center;
}
}

/**** Services Section ****/

.cc-hero {
  position: relative;
  background: url('/img/homepage/floor-steam-01.jpg') center center / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}
.cc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}
.cc-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cc-hero-content {
  max-width: 700px;
}
.cc-hero-subtitle {
    font-size: 20px;
    color: #85c153;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}
.cc-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cc-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}
.cc-hero-buttons .cc-btn {
  margin-right: 15px;
}

/* BUTTONS */
.cc-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.cc-btn-light {
  background: #ffffff;
  color: #003049;
}
.cc-btn-primary {
  background: #005fa3;
  color: #ffffff;
}
.cc-btn-accent {
 background: #253179;
    color: #ffffff;
    width: fit-content;
}
.cc-btn-small {
  padding: 10px 18px;
}

/* OVERVIEW */
.cc-overview {
  padding: 100px 0;
  background: #f6f9fc;
}
.cc-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cc-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

/* LEGEND */
.cc-legend {
  background: #eef3f8;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.cc-legend-title {
      margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
    color: #85c153;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cc-legend-item {
  display: block;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 6px;
  color: #003049;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.cc-legend-item:hover,
.cc-legend-active {
  background: #253179;
  color: #ffffff;
}

/* CTA BLOCK */
.cc-legend-cta {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.cc-legend-cta h4 {
	font-family: Montserrat; font-weight: 800; font-size: 30px;
}

.cc-legend-cta p {
	font-family: font4; font-size: 20px; letter-spacing: .5px;
}

.cc-legend-img {
  width: 100%;
  display: block;
}
.cc-legend-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(141, 198, 63, 0.85);
  color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cc-cta-title {
  margin-bottom: 15px;
}

/* SERVICE CARD */
/* =========================
   TABBED SERVICE CARD
========================= */

.cc-tabs-wrapper {
        background: linear-gradient(to bottom, #253179c9, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* TOP NAV BUTTONS */
.cc-tab-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.cc-tab-btn {
  background: #ffffff;
  border: 2px solid transparent;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  font-size: 15px;
  color: #253179;
}

.cc-tab-btn i {
  font-size: 14px;
}

.cc-tab-btn:hover {
  border-color: #8dc63f;
}

.cc-tab-active {
  background: #85c153;
  color: #ffffff;
  border-color: #fff;
}

/* INNER WHITE CARD */
.cc-tab-content {
  background: #ffffff;
  
  border-radius: 10px;
}

.cc-residential {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 57%) 50%, rgb(255 255 255 / 0%) 75%, rgb(255 255 255 / 0%) 100%), url(/img/services/residential-carpet-01.jpg); text-align: center;
    background-size: cover;padding: 150px 25px;border-radius: 10px;    border: 7px solid #85c153;
}

.cc-commercial {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 84%) 50%, rgb(255 255 255 / 80%) 75%, rgb(255 255 255 / 88%) 100%), url(/img/services/commercial-carpet-01.jpg); text-align: center;
    background-size: cover;padding: 150px 25px;border-radius: 10px;    border: 7px solid #85c153;
}

/* PANELS */
.cc-tab-panel {
  display: none;
}

.cc-panel-active {
  display: block;
}

/* HEADINGS */
.cc-tab-content h2 {
  font-size: 32px;
  margin-bottom: 15px; font-family: Montserrat; font-weight: 800;
  color: #253179;
}

.cc-tab-content p {
  font-size: 20px;
  line-height: 1.6; letter-spacing: .5px;
  margin-bottom: 25px; font-family: font4;
  color: #222;
}

/* CHECKLIST */
.cc-tab-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; text-align: left; margin-left: 30px;
}

.cc-tab-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cc-tab-checklist li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.cc-tab-checklist li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #005fa3;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cc-overview-grid {
    grid-template-columns: 1fr;
  }
  .cc-service-checklist {
    flex-direction: column;
  }
  .cc-hero-title {
    font-size: 40px;
  }
}
/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {

  /* Stack grid instead of 2 columns */
  .cc-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reduce section padding */
  .cc-overview {
    padding: 60px 0;
  }

  /* Reduce large wrapper padding */
  .cc-tabs-wrapper {
    padding: 30px 20px;
  }

  /* Reduce background panel padding */
  .cc-residential,
  .cc-commercial {
    padding: 80px 20px;
    background-position: center;
  }

  /* Stack checklist columns */
  .cc-tab-checklist {
    grid-template-columns: 1fr;
    margin-left: 0;
    text-align: left;
  }

  /* Stack tab buttons */
  .cc-tab-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cc-tab-btn {
    width: 100%;
    justify-content: center;
  }

  /* Reduce heading size */
  .cc-tab-content h2 {
    font-size: 24px;
  }

  .cc-tab-content p {
    font-size: 16px;
  }
.cc-legend-cta {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 50px 0;
}
}

/* =========================
   CLEANING PROCESS SECTION
========================= */

.cc-process {
  padding: 120px 0;
        background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
}

.cc-process-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-process-header {
  text-align: center;
  margin-bottom: 70px;
}

.cc-process-header h2 {
 font-size: 50px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

.cc-process-header p {
  max-width: 700px;
  margin: 0 auto; font-family: font4; letter-spacing: .5px;
  color: #fff;
  font-size: 20px;
}


/* PROCESS CARD */
.cc-process-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px; border-radius: 25px;
  gap: 60px;
  background: #fff; padding: 75px;
      margin-left: -100px;
    margin-right: 100px;
}

.cc-process-reverse {
  flex-direction: row-reverse;
      margin-left: 100px;
    margin-right: -100px;
}

.cc-process .step-one {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 74%) 50%, rgb(255 255 255) 75%, rgb(255 255 255 / 73%) 100%), url(/img/services/carpet-process-01.png);
    background-size: cover;
    background-position: bottom;
}

.cc-process .step-two {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 74%) 50%, rgb(255 255 255) 75%, rgb(255 255 255 / 73%) 100%), url(/img/services/carpet-process-02.png);
    background-size: cover;
    background-position: bottom;
}

.cc-process .step-three {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 74%) 50%, rgb(255 255 255) 75%, rgb(255 255 255 / 73%) 100%), url(/img/services/carpet-process-03.png);
    background-size: cover;
    background-position: bottom;
}

.cc-process .step-four {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 74%) 50%, rgb(255 255 255) 75%, rgb(255 255 255 / 73%) 100%), url(/img/services/carpet-process-04.png);
    background-size: cover;
    background-position: bottom;
}

.cc-process .step-five {
	background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgb(255 255 255 / 74%) 50%, rgb(255 255 255) 75%, rgb(255 255 255 / 73%) 100%), url(/img/services/carpet-process-05.png);
    background-size: cover;
    background-position: center;
}


/* CONTENT SIDE */
.cc-process-content {
  flex: 1;
}

.cc-process-number {
  display: inline-block;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8dc63f;
  margin-bottom: 10px;
}

.cc-process-content h3 {
 font-size: 30px;
    font-weight: 800;
    font-family: Montserrat;
    margin-bottom: 15px;
    color: #253179;
}

.cc-process-content p {
  font-size: 20px;
  color: #555;font-family: font4; letter-spacing: .5px;
  line-height: 1.6;
}

/* ICON SIDE */
.cc-process-icon {
  flex: 0 0 180px;
  height: 180px;
      background: linear-gradient(135deg, #253179, #5c6abd);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cc-process-icon i {
  font-size: 60px;
  color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .cc-process-card,
  .cc-process-reverse {
    flex-direction: column;
    text-align: center;
  }

  .cc-process-icon {
    margin-bottom: 30px;
  }
.cc-process-icon {
    flex: 0 0 10px;
    height: 180px;
    width: 100px;
    background: linear-gradient(135deg, #253179, #5c6abd);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 35px;
}
  
.cc-process-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-radius: 25px;
    gap: 60px;
    background: #fff;
    padding: 45px 15px;
    margin-left: 0;
    margin-right: 0;
}
.cc-process-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}
}


/* =========================
   BENEFITS SECTION
========================= */

.cc-benefits {
  padding: 120px 0;
    background: linear-gradient(rgb(255 255 255 / 75%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #85c153;
    background-attachment: fixed;
    background-position: center
}

.cc-benefits-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.cc-benefits-header h2 {
font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    padding: 25px 15px 25px 15px;
    background: #253179;
    border-radius: 15px;
}

.cc-benefits-header p {
	font-family: font4; letter-spacing: .5px; font-size: 25px; line-height: 40px; color: #fff;
}

.cc-benefits-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

/* NAV */
.cc-benefits-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cc-benefit-btn {
  padding: 14px 18px;
  border-radius: 6px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cc-benefit-btn:hover {
  transform: translateX(5px); background: #61c50e; color: #fff; text-transform: uppercase;
}

.cc-benefit-active {
  background: #253179;
  color: #ffffff;
}

/* CONTENT */
.cc-benefits-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
}

.cc-benefit-panel {
  display: none;
}

.cc-benefit-panel-active {
  display: block; 
}

.cc-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #253179, #5464BC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cc-benefit-icon i {
  color: #ffffff;
  font-size: 28px;
}

.cc-benefit-panel h3 {
  margin-bottom: 15px;
  font-size: 26px; text-transform: uppercase; font-weight: 800; 
}

.cc-benefit-panel p {
	font-family: font4; font-size: 20px; line-height: 40px; letter-spacing: .5px;
}

.cc-benefit-panel ul {
  list-style: none;
  padding-left: 0;
  margin-top: 65px;
}

.cc-benefit-panel li {
  position: relative;
  padding: 10px 15px 10px 40px; /* left space for bullet */
  background: #61c50e;
  margin: 15px 0;
  font-weight: 800;
  color: #fff;
  width: 75%;
  border-radius: 10px;
}

.cc-benefit-panel li::before {
  content: "✓";               /* Change symbol here */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;             /* Bullet color */
  font-size: 16px;
  font-weight: 900;
}


@media (max-width: 991px) {
  .cc-benefits-grid {
    grid-template-columns: 1fr;
  }
.cc-benefits-content {
    background: #ffffff;
    padding: 50px 20px;
    border-radius: 12px;
}
.cc-benefit-panel-active {
    display: block;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.cc-benefits-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    padding: 25px 15px 25px 15px;
    background: #253179;
    border-radius: 15px;
}
.cc-benefit-panel li {
    position: relative;
    padding: 10px 15px 10px 40px;
    background: #61c50e;
    margin: 15px 0;
    font-weight: 800;
    color: #fff;
    width: 100%;
    border-radius: 10px;
}
}


/* =========================
   WHY CHOOSE US – PILLARS
========================= */

.cc-why {
  padding: 140px 0;
    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/tile-01.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.cc-why-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-why-header {
  text-align: center;
  margin-bottom: 80px;
}

.cc-why-header h2 {
  font-size: 42px;
  margin-bottom: 15px; text-transform: uppercase;
  color: #003049; font-weight: 800;
}

.cc-why-header p {
  max-width: 650px;
  margin: 0 auto; font-family: font4;
  color: #666; letter-spacing: .5px;
  font-size: 22px;
}


/* PILLAR LAYOUT */
.cc-why-pillars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

/* BASE PILLAR */
.cc-why-pillar {
background: #8bc34a24;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    width: 300px;
    position: relative;
}

/* HEIGHT VARIATIONS */
.cc-why-small {
  height: 310px;
}

.cc-why-medium {
  height: 340px;
}

.cc-why-large {
  height: 420px;
}

/* ICON */
.cc-why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
 background: linear-gradient(135deg, #253179, #525d9f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-why-icon i {
  font-size: 26px;
  color: #ffffff;
}

/* TEXT */
.cc-why-pillar h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #003049; font-weight: 800;
}

.cc-why-pillar p {
  font-size: 18px;
  color: #555; font-family: font4; letter-spacing: .5px; 
  line-height: 1.5;
}

/* HOVER LIFT */
.cc-why-pillar:hover {
  transform: translateY(-10px);
  background: #85c153;
}

.cc-why-pillar:hover h3 {
	color: #fff;
}

.cc-why-pillar:hover p {
	color: #fff;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .cc-why-pillars {
    flex-direction: column;
    align-items: center;
  }

  .cc-why-pillar {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
}

/* =========================
   FINAL CTA SECTION
========================= */

.cc-final-cta {
position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #85c153ba, #85c153);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.cc-final-cta-overlay {
  position: absolute;
  inset: 0;
 /* background: url('/img/homepage/floor-steam-01.jpg') center/cover no-repeat;*/
  opacity: 0.08;
}

.cc-final-cta-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-final-cta h2 {
  font-size: 42px; font-weight: 800;
  margin-bottom: 20px;
}

.cc-final-cta p {
  font-size: 20px;
  margin-bottom: 40px; font-family: font4; letter-spacing: .5px;
  color: #fff;
}

.cc-final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cc-btn-new {
	background: #253179; color: #fff;
}

.cc-btn-new:hover {
	color: #85c153;
}

/* BUTTON VARIATIONS */
.cc-btn-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.cc-btn-outline:hover {
  background: #ffffff;
  color: #003049;
}

.cc-final-cta-trust {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .cc-final-cta h2 {
    font-size: 30px;
  }
}


/* =========================
   AREA RUG HERO
========================= */

.ar-hero {
  position: relative;
  background: url('/img/services/area-rug-001.jpg') center center / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

.ar-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}

.ar-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ar-hero-content {
  max-width: 700px;
}

.ar-hero-subtitle {
  font-size: 20px;
  color: #85c153;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}

.ar-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ar-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   AREA RUG OVERVIEW
========================= */

.ar-overview {
  padding: 100px 0;
  background: #f6f9fc;
}

.ar-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ar-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

/* OUTER WRAPPER */
.ar-tabs-wrapper {
  background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ROUTINE TAB BACKGROUND */
.ar-routine {
  background:
    linear-gradient(
      142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/area-rug-002.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* EMERGENCY TAB BACKGROUND */
.ar-emergency {
  background:
    linear-gradient(
      142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.75) 55%,
      rgba(255,255,255,0.6) 75%
    ),
    url('/img/services/area-rug-003.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ar-overview-grid {
    grid-template-columns: 1fr;
  }
  
  
.ar-hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ar-hero-buttons{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

.ar-tabs-wrapper {
  background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
  padding: 40px 10px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}
}


/* =========================
   UPHOLSTERY HERO
========================= */

.uc-hero {
  position: relative;
  background: url('/img/services/upholstery-clean-002.jpg') center center / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

.uc-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}

.uc-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.uc-hero-content {
  max-width: 700px;
}

.uc-hero-subtitle {
  font-size: 20px;
  color: #85c153;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}

.uc-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.uc-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}


/* =========================
   UPHOLSTERY OVERVIEW
========================= */

.uc-overview {
  padding: 100px 0;
  background: #f6f9fc;
}

.uc-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.uc-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

/* OUTER WRAPPER */
.uc-tabs-wrapper {
      background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/services/upholstery-clean-001.jpg);
    background-size: cover;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ROUTINE TAB BACKGROUND */
.uc-routine {
     background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.6) 55%, rgb(255 255 255 / 49%) 75%), url(/img/services/upholstery-clean-004.jpg);
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* EMERGENCY TAB BACKGROUND */
.uc-emergency {
  background:
    linear-gradient(
      142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.75) 55%,
      rgba(255,255,255,0.6) 75%
    ),
    url('/img/services/upholstery-clean-003.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

@media (max-width: 991px) {
  .uc-overview-grid {
    grid-template-columns: 1fr;
  }
.uc-hero {
    position: relative;
    background: url('/img/services/upholstery-clean-002.jpg') center center / cover no-repeat;
    padding: 140px 0;
    color: #ffffff;
    text-align: center;
}
.uc-hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.uc-hero-buttons{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

 .uc-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reduce hero height */
  .uc-hero {
    padding: 80px 0;
    text-align: center;
  }
  .uc-tabs-wrapper {
    padding: 30px 20px;
  }
.cc-legend-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(141, 198, 63, 0.85);
    color: #ffffff;
    padding: 45px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-why-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #003049;
    font-weight: 800;
}
}


/* =========================
   TILE & GROUT HERO
========================= */

.tg-hero {
  position: relative;
  background: url('/img/services/tg-03.jpg') center center / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

.tg-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}

.tg-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tg-hero-content {
  max-width: 700px;
}

.tg-hero-subtitle {
  font-size: 20px;
  color: #85c153;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}

.tg-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tg-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   TILE & GROUT OVERVIEW
========================= */

.tg-overview {
  padding: 100px 0;
  background: #f6f9fc;
}

.tg-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tg-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

/* OUTER WRAPPER */
.tg-tabs-wrapper {
     background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ROUTINE TAB */
.tg-routine {
  background:
    linear-gradient(
      142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/tg-01.jpeg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* EMERGENCY TAB */
.tg-emergency {
  background:
    linear-gradient(
      142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.75) 55%,
      rgba(255,255,255,0.6) 75%
    ),
    url('/img/services/tg-02.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

@media (max-width: 991px) {
  .tg-overview-grid {
    grid-template-columns: 1fr;
  }
.tg-hero {
    position: relative;
    background: url('/img/services/tg-03.jpg') center center / cover no-repeat;
    padding: 140px 0;
    color: #ffffff;
    text-align: center;
}

.tg-routine {
    background: linear-gradient(
162deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0) 100%), url(/img/services/tg-01.jpeg);
    background-size: cover;
    background-position: center;
    padding: 150px 25px;
    border-radius: 10px;
    border: 7px solid #85c153;
    text-align: center;
}
.tg-hero-buttons{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
.tg-hero-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.tg-tabs-wrapper {
    background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
    padding: 60px 10px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}
}


/* =========================
   CARPET REPAIR HERO
========================= */

.cr-hero {
  position: relative;
  background: url('/img/services/carpet-rr-01.jpg') center center / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

.cr-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}

.cr-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cr-hero-content {
  max-width: 700px;
}

.cr-hero-subtitle {
  font-size: 20px;
  color: #85c153;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}

.cr-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cr-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   CARPET REPAIR OVERVIEW
========================= */

.cr-overview {
  padding: 100px 0;
  background: #f6f9fc;
}

.cr-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cr-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

.cr-tabs-wrapper {
     background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;

  padding: 60px;
  border-radius: 12px;
}

/* TAB BACKGROUNDS */

.cr-repair {
  background:
    linear-gradient(142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/carpet-rr-02.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

.cr-restretch {
  background:
    linear-gradient(142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/carpet-rr-03.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px){

  /* Collapse grid */
  .cr-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reduce hero height */
  .cr-hero {
    padding: 80px 0;
    text-align: center;
  }

  .cr-hero-title {
    font-size: 32px;
  }

  .cr-hero-description {
    font-size: 16px;
  }

  .cr-hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 15px;
	        align-items: center;
  }

  /* Reduce wrapper padding */
  .cr-tabs-wrapper {
    padding: 30px 20px;
  }

  /* Reduce massive panel padding */
  .cr-repair,
  .cr-restretch {
    padding: 80px 20px;
    background-position: center;
  }

  /* Reduce overview section spacing */
  .cr-overview {
    padding: 60px 0;
  }
.cc-tab-checklist li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    font-weight: 700;
}
}
/* =========================
   FLOORING SALES HERO
========================= */

.fs-hero {
  position: relative;
  background: url('/img/services/flooring-sales-01.jpg') center bottom / cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

.fs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 52, 0.65);
}

.fs-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fs-hero-content {
  max-width: 750px;
}

.fs-hero-subtitle {
  font-size: 20px;
  color: #85c153;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
}

.fs-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.fs-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   FLOORING SALES OVERVIEW
========================= */

.fs-overview {
  padding: 100px 0;
  background: #f6f9fc;
}

.fs-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fs-overview-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
}

.fs-tabs-wrapper {
  background: linear-gradient(to bottom, #253179c9, rgb(0 40 90 / 86%));
  padding: 60px;
  border-radius: 12px;
}

/* SALES TAB */
.fs-sales {
  background:
    linear-gradient(142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/flooring-sales-02.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

/* INSTALL TAB */
.fs-install {
  background:
    linear-gradient(142deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0.6) 55%,
      rgba(255,255,255,0) 75%
    ),
    url('/img/services/flooring-sales-04.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 25px;
  border-radius: 10px;
  border: 7px solid #85c153;
  text-align: center;
}

@media (max-width: 991px){
.fs-hero {
    position: relative;
    background: url('/img/services/flooring-sales-01.jpg') center bottom / cover no-repeat;
    padding: 140px 0;
    text-align: center;
    color: #ffffff;
}
.fs-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.fs-hero-buttons{
	
    display: inline-flex;
    flex-direction: column;
	align-items:center;
    gap: 20px;	
	
}
  /* Collapse grid */
  .fs-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reduce hero height */
  .fs-hero {
    padding: 80px 0;
    text-align: center;
  }



.fs-tabs-wrapper {
    background: linear-gradient(to bottom, #253179c9, rgb(0 40 90 / 86%));
    padding: 60px 10px;
    border-radius: 12px;
}
.fs-overview{
	
	
}
}




/* =========================
   BENEFITS VIDEO REPLACEMENT
========================= */

.cc-benefits-video {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cc-benefits-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
/* =========================
   SERVICE AREA HUB HERO
========================= */

.sa-hero {
  position: relative;
  background: linear-gradient(135deg, #253179, #1a244f);
  padding: 160px 0 120px 0;
  color: #ffffff;
  text-align: center;
}

.sa-hero .cc-btn-green {
	background: #85c153; color: #fff;
}

.sa-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.sa-hero-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.sa-hero-subtitle {
  font-size: 18px;
  color: #85c153;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.sa-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
}

.sa-hero-description {
  font-size: 20px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 40px auto;
}

/* CLICK NAV */

.sa-hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sa-hero-nav a {
  padding: 10px 18px;
  border-radius: 30px;
  background: #ffffff;
  color: #253179;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.sa-hero-nav a:hover {
  background: #85c153;
  color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {
  .sa-hero-title {
    font-size: 34px;
  }

  .sa-hero-description {
    font-size: 17px;
  }

  .sa-hero-nav {
    gap: 10px;
  }
}

/* =========================
   SERVICE AREA LOCATIONS
========================= */

.sa-location {
  padding: 120px 0;
  background: #f6f9fc;
}


.sa-location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sa-location-header {
  text-align: center;
  margin-bottom: 60px;
}

.sa-location-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #253179;
}

.sa-location-header p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* SERVICE GRID */

.sa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.sa-service-card {
  display: block;
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  text-decoration: none;
  color: #253179;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.sa-service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.sa-service-card p {
  font-size: 16px;
  line-height: 1.6;
}

.sa-service-card:hover {
  transform: translateY(-8px);
  background: #85c153;
  color: #ffffff;
}

/* MAP */

.sa-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .sa-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sa-services-grid {
    grid-template-columns: 1fr;
  }

  .sa-location-header h2 {
    font-size: 28px;
  }
}
/* =========================
   SERVICE AREA LOCATIONS
========================= */



/* Every other section gets soft green */
.sa-location:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    #f3faea 0%,
    #eef8e4 100%
  );
}


/* =========================
   CINCINNATI SECTION
========================= */

/* =========================
   CINCINNATI HERO
========================= */

.cs-hero {
  position: relative;
  padding: 180px 0;
  background: url('/img/homepage/carpet-cleaning-01.jpg') center center / cover no-repeat;
  color: #ffffff;
}

.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 45, 0.65);
}

.cs-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-hero-content {
  max-width: 750px;
}

.cs-hero-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #85c153;
  margin-bottom: 15px;
}

.cs-hero-title {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 25px;
}

.cs-hero-description {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cs-hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #85c153;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.cs-hero-btn:hover {
  background: #6aa63d;
}


/* =========================
   SERVICE SECTIONS
========================= */

.cs-service-section {
  padding: 130px 0;
}

.cs-service-section:nth-child(even) {
  background: #f6f9fc;
}

.cs-service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-reverse .cs-service-image {
  order: 2;
}

.cs-service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cs-service-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #253179;
}

.cs-service-subtitle {
  font-size: 18px;
  color: #85c153;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs-service-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

/* MINI BULLET CARDS */

.cs-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cs-mini-card {
  background: #eef8e4;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s ease;
}

.cs-mini-card:hover {
  background: #85c153;
  color: #ffffff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
.cs-hero {
    position: relative;
    padding: 180px 0;
    background: url('/img/homepage/carpet-cleaning-01.jpg') center center / cover no-repeat;
    color: #ffffff;
    text-align: center;
}
  .cs-service-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-reverse .cs-service-image {
    order: 0;
  }

  .cs-mini-cards {
    grid-template-columns: 1fr;
  }

  .cs-hero-title {
    font-size: 2rem;
  }

  .cs-hero-description {
    font-size: 18px;
  }
}

.cs-hub {
  padding: 120px 0;
  background: #f6f9fc;
}

.cs-hub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.cs-hub-header {
  text-align: center;
  margin-bottom: 70px;
}

.cs-hub-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #253179;
  margin-bottom: 20px;
}

.cs-hub-header p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

/* GRID */

.cs-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */

.cs-hub-card {
  display: block;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  color: #253179;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.cs-hub-icon {
  font-size: 34px;
  color: #85c153;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.cs-hub-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cs-hub-card p {
  font-size: 15px;
  opacity: 0.85;
}

/* HOVER */

.cs-hub-card:hover {
  transform: translateY(-8px);
  background: #85c153;
  color: #ffffff;
}

.cs-hub-card:hover .cs-hub-icon {
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .cs-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
.cs-service-section {
    padding: 130px 0;
    text-align: center;
}
.cs-service-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #253179;
}
}

@media (max-width: 768px) {
  .cs-hub-grid {
    grid-template-columns: 1fr;
  }

  .cs-hub-header h2 {
    font-size: 28px;
  }

  .cs-hub-header p {
    font-size: 16px;
  }
}

/* =========================
   CINCINNATI MAP SECTION
========================= */

.cs-map-section {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3faea 100%
  );
}

.cs-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cs-map-header {
  text-align: center;
  margin-bottom: 50px;
}

.cs-map-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #253179;
  margin-bottom: 15px;
}

.cs-map-header p {
  font-size: 18px;
  color: #333;
}

.cs-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}


/**** Special Offers Section ****/

/* ===============================
   HERO SECTION
=================================*/

.so-hero {
  position: relative;
  padding: 140px 20px;
      background: linear-gradient(135deg, #253179, #4c5383);

  color: #fff;
  text-align: center;
}

.so-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.so-hero-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.so-hero-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #8bc34a;
}

.so-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.so-hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.so-hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #61c50e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s ease;
}

.so-hero-btn:hover {
  background: #4da10a;
}


/* ===============================
   OFFER SECTION LAYOUT
=================================*/

.so-offer-section {
  padding: 100px 20px;
  background: #f7faf8;
}

.so-offer-section:nth-child(even) {
  background: #edf5f1;
}

.so-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}


/* ===============================
   OVERVIEW SIDE
=================================*/

.so-offer-overview h2 {
  font-size: 36px;
  margin-bottom: 15px; font-weight: 800;
  color: #253179;
}

.so-offer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d6b4f;
}

.so-offer-overview p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}


/* ===============================
   COUPON GRID
=================================*/

.so-coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}


/* ===============================
   COUPON CARD
=================================*/

.so-coupon {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  border: 2px dashed #61c50e;
  transition: .3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.so-coupon:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.so-coupon h3 {
  font-size: 18px;
  margin-bottom: 12px; font-weight: 600;
  color: #253179;
}

.so-discount {
  font-size: 32px;
  font-weight: 800;
  color: #61c50e;
  margin-bottom: 10px;
}

.so-coupon p {
  font-size: 14px;
  color: #555;
}


/* ===============================
   OPTIONAL "EXPIRING" BADGE
=================================*/

.so-coupon::before {
  content: "Limited Time";
  position: absolute;
  top: -12px;
  right: 15px;
  background: #253179;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}


/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 991px) {

  .so-offer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .so-coupon-grid {
    grid-template-columns: 1fr;
  }

  .so-hero-title {
    font-size: 36px;
  }

}




/**** Contact Section ****/


/**** Testimonials Section ****/
/* ===============================
   TESTIMONIALS HERO
=================================*/

.ts-hero {
  position: relative;
  padding: 140px 20px;
  background: url('/img/services/area-rug-001.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.ts-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.ts-hero-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.ts-hero-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #8BC34A;
    font-weight: 600;
}

.ts-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ts-hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.ts-hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #61c50e;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s ease;
}

.ts-hero-btn:hover {
  background: #4da10a;
}

/* ===============================
   VALUE SECTION
=================================*/

.ts-value-section {
  padding: 100px 20px;
 background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #eaf7da;
    background-attachment: fixed;
    background-position: center;
  text-align: center;
}

.ts-value-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ts-value-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #253179;
    font-weight: 800;
}

.ts-value-content p {
  font-size: 20px;
  line-height: 1.7; font-family: font4; letter-spacing: .5px;
  margin-bottom: 50px;
  color: #444;
}

.ts-value-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.ts-stat {
	    padding: 50px 10px;
    background: #fff;
    border-radius: 10px;
    border: 2px dashed navy;
}

.ts-stat h3 {
  font-size: 20px;
  margin-bottom: 10px; font-weight: 600;
  color: #85c153;
}

.ts-stat p {
  font-size: 17px;
  color: #555; font-family: font4; letter-spacing: .5px;
}

.ts-stat i {
	padding: 15px; border-radius: 5px; background: #253179; color: #fff; font-size: 45px; margin-bottom: 25px;
}

.ts-review-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #253179;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s ease;
}

.ts-review-btn:hover {
  background: #161D42; color: #fff;
}


/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 991px) {

  .ts-value-stats {
    grid-template-columns: 1fr;
  }

  .ts-hero-title {
    font-size: 36px;
  }

}


/* ===============================
   REVIEW GRID
=================================*/

.ts-reviews-section {
  padding: 100px 20px;
    background: linear-gradient(142deg, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 53%) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.75) 75%, rgba(255, 255, 255, .75) 100%), url(/img/homepage/tile-01.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.ts-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ts-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ts-review-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ts-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ts-avatar {
  width: 50px;
  height: 50px;
  background: #61c50e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ts-stars {
  color: #f4b400;
  font-size: 16px;
  margin-bottom: 10px;
}

.ts-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.ts-review-link {
  margin-top: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #253179;
}

.ts-review-link:hover {
  text-decoration: underline;
}


/* ===============================
   LOAD MORE BUTTON
=================================*/

.ts-load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.ts-load-more-btn {
  padding: 14px 30px;
  background: #253179;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s ease;
}

.ts-load-more-btn:hover {
  background: #61c50e;
}


/* Responsive */

@media (max-width: 991px) {
  .ts-reviews-grid {
    grid-template-columns: 1fr;
  }
}


/*FAQS SECTION*/

/* ===============================
   GLOBAL FAQ STYLES
=================================*/

.fq-hero h1,
.fq-section h2,
.fq-accordion-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.fq-section p,
.fq-accordion-content p,
.fq-accordion-content li {
  font-family: font4;
  letter-spacing: .5px;
  font-size: 20px;
  line-height: 1.6;
}

/* ===============================
   HERO
=================================*/

.fq-hero {
  position: relative;
  padding: 140px 40px;
  background: url('/img/homepage/faq-hero-01.jpg') center center / cover no-repeat;
  color: #fff; background-position: bottom;
}

.fq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.fq-hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.fq-hero-nav a {
  display: block;
  margin-bottom: 15px;
  color: #8bc34a;
  text-decoration: none;
  font-weight: 600;
}

.fq-hero-nav a:hover {
  color: #fff;
}

.fq-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.fq-hero-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Responsive */
@media(max-width:991px){
  .fq-hero-container{
    grid-template-columns:1fr;
  }
}

/* ======================================
   SECTION BASE
====================================== */

/* ======================================
   FAQ SECTION BASE
====================================== */

.fq-section {
  padding: 120px 40px;
  position: relative;
}

.fq-overview img {
	max-width: 35%; margin-bottom: 50px;
}

.fq-light {
  background: #f7faf8;
}

.fq-dark {
  background: #edf5f1;
}

.fq-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 50px;
}

.fq-section p,
.fq-accordion-content p,
.fq-accordion-content li {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.7;
}

/* ======================================
   SPLIT LAYOUT
====================================== */

.fq-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fq-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Reverse */
.fq-reverse .fq-split > div:first-child {
  order: 2;
}
.fq-reverse .fq-split > div:last-child {
  order: 1;
}

/* ======================================
   ACCORDION CARD
====================================== */

.fq-accordion-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all .3s ease;
  border-left: 4px solid transparent;
}

.fq-accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.fq-accordion-title {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}

/* Chevron */
.fq-accordion-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 28px;
  transition: transform .3s ease;
}

.fq-accordion-item.active .fq-accordion-title::after {
  content: "–";
}

/* Content */

.fq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  margin-top: 20px;
}

.fq-accordion-content a {
	color: #253179; font-weight: 600; letter-spacing: 1px;
}

.fq-accordion-content a:hover {
	color: #85c153;
}

.fq-accordion-content ul {
  margin-top: 18px;
  padding-left: 22px;
}

.fq-accordion-content li {
  margin-bottom: 8px;
}

/* Active State */
.fq-accordion-item.active {
  border-left: 4px solid #61c50e;
}

/* ======================================
   CENTER OVERVIEW
====================================== */

.fq-container-center {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.fq-container-center .fq-accordion-item {
  text-align: left;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:991px){
  .fq-split {
    grid-template-columns: 1fr;
  }
  .fq-hero-content{
	text-align:center;
  }
.fq-hero-nav a {
    display: block;
    margin-bottom: 15px;
    color: #8bc34a;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}
  .fq-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
	        text-align: center;
}
.fq-accordion-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px 10px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all .3s ease;
    border-left: 4px solid transparent;
}

.fq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.48rem;
    margin-bottom: 50px;
    text-align: center;
}
.fq-accordion-title {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}
}

/* ======================================
   FAQ CTA SECTION
====================================== */

.faq-cta-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, #253179 0%, #424e99 100%);
  text-align: center;
  color: #ffffff;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 44px;
  margin-bottom: 25px;
}

.faq-cta-content p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* Buttons */

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}

/* Call Button */
.faq-cta-call {
  background: #61c50e;
  color: #fff;
}

.faq-cta-call:hover {
  background: #fff; color: #61c50e;
  transform: translateY(-3px);
}

/* Contact Button */
.faq-cta-contact {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.faq-cta-contact:hover {
  background: #ffffff;
  color: #1e2f2a;
  transform: translateY(-3px);
}

/* Responsive */

@media(max-width:768px){
  .faq-cta-content h2 {
    font-size: 34px;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}



/*Privacy Policy*/

.pp-section {
  padding: 120px 40px;
  background: #f7faf8;
}

.pp-container {
  max-width: 900px;
  margin: 0 auto;
}

.pp-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 20px;
}

.pp-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 15px;
}

.pp-section p,
.pp-section li {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.7;
}

.pp-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.pp-effective-date {
  opacity: 0.7;
  margin-bottom: 40px;
}



/*Blog Hub Page*/

/* =========================================
   BLOG HERO
========================================= */

.bh-hero {
  position: relative;
  padding: 140px 40px;
      background: linear-gradient(to bottom, #253179c2, rgb(0 40 90 / 86%)), url(/img/homepage/clean-option-03.jpg);
    background-size: cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.bh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.bh-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bh-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 52px;
  margin-bottom: 25px;
}

.bh-hero p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  max-width: 750px;
  margin: 0 auto 45px;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================================
   FILTER BUTTONS
========================================= */

.bh-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.bh-filter-btn {
  background: transparent;
  border: 2px solid #85c153;
  color: #fff;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s ease;
}

.bh-filter-btn:hover {
  background: #85c153;
  color: #253179;
}

.bh-active {
  background: #85c153;
  color: #253179;
}

/* =========================================
   FEATURED CAROUSEL
========================================= */

.bh-featured {
  padding: 100px 40px;
  background: #f8fafc;
}

.bh-featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bh-featured-item {
  display: block;
  text-decoration: none;
  color: #253179;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all .3s ease;
}

.bh-featured-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.bh-featured-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bh-featured-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  padding: 20px 25px 5px;
}

.bh-featured-item p {
  font-family: font4;
  font-size: 16px;
  padding: 0 25px 25px;
  line-height: 1.6;
}

/* =========================================
   ARTICLE GRID
========================================= */

.bh-articles {
  padding: 120px 40px;
  background: #ffffff;
}

.bh-articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bh-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.bh-article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.bh-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.bh-article-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.bh-article-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bh-article-content {
  padding: 25px;
}

.bh-article-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  color: #253179;
}

.bh-article-content p {
  font-family: font4;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* =========================================
   LOAD MORE BUTTON
========================================= */

.bh-load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

.bh-load-more-btn {
  background: #85c153;
  color: #253179;
  border: none;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s ease;
}

.bh-load-more-btn:hover {
  background: #6faa3f;
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){
  .bh-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){

  .bh-hero h1 {
    font-size: 38px;
  }

  .bh-articles-grid {
    grid-template-columns: 1fr;
  }

  .bh-featured-image img,
  .bh-article-img img {
    height: 200px;
  }
}


/**** Sections On Every Page ****/
.contact-section {
	padding: 75px; color: #fff;
}

.contact-section .caser {
	background: linear-gradient(#85c153, #85c153a3), url(/img/homepage/floor-steam-01.jpg);
    background-size: cover;
    background-color: #ffffff; background-repeat: no-repeat;
   padding: 100px 50px 100px 50px; border-radius: 25px;
    background-position: center;
}


.contact-section h2 {
	font-size: 35px; font-family: Montserrat; font-weight: 800;  
}

.contact-section h4 {
	font-family: font4; font-size: 20px; line-height: 50px; letter-spacing: 1px;
}

.contact-section h4 strong {
	text-transform: uppercase; font-size: 25px;
}

.contact-section p {
	font-family: font4; font-size: 20px; line-height: 35px; letter-spacing: .5px; margin: 10px 50px 25px 0px;
}

.contact-section a {
	color: inherit;
}

.contact-section a:hover {
	color: #253179;
}

.contact-section .mapper iframe {
	border-radius: 5px; width: 100%; height: 525px;
}


@media (max-width: 991px){
	
	
.contact-section .caser {
    text-align: center;
    background: linear-gradient(#85c153, #85c153a3), url(/img/homepage/floor-steam-01.jpg);
    background-size: cover;
    background-color: #ffffff;
    background-repeat: no-repeat;
    padding: 100px 10px 100px 10px;
    border-radius: 25px;
    background-position: center;
}
.contact-section p {
    font-family: font4;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: .5px;
    margin: 0;
}
	
}
/* =========================================
   CONTACT HERO
========================================= */

.ct-hero {
  position: relative;
  padding: 140px 40px;
  background: url('../img/homepage/cleaner-carpet-01.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
      background: linear-gradient(rgb(0 0 0 / 85%), rgb(0 0 0 / 85%));
}

.ct-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.ct-hero-subtitle {
  font-family: font4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}

.ct-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 25px;
}

.ct-hero-description {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Buttons */

.ct-btn-primary {
  background: #85c153;
  color: #253179;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
  margin: 5px;
}

.ct-btn-primary:hover {
  background: #6faa3f;
  transform: translateY(-3px);
}

.ct-btn-outline {
  border: 2px solid #85c153;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  display: inline-block;
  margin: 5px;
}

.ct-btn-outline:hover {
  background: #85c153;
  color: #253179;
}

/* =========================================
   MAP SECTION
========================================= */

.ct-map-section {
  padding: 100px 40px;
  background: #f7faf8;
}

.ct-map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ct-map-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #253179;
  margin-bottom: 20px;
}

.ct-map-content p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ct-contact-details div {
  margin-bottom: 10px;
  font-family: font4; letter-spacing: .5px;
  font-size: 18px;
}
.ct-contact-details a {
	color: #85c153; font-weight: 600;
}

.ct-map-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* =========================================
   SERVICES OVERVIEW
========================================= */

.ct-services {
  padding: 120px 40px;
      background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #ffffff;
    background-attachment: fixed;
    background-position: center;
  text-align: center;
}

.ct-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ct-services h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #253179;
  margin-bottom: 60px;
}

.ct-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ct-service-card {
  background: #f7faf8;
  padding: 40px 25px;
  border-radius: 14px;
  transition: all .3s ease;
}

.ct-service-card i {
  font-size: 28px;
  color: #85c153;
  margin-bottom: 15px;
}

.ct-service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #253179;
  margin-bottom: 12px;
}

.ct-service-card p {
  font-family: font4;
  font-size: 18px;
  letter-spacing: .5px;
}

.ct-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =========================================
   SERVICE AREAS SPLIT
========================================= */

.ct-areas {
  padding: 120px 40px;
  background: #edf5f1;
}

.ct-areas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ct-areas-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.ct-areas-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #253179;
  margin-bottom: 20px;
}

.ct-areas-content p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 30px;
}

.ct-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ct-area-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #253179;
  transition: all .3s ease;
}

.ct-area-card:hover {
  background: #85c153;
  color: #253179;
  transform: translateY(-3px);
}

/* =========================================
   CONTACT FORM
========================================= */

.ct-form-section {
  padding: 120px 40px;
  background: #ffffff;
  text-align: center;
}

.ct-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.ct-form-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #253179;
  margin-bottom: 40px;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: font4;
  font-size: 18px;
  letter-spacing: .5px;
}

.ct-form textarea {
  resize: vertical;
}

.ct-form button {
  margin-top: 10px;
}

/* =========================================
   FINAL CTA
========================================= */

.ct-final-cta {
  padding: 100px 40px;
  background: #253179;
  text-align: center;
  color: #fff;
}

.ct-final-container {
  max-width: 800px;
  margin: 0 auto;
}

.ct-final-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}

.ct-final-container p {
  font-family: font4;
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 40px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 992px){

  .ct-map-container,
  .ct-areas-container {
    grid-template-columns: 1fr;
  }

  .ct-services-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width: 768px){

  .ct-hero-title {
    font-size: 36px;
  }

  .ct-services-grid {
    grid-template-columns: 1fr;
  }

}

/* ========================================== */
/* === Misc. Section ======================== */
/* ========================================== */

/****  Referrals Owl Carousel ****/
.owl-carousel .owl-stage-outer {
	padding: 40px 0;
}
.owl-nav {
	position: absolute; width: 100%; top: 10%; display: none;
}
.owl-carousel .item {
	display: block; height: 100%;
}
.owl-carousel .owl-item span {
	font-size: 20px; font-weight: 500;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
	position: absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
	background: transparent !important; color: #212121 !important; opacity: .5 !important;
}
.owl-nav .owl-next {
	left: 100%;
}
.owl-nav .owl-prev {
	right: 100%;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
	font-size: 3em; display: block;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
	outline: none;
}

/**** Default Classes ****/
body {
	font-family: 'Montserrat', sans-serif;
}
body#barbajs {
	visibility: visible;
}
a, button, .btn {
	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
a {
	cursor:pointer;	text-decoration: none !important;
}
a:hover {
	color: #252525; text-decoration: underline;
}
.btn {
	cursor: pointer; border-radius: 0;
}
.btn.alert-trigger {
	color: #fdfdfd; background-color:#333;
}
.btn:hover {
	opacity: 0.9;
}
.inner-content-section .btn {
	background:rgba(135,170,188);	border-color: #949494; color: rgba(255,255,255,1);
}
.inner-content-section .btn:hover {
	background-color: rgba(135,170,188,0.4); color: #fff;
}
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {outline: none;box-shadow: none;background-color: #444;border-color: #949494;color: #fff;}
.btn-primary:hover {
	border-color: #949494;
}
.btn.focus, .btn:focus {
	outline:none; box-shadow: none;
}
.section-divider {
	position: relative; padding: 50px 0;
}
.estimate-section-divider .alert, .estimate-section-divider .alert p {
    text-align: left; font-size: inherit;
}
.block-overlay {
	position: absolute; display: inline-block; background:rgba(0, 0, 0, 0.6); width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
}
.fadeDiv {
	position: fixed; display: inline-block; z-index: 1050; color: #fff; background: #300e87; padding: 50px; top: 150px; bottom: 150px; left: 300px; right: 300px; transform:scale(0,0); box-shadow: 0px 0px 20px -1px #000; transition: all .20s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.menu-scaler {
	position: fixed; display: inline-block; padding: 50px; z-index: 1050; top: 150px; bottom: 150px; left: 300px; right: 300px; transform: scale(1,1);
}
.fadeDiv .fadeDiv-close {
	position: absolute; right: 20px; top: 10px; font-weight: 900; font-size: 2em; font-family: 'Lato'; cursor: pointer;
}
.navbar-collapse ul {
	width: 100%; justify-content: center; align-items: center;
}
.overlay {
	height: 100%; width: 100%; background: #ffffffbf;
}
#myBtn {
	display: block; width: 50px; height: 50px; position: fixed; top: 100%; right: 30px; z-index: 99; border: none; outline: none; background-color: #000000; color: #ffffff; cursor: pointer; font-size: 14px; padding-top: 0; border-radius: 0px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;
}
#myBtn i {
	color: white;
}
#myBtn:hover {
	background-color: #424242; color: #fff;
}
/* =========================
   BEFORE / AFTER SLIDER
========================= */

.ba-wrapper {
  max-width: 900px;
  margin: 60px auto;
}

.ba-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: ew-resize;
}

.ba-img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HANDLE */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #85c153;
  transform: translateX(-50%);
  z-index: 5;
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: #85c153;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px white;
}

/* LABELS */
.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  z-index: 6;
}

.ba-before {
  left: 20px;
}

.ba-after {
  right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .ba-label {
    font-size: 12px;
  }
}
/**** Gallery Function Section ****/
#portfolio input {
	display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; margin: 0; top: 0; left: -60px; z-index: 2; width: 60px; height: 60px; -webkit-appearance: none; background-image: url(/img/icons/close-btn-icon-red.png); background-repeat: no-repeat; background-color: transparent; background-size: contain; color: #ffffff; border: none; cursor: pointer; outline: none !important; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
#portfolio input:hover {
	background-color: #fff;	opacity: .;
}
button.mfp-close, button.mfp-arrow {
	outline :none !important;
}
#portfolio {
	display: flex; padding: 0; overflow: hidden; flex-wrap: wrap; justify-content: center;
}
#portfolio li {
	display: flex; justify-content: center; align-items: center; float: left; position: relative; overflow: hidden; margin: 0 10px 20px;
}
#portfolio li a {
	transform: scale(1,1); display: block; width: 100%; height: 295px; width: 490px; overflow: hidden; -o-transition:all .30s ease; -moz-transition:all .30s ease; -webkit-transition:all .30s ease; transition:all .30s ease;
}
#portfolio li a:hover {
	transform: scale(1.1,1.1) !important;
}
#portfolio li a img {
	display: block; position: absolute; top: 0%; bottom: 0%; left: 0%; right: 0%; margin: auto; width: 100%; height: auto; transform: scale(1,1);
}
#portfolio li:hover .block-overlay {
	background-color: #000000cc;
}
#portfolio li:hover input {
	left: 0;
}
#portfolio .block-overlay {
	background: rgb(0,0,0,0.1); z-index: 1; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}

.mfp-ready .mfp-figure {
	opacity: 0; margin-left: -100px;
}
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 0; margin-left: -100px; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
	opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
	opacity: 1; margin-left: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
	opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
	-webkit-transform: scale(0.95);	-ms-transform: scale(0.95); transform: scale(0.95); opacity: 0; margin-left: -100px;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
	opacity: 0; margin-left: -20px;
}
.mfp-iframe-scaler {
	overflow: visible; /*so the close button is shown*/
}
.mfp-zoom-out-cur {
	cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: pointer;
}

/**** Reviews Function ****/
.carousel-indicators li {
	position: relative; top: 51px; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px;	height: 3px; margin-right: 3px;	margin-left: 3px; text-indent: -999px; background-color: rgb(191, 190, 190);
}
.carousel-indicators .active {
	background-color: #0f8029;
}

/* ========================================== */
/* === Footer Section ======================= */
/* ========================================== */
/* ============================= */
/* XC MODERN FOOTER              */
/* ============================= */

.xc-footer {
      background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #ffffff;
    background-attachment: fixed;
    background-position: center;

  padding: 80px 0 30px;
  font-size: 15px;
}

.xc-footer a {
  color: #253179;
  text-decoration: none;
  transition: color .3s ease;
}

.xc-footer a:hover {
  color: #85c153; font-weight: 600;
}

/* Top Grid */
.xc-footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.xc-footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.xc-footer-col h4 {
 color: #85c153; font-family: Montserrat;
  margin-bottom: 20px; font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.xc-footer-links,
.xc-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.xc-footer-links li,
.xc-hours li {
  margin-bottom: 8px;
}

/* Service Areas */
.xc-service-areas {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px; background: #85c153; border-radius: 10px;
  margin-bottom: 40px;
}

.xc-service-areas h4 {
  color: #fff; font-family: Montserrat; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 800; letter-spacing: .5px;
}

.xc-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 20px;
}

.xc-areas-grid a {
  font-size: 14px;
}

/* Bottom */
.xc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.xc-footer-social a {
  margin: 0 8px;
  font-size: 16px;
}

.xc-footer-social a:hover {
  color: #85c153;
}

/* Responsive */
@media (max-width: 992px) {
  .xc-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .xc-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
.xc-footer {
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/homepage/carpet-texture-077.png);
    background-size: 10%;
    background-color: #ffffff;
    background-attachment: fixed;
    background-position: center;
    padding: 80px 0 30px;
    font-size: 15px;
    text-align: center;
}
.xc-areas-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    flex-direction: column;
}
  
}




/* === Lg. Laptop CSS Section ================= */
@media screen and (max-width : 1440px) {
	/*** Don't place anything here, unless absolutely necessary ***/
}
/* === Sm. Laptop CSS Section ================= */
@media screen and (max-width: 1024px) {
	
}
 
/* === Mobile CSS Section ===================== */
@media screen and (max-width:  991px) {
.xc-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
}
.top-header img{
	max-width: 140px; 
}
/**** Top Header Section ****/
.mobile-top-header {
    display: block !important;
    padding: 0 30px 0;
    background: rgb(135,170,188);
    z-index: 40;
    overflow: visible;
    position: fixed;
	        width: 100%;
}

.mobile-menu {
	text-align: center; position: fixed; height: 100%; width: 100%;	display: block;	padding-top: 6em; top: 100%; border: 0;	background: #232323; border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
	font-size: 2em;	color: #c5c5c5 !important;
}
.mobile-menu-custom-show {
	top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover;	padding: 40px 0 0; top:0; left:0; width: 100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding: 0 25px;
}
#mobile-menu-header {
	margin-top: 0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style: none; padding: 0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(0,0,0);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(0,0,0);
}
.top-header {
	background: white; display: none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display: none;
}
.header-contact_info .navbar-brand {
	font-size: 1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content: flex-start;
}
.top-header div[class*='col-'] {
	display: flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
	display: flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background: none; margin: 0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size: inherit; line-height: inherit;
}

/**** Navigation Section ****/
.dropdown-wrapper {
	margin: 0; padding: 0;
}
.navbar-sidebar .dropdown-menu-mobile,
.navbar-sidebar .dropdown-menu-mobile-2,
.navbar-sidebar .dropdown-menu-mobile-3 {
	position: relative;
	display: none;
	top: 0;
	left: 0;
	z-index: 1000;
	float: left;
	height: 0px;
	margin: 0;
	width: 100%;
	padding: 0;
	font-size: 18px;
	color: #e6e6e6 !important;
	text-align: left;
	list-style: none;
	background-color: rgb(200,200,200);
	border: 0;
	visibility: hidden;
	border-radius: 0;
	transform: scale(1,0);
	-webkit-transition: all .30s ease;
	-moz-transition: all .30s ease;
	-o-transition: all .30s ease;
	transition: all .30s ease;
}

.dropdown-menu-animate,
.dropdown-menu-animate-2,
.dropdown-menu-animate-3 {
	display: inline-block !important;
	transform: scale(1,1) !important;
	padding: 25px 0 !important;
	height: auto !important;
	visibility: visible !important;
}

.navbar-sidebar .dropdown-menu-mobile a,
.navbar-sidebar .dropdown-menu-mobile-2 a,
.navbar-sidebar .dropdown-menu-mobile-3 a {
	color: rgb(75,75,75);
	font-weight:600 !important;
	font-size: 1.1rem;
	text-align: left;
	font-family: Montserrat;
	font-weight: 800;
}
.navbar-sidebar {
	padding-top: 111px; height: 100%; width: 200px; background-color: rgb(250,250,250); position: fixed !important; z-index: 20; overflow: auto;
}
.bar-block .dropdown-hover, .bar-block .dropdown-click {
	width: 100%;
}
.bar-block .dropdown-hover .dropdown-content, .bar-block .dropdown-click .dropdown-content {
	min-width: 100%;
}
.bar-block .dropdown-hover .button, .bar-block .dropdown-click .button {
	width: 100%; text-align: left; padding: 8px 16px;
}
.main, #main {
	transition: margin-left .4s;
}
.modal {
	display: none; padding-top: 100px; position: fixed; left: 0; top: 0; width: 100%; height: 100%;	overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);
}
.modal-content {
	margin: auto; background-color: #fff; position: relative; padding: 0; outline: 0; width: 1200px;
}
.bar {
	width: 100%; overflow: hidden;
}
.center .bar {
	display: inline-block; width: auto;
}
.bar .bar-item {
	padding: 8px 16px; float: left; width: auto; border: none; display: block; outline: 0;
}
.bar .dropdown-hover, .bar .dropdown-click {
	position: static; float: left;
}
.bar .button {
	white-space: normal;
}
.bar-block .bar-item {
	width: 100%; display: block; padding: 8px 16px; text-align: left; border: none; white-space: normal; float: none; outline: 0;
	
	
		font-family: Montserrat;
    font-weight: 600;
	color:black;
}
.nav-link{
	font-family: Montserrat;
    font-weight: 600;
	color:black;

}
.bar-block.center .bar-item {
	text-align: center;
}
.block {
	display: block; width: 100%;
}

/**** Home Section ****/
.home-header-section {
	padding-top: 125px;
}
.dropdown-menu {
	position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: .5rem 0; margin: .125rem 0 0; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(87, 86, 87); background-clip: padding-box; border: 1px solid rgba(0,0,0,.15); border-radius: .25rem;
}
.dropdown-item {
	display: block;	width: 100%; padding: .25rem 1.5rem; clear: both; color: rgb(255,255,255); text-align: inherit;	white-space: nowrap; background: 0 0; border: 0;
}
.dropdown-item.active, .dropdown-item:active {
	color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(22,22,22) !important;
}
.video {
	overflow: hidden; position: relative; z-index: 2; display: block;
}
.video .pad {
	padding: 350px 0px 0px 300px; position: absolute;
}
.video .pad h5 {
	font-weight: 500; color: rgb(255,255,255); font-size: 50px; text-shadow: 0px 0px 5px #000; font-family: 'Arial'; text-align: left;
}
.video .pad p {
	margin-top: 0% !important; color: rgb(255,255,255); text-shadow: 0px 0px 5px #000; font-size: 25px; font-family: 'Arial'; text-align: left;
}
.video .pad a {
	font-size: 16px; color: rgb(255,255,255); font-family: 'Arial'; font-weight: 600; border: 1px solid rgb(12,32,63); padding: 15px 30px; border-radius: 1.6rem; background: rgb(12,32,63);
}
.video .pad a:hover {
	color: rgb(255,255,255); border: 1px solid rgb(255,255,255); background: transparent;
}
 .home1 h2 {
    font-family: Montserrat;
    font-size: 2rem;
    text-align: center;
    font-weight: 800;
    color: #253179;
    margin-bottom: 50px;
}
.home1 h3 {
    font-family: Montserrat;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: #85c153;
    margin-left: 0;
    text-align: center;
}
.home1 h3 span {
    font-size: 1rem;
    color: #85c153;
    padding: 0;
}
.home1 p {
    font-size: 22px;
    font-family: font4;
    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
    font-weight: 500;
    text-align: center;
    color: rgb(151 151 151);
    line-height: 35px;
    letter-spacing: 1px;
}
/**** Services Section ****/


/**** Gallery Section ****/
.gallery-page {
	padding: 75px 0 50px 0;	background: rgb(249,249,249);
}
.gallery-page h1 {
	font-size: 3rem; font-weight: 600; font-family: 'font2'; padding-bottom: 40px; text-align: center; color: rgb(129,141,148);
}

/**** Areas We Service Section ****/
.area:nth-child(odd) {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.area:nth-child(even) {
	padding: 75px 0 75px 0; background: rgb(245,245,245);
}
.area h2 {
	font-size: 2.5rem; font-family: font2; font-weight: 800; color: rgb(196,41,56);
}
.area h4 {
	font-size: 1.5rem; font-family: font2; color: rgb(75,75,75);
}
.area p {
	font-size: 17px; text-align: justify; color: rgb(12,12,12);
}
.area iframe {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 1px rgb(0,0,0);
}

/**** Testimonials Section ****/
.testimonials {
	padding: 30px 0 30px 0; background: rgb(255,255,255);
}

/**** Contact Section ****/


/**** Sections On Every Page ****/
.contact-section {
	padding: 50px 0 50px 0;
}
.contact-section h3 {
	font-size: 2rem; font-family: font2; font-weight: 800; text-align: center; color: rgb(12,12,12);
}

/**** Footer Section ****/
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px; padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 10px; color: rgb(255,255,255);
}

/**** Misc. Section ****/
.btn {
	background: rgb(249,78,1); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0; position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
	position: fixed; transform: scale(1,1); border: 0; background: white; border-radius: 0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.alert-dismissible .close {
	position: absolute; top: 0; right: 0; background: transparent; border: none; padding: 0.75rem 1.25rem; color: rgb(80,80,80); font-family: 'font2'; outline: none; z-index: 3;
}
.alert-dismissible .close span {
	font-size: 35px;
}
.lnr {
	display: inline-block; fill: currentColor; width: 1em; height: 1em; vertical-align: -0.2em; cursor: pointer;
}

}
/* === Sm. Mobile CSS Section ================= */
@media screen and (max-width: 375px) {

}