.color-white {
	color: #ffffff !important;
}
.w-50percent{
	width: 10%;
}
/* hero-section-start */
/* .hero-section {
	position: relative;
}

.hero-bg {
	width: 100%;
	height: auto;
	display: block;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: 650px;
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
} */



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

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(
        to right,
        rgba(13, 45, 69, 0.85),
        rgba(13, 45, 69, 0.55)
    );
    padding: 80px 0;
}

/* Content */
.hero-content {
    max-width: 720px;
    color: #ffffff;
}

/* Title */
.hero-content h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
	color: white;
}

/* Description */
.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
	color: white;
}

/* CTA Wrapper */
.hero-actions {
    display: flex;
    gap: 15px;
}

/* ===============================
   THEMED PRIMARY BUTTON
   =============================== */

.hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary-blue);
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(13, 45, 69, 0.35);
}

/* Hover Effect */
.hero-actions a:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

@media (max-width: 991px) {
    .hero-overlay {
        padding: 60px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions a {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* hero-section-end */

/* services-section-start */

.services-grid {
	display: grid;
	gap: 24px;
}

.service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card-img img {
	width: 100%;
	height: auto;
	display: block;
}

.service-card-body {
	padding: 20px;
	text-align: center;
}

.service-card-body h3 {
	margin-bottom: 18px;
	font-size: 18px;
}

/* CTA Button – clean & strong */
.service-btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 6px;
	background-color: #0d6efd; /* primary blue */
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.25s ease, transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.service-btn:hover {
	background-color: #0b5ed7;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
}

/* Desktop: 5 cards */
@media (min-width: 1400px) {
	.services-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

/* Small desktop: 3 cards */
@media (max-width: 1399px) and (min-width: 992px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Tablet: 2 cards */
@media (max-width: 991px) and (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile: 1 card */
@media (max-width: 767px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

/* services-section-end */

/* advantages-section-start */

.advantages-section {
	padding: 60px 0;
}

.advantages-box {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.advantages-title {
	text-align: center;
	margin-bottom: 25px;
}

.advantages-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin-bottom: 40px;
}

.advantages-list li {
	color: #0d6efd;
	font-weight: 500;
}

.advantages-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.advantages-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.google-rating {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rating-score {
	font-weight: 600;
	font-size: 18px;
}

.primary-cta {
	display: inline-block;
	padding: 14px 28px;
	background-color: #0d6efd;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(13, 110, 253, 0.4);
}

.advantages-right {
	display: flex;
	gap: 20px;
	align-items: center;
}

.advantages-right img {
	max-width: 180px;
	height: auto;
}

/* Responsive */
@media (max-width: 768px) {
	.advantages-content {
		flex-direction: column;
		text-align: center;
	}

	.advantages-left {
		align-items: center;
	}
}

/* advantages-section-end */

/* service-switcher-section-start */

/* .service-switcher-section {
    padding: 60px 0;
}

.service-switcher-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}


.service-display {
    position: relative;
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
}

.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
}

.service-overlay h2 {
    margin-bottom: 20px;
}

.service-overlay p {
    margin-bottom: 25px;
    max-width: 600px;
}

.service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    width: fit-content;
}


.service-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.service-tab {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.25s ease;
}

.service-tab:last-child {
    border-bottom: none;
}

.service-tab.active {
    background-color: #0d6efd;
    color: #ffffff;
}

.service-icon {
    font-size: 28px;
}


@media (max-width: 992px) {
    .service-switcher-wrapper {
        flex-direction: column;
    }
} */

/* service-switcher-section-end */

/* service-switcher-section-start */

.service-switcher {
	padding: 60px 0;
}

.service-switcher-inner {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	height: 520px;
	background: #fff;
}

/* LEFT */
.service-left {
	position: relative;
	width: 65%;
	overflow: hidden;
}

.service-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-overlay {
	position: absolute;
	inset: 0;
	padding: 60px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-overlay h2 {
	margin-bottom: 20px;
}

.service-overlay p {
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 30px;
	color: white;
}

.service-cta {
	display: inline-block;
	padding: 14px 28px;
	background: #ffffff;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	width: fit-content;
	font-weight: 500;
}

/* RIGHT */
.service-right {
	width: 35%;
	background: #f2f2f2;
	display: flex;
	flex-direction: column;
}

.service-tab {
	flex: 1;
	padding: 30px 25px;
	text-align: center;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	transition: background 0.3s ease;
}

.service-tab:last-child {
	border-bottom: none;
}

.service-tab .icon {
	font-size: 22px;
	display: block;
	margin-bottom: 10px;
}

.service-tab .label {
	font-size: 15px;
}

.service-tab.active {
	background: #0d6efd;
	color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
	.service-switcher-inner {
		flex-direction: column;
		height: auto;
	}

	.service-left,
	.service-right {
		width: 100%;
	}

	.service-left {
		height: 420px;
	}
}

/* service-switcher-section-end */

/* professional-window-cleaning-section-start */

.content-section {
	padding: 20px 0;
}

.content-title {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	font-weight: 600;
}

.content-text {
	max-width: 900px;
	margin: 0 auto;
}

.content-text p {
	margin-bottom: 24px;
	line-height: 1.8;
	font-size: 16px;
}

/* professional-window-cleaning-section-end */

/* how-it-works-section-start */

.how-it-works-section {
	padding: 80px 0;
}

.how-it-works-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* LEFT */
.how-it-works-title {
	color: #0d6efd;
	margin-bottom: 20px;
	font-size: 30px;
	font-weight: 600;
}

.how-it-works-text p {
	margin-bottom: 30px;
	line-height: 1.7;
	max-width: 480px;
}

.how-it-works-cta {
	display: inline-block;
	padding: 14px 30px;
	background-color: #0d6efd;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
}

/* RIGHT – VIDEO PLACEHOLDER */
.how-it-works-video {
	background-color: #d6d6d6;
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-consent-box {
	background-color: #1c1c1c;
	color: #ffffff;
	padding: 30px;
	border-radius: 6px;
	text-align: center;
	max-width: 360px;
	width: 100%;
}

.video-consent-text {
	font-size: 14px;
	margin-bottom: 15px;
}

.video-consent-text a {
	color: #4da3ff;
	text-decoration: none;
}

.video-load-btn {
	background-color: #ff0000;
	color: #ffffff;
	border: none;
	padding: 10px 22px;
	border-radius: 20px;
	cursor: pointer;
	margin-bottom: 12px;
}

.video-consent-checkbox {
	font-size: 13px;
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
	.how-it-works-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.how-it-works-video {
		min-height: 220px;
	}
}

/* how-it-works-section-end */

/* benefits-section-start */

.benefits-section {
	padding: 80px 0;
}

.benefits-title {
	text-align: center;
	margin-bottom: 60px;
	font-size: 32px;
	font-weight: 600;
	color: #0d6efd;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.benefit-item {
	text-align: center;
}

.benefit-icon {
	font-size: 38px;
	margin-bottom: 18px;
	color: #0d6efd;
}

.benefit-item h3 {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.benefit-item p {
	line-height: 1.7;
	font-size: 15px;
}

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

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

/* benefits-section-end */

/* faq-section-start */

.faq-section {
	padding: 80px 0;
}

.faq-title {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	font-weight: 600;
	color: #0d6efd;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	border-top: 1px solid #ddd;
}

.faq-item {
	border-bottom: 1px solid #ddd;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 22px 0;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	padding-bottom: 22px;
	line-height: 1.7;
	font-size: 15px;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

/* CTA */
.faq-cta-wrapper {
	max-width: 900px;
	margin: 40px auto 0;
	display: flex;
	justify-content: flex-end;
}

.faq-cta {
	padding: 14px 28px;
	background-color: #0d6efd;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
	.faq-question {
		font-size: 16px;
	}
}

/* faq-section-end */

/* Start of Locations Section CSS */
.locations-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}
.locations-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}
.locations-title {
	text-align: center;
	font-size: 2.5em;
	color: #007bff;
	margin-bottom: 20px;
}
.locations-text {
	font-size: 1.1em;
	line-height: 1.7;
	color: #333;
	margin-bottom: 30px;
}
.map-wrapper {
	position: relative;
	flex: 1;
	min-width: 300px;
}
.map-wrapper img {
	width: 100%;
	height: 450px;
	display: block;
}
.marker {
	position: absolute;
	cursor: pointer;
	transform: translate(-50%, -100%);
}
.marker img {
	width: 30px;
	height: 30px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.tooltip {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.9em;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}
.marker.active .tooltip {
	opacity: 1;
	visibility: visible;
}
.locations-list {
	flex: 1;
	min-width: 300px;
}
.locations-list ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
}
.locations-list li {
	font-size: 1.1em;
}
.locations-list li::before {
	content: "› ";
	color: #007bff;
	font-weight: bold;
}

@media (max-width: 992px) {
	.locations-container {
		flex-direction: column;
	}
	.map-wrapper,
	.locations-list {
		width: 100%;
	}
}
@media (max-width: 576px) {
	.locations-title {
		font-size: 2em;
	}
	.locations-list ul {
		grid-template-columns: 1fr;
	}
}
/* End of Locations Section CSS */

/* Tabbed Section CSS start */

.tabbed-section {
	padding: 60px 0;
}

.tabbed-section-inner {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	height: 520px;
	background: #fff;
}

/* LEFT */
.tabbed-left {
	position: relative;
	width: 65%;
	overflow: hidden;
}

.tabbed-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tabbed-overlay {
	position: absolute;
	inset: 0;
	padding: 60px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tabbed-overlay h2 {
	margin-bottom: 20px;
}

.tabbed-overlay p {
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 30px;
	color: white;
}

.tabbed-cta {
	display: inline-block;
	padding: 14px 28px;
	background: #ffffff;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	width: fit-content;
	font-weight: 500;
}

/* RIGHT */
.tabbed-right {
	width: 35%;
	background: #f2f2f2;
	display: flex;
	flex-direction: column;
}

.tabbed-tab {
	flex: 1;
	padding: 30px 25px;
	text-align: center;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	transition: background 0.3s ease;
}

.tabbed-tab:last-child {
	border-bottom: none;
}

.tabbed-tab .icon {
	font-size: 22px;
	display: block;
	margin-bottom: 10px;
}

.tabbed-tab .label {
	font-size: 15px;
}

.tabbed-tab.active {
	background: #0d6efd;
	color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
	.tabbed-section-inner {
		flex-direction: column;
		height: auto;
	}

	.tabbed-left,
	.tabbed-right {
		width: 100%;
	}

	.tabbed-left {
		height: 420px;
	}
}

/* Tabbed Section CSS end */

/*dynamic layouts*/

.content-title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
}

.content-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.feature-box {
	background: #fff;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	height: 100%;
}


/*dynamic layouts end*/
