@charset "UTF-8";
/* CSS Document */

/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap");

/* Typography System */
:root {
	/* Font Families */
	--font-primary: "Outfit", sans-serif;
	--font-secondary: "DM Sans", sans-serif;
}

/* Base Typography */
body {
	font-family: var(--font-secondary);
	font-weight: 400;
	line-height: 1.6;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	line-height: 1.2;
}

/* Typography Classes */
.hero-content h1 {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section-title,
.footer-title {
	font-family: var(--font-primary);
	font-weight: 700;
}

.navbar-nav .nav-link {
	font-family: var(--font-primary);
	font-weight: 500;
}

.btn {
	font-family: var(--font-primary);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.feature-item span {
	font-family: var(--font-primary);
	font-weight: 500;
}

.card-title {
	font-family: var(--font-primary);
	font-weight: 700;
}

.testimonial-content p {
	font-family: var(--font-secondary);
	font-style: italic;
}

.testimonial-author h4 {
	font-family: var(--font-primary);
	font-weight: 600;
}

.contact-cta h2 {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.footer-menu,
.copyright {
	font-family: var(--font-secondary);
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
}

@media (min-width: 62em) {
}

@media (max-width: 768px) {
}

@media (max-width: 992px) {
}

@media (max-width: 1200px) {
}

/* Color System */
:root {
	/* Primary Colors */
	--primary: #209ad4;
	--primary-light: #28c0ee;
	--primary-dark: #0089cd;

	/* Supporting Colors */
	--primary-gradient: linear-gradient(
		45deg,
		var(--primary-dark),
		var(--primary)
	);
	--primary-transparent: rgba(32, 154, 212, 0.1);

	/* Text Colors */
	--text-dark: #333333;
	--text-light: #ffffff;
	--text-muted: #666666;

	/* Background Colors */
	--bg-light: #f8f9fa;
	--bg-dark: #1a1a1a;

	/* Overlay Colors */
	--overlay-dark: rgba(0, 0, 0, 0.7);
	--overlay-light: rgba(255, 255, 255, 0.9);

	/* Bootstrap Color Overrides */
	--bs-primary: #209ad4;
	--bs-primary-rgb: 32, 154, 212;
	--bs-primary-light: #28c0ee;
	--bs-primary-dark: #0089cd;
}

/* Global Styles Enhancement */
body {
	color: var(--text-dark);
}

.btn-primary {
	background: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.text-primary {
	color: var(--primary) !important;
}

/* Global Section Styles */
.section-title {
	position: relative;
	margin-bottom: 2rem;
	font-weight: 700;
}

.section-title:after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--primary);
	margin: 15px auto;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 70vh;
	padding-top: 8rem;
	padding-bottom: 4rem;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://via.placeholder.com/1920x1080");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0, 137, 205, 0.9),
		rgba(32, 154, 212, 0.4),
		rgba(40, 192, 238, 0.1)
	);
}

.hero-content {
	padding: 0;
}

.hero-features {
	margin: 2rem 0;
}

.feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.feature-item i {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 1rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.hero-section .feature-item:hover i {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.hero-section .feature-item span {
	color: #ffffff;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
	margin-top: 2rem;
}

.btn-lg {
	padding: 0.8rem 1.5rem;
	font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-section {
		min-height: 60vh;
		padding-top: 6rem;
		padding-bottom: 3rem;
	}

	.hero-content {
		text-align: center;
		padding: 3rem 1rem;
	}

	.feature-item {
		justify-content: center;
	}

	.hero-buttons .btn {
		display: block;
		width: 100%;
		margin: 1rem 0;
	}
}

/* Service Cards */
.service-card {
	padding: 2rem;
	border-radius: 10px;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--primary);
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-light);
}

/* Feature Boxes */
.feature-box {
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.feature-box i {
	color: #primary-color;
}

/* Hero Slider */
.hero-slider {
	position: relative;
}

.carousel-item {
	height: 600px;
}

.carousel-item img {
	object-fit: cover;
	height: 100%;
}

.carousel-caption {
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2rem 0;
}

/* Service Cards */
.service-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-card .service-icon {
	font-size: 3rem;
	color: #primary-color;
	margin-bottom: 1rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.service-features li {
	margin-bottom: 0.5rem;
}

.service-features i {
	color: #28a745;
	margin-right: 0.5rem;
}

/* Feature Boxes */
.feature-box {
	text-align: center;
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.feature-box i {
	font-size: 2.5rem;
	color: #primary-color;
	margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-item {
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	margin: 1rem;
}

.testimonial-content {
	font-style: italic;
}

.testimonial-content cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-weight: 600;
}

/* CTA Section */
.cta-section {
	background-image: linear-gradient(
		45deg,
		#primary-color,
		darken(#primary-color, 10%)
	);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.carousel-item {
		height: 400px;
	}

	.quick-contact-strip .col-md-3,
	.quick-contact-strip .col-md-6 {
		margin-bottom: 1rem;
	}
}

/* Header Styles */
.site-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1030;
	background: #fff;
	transition: transform 0.3s ease;
}

/* Top Bar */
.header-top {
	background: linear-gradient(to right, var(--primary-dark), var(--primary));
	border-bottom: none;
	font-size: 0.9rem;
	height: 45px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	color: rgba(255, 255, 255, 0.9);
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.contact-item i {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	font-size: 0.9rem;
	color: #fff;
	flex-shrink: 0;
}

.contact-item:hover i {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.contact-info a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.contact-info a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transition: width 0.3s ease;
}

.contact-info a:hover::after {
	width: 100%;
}

.header-top .social-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.header-top .social-link {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.header-top .social-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.header-top .btn-sm {
	padding: 0.25rem 1rem;
	font-size: 0.85rem;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	transition: all 0.3s ease;
	margin-left: 1rem;
}

.header-top .btn-sm:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.header-top {
		height: 40px;
		font-size: 0.8rem;
	}

	.contact-item i {
		width: 24px;
		height: 24px;
		font-size: 0.8rem;
	}

	.header-top .d-none {
		display: none !important;
	}

	.contact-info {
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.header-top {
		display: none;
	}
}

/* Enhanced Main Navigation */
.navbar {
	background: #fff;
	padding: 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.navbar-brand {
	padding: 1rem 0;
}

.navbar-brand img {
	max-height: 60px;
	width: auto;
	transition: all 0.3s ease;
}

/* Navigation Items */
.navbar-nav {
	margin-left: 2rem;
}

.navbar-nav .nav-item {
	position: relative;
	margin: 0 0.25rem;
}

.navbar-nav .nav-link {
	padding: 2rem 1rem;
	color: var(--text-dark);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

/* Hover Effect for Nav Links */
.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	bottom: 1.5rem;
	left: 1rem;
	right: 1rem;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
	transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
	color: var(--primary);
}

/* Quote Button Styling */
.nav-cta .btn-primary {
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease;
	background: linear-gradient(
		45deg,
		var(--primary) 0%,
		var(--primary-light) 100%
	);
	background: #ff5757;
	border: none;
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.2);
}

.nav-cta .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.3);
	background: linear-gradient(
		45deg,
		var(--primary-light) 0%,
		var(--primary) 100%
	);
}

/* Mobile Navigation */
@media (max-width: 991px) {
	.navbar-collapse {
		background: #fff;
		padding: 1rem;
		border-radius: 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		margin-top: 1rem;
	}

	.navbar-nav {
		margin-left: 0;
	}

	.navbar-nav .nav-link {
		padding: 1rem;
		border-radius: 8px;
	}

	.navbar-nav .nav-link:hover {
		background: rgba(var(--bs-primary-rgb), 0.05);
	}

	.navbar-nav .nav-link::after {
		display: none;
}

.navbar-toggler {
	 padding: 0.5rem;
	 border: none;
	 border-radius: 8px;
	 transition: all 0.3s ease;
	}

	.navbar-toggler:hover {
		background: rgba(var(--bs-primary-rgb), 0.05);
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-brand img {
		max-height: 45px;
	}
}

/* Scrolled State */
.navbar.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
	max-height: 45px;
}

.navbar.scrolled .nav-link {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

/* Add padding to body */
body {
	padding-top: 120px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.header-top {
		height: 30px;
	}

	.site-header.nav-up .header-top {
		margin-bottom: -30px;
	}

	body {
		padding-top: 100px;
	}

	.navbar-brand img {
		max-height: 45px;
	}

	.navbar-nav .nav-link {
		padding: 1rem;
	}

	.navbar-collapse {
	background: #fff;
	 padding: 1rem;
	 max-height: 80vh;
	 overflow-y: auto;
	 border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.navbar-toggler {
		padding: 0.5rem;
		border: none;
	}

	.navbar-toggler:focus {
		box-shadow: none;
		outline: none;
	}
}

/* Scroll State */
.navbar.scrolled {
	padding: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
	max-height: 45px;
}

.navbar.scrolled .nav-link {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

/* Introduction Section */
.intro-section {
	position: relative;
	background: #fff;
	padding: 4rem 0;
}

.intro-content {
	position: relative;
}

.intro-content .subtitle {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.intro-content h2 {
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.intro-features {
	position: relative;
}

.intro-feature-item {
	padding: 2rem;
	transition: all 0.3s ease;
}

.intro-feature-item:hover {
	transform: none;
}

.intro-feature-item i {
	color: #primary-color;
	opacity: 0.9;
}

.intro-feature-item h3 {
	margin: 1rem 0;
	font-weight: 600;
}

.intro-feature-item p {
	color: #666;
	margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.intro-feature-item {
		padding: 1rem;
		margin-bottom: 2rem;
	}

	.intro-content h2 {
		font-size: 2rem;
	}
}

/* Units Section */
.units-section {
	position: relative;
	background: linear-gradient(to bottom, var(--bg-light) 0%, #ffffff 100%);
	padding: 6rem 0;
}

.units-section .card {
	border: none;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #ffffff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

.units-section .card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(var(--bs-primary-rgb), 0.15);
	border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.units-section .card-img-top {
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: all 0.5s ease;
}

.units-section .card:hover .card-img-top {
	transform: scale(1.05);
}

.units-section .position-relative {
	overflow: hidden;
	border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

.units-section .badge {
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.75rem 1.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.units-section .card-body {
	padding: 2rem;
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		rgba(var(--bs-primary-rgb), 0.03) 100%
	);
}

.units-section .card-title {
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	position: relative;
	padding-bottom: 1rem;
}

.units-section .card-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.units-section .card:hover .card-title:after {
	width: 100px;
}

.units-section .list-unstyled li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.units-section .list-unstyled li i {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(40, 167, 69, 0.1);
	border-radius: 50%;
	margin-right: 1rem;
	color: #28a745;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.units-section .card:hover .list-unstyled li i {
	transform: scale(1.2);
}

/* Additional Services Section */
.units-section .btn-outline-primary {
	border-width: 2px;
	font-weight: 500;
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
}

.units-section .btn-outline-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
}

.units-section .gap-3 {
	gap: 1.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.units-section {
		padding: 4rem 0;
	}

	.units-section .card {
		margin-bottom: 2rem;
	}

	.units-section .card-body {
		padding: 1.5rem;
	}
}

/* Enhanced Hire Options Styles */
.hire-options-block {
	position: relative;
	padding: 3rem;
	background: #fff;
	border-radius: 20px;
}

.hire-option-card {
	position: relative;
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

.hire-option-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary);
}

.hire-option-card.featured {
	border: 2px solid var(--primary);
	box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.1);
}

.option-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--primary);
	color: #fff;
	padding: 0.25rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
}

.option-header {
	text-align: center;
	margin-bottom: 2rem;
}

.option-icon {
	width: 80px;
	height: 80px;
	background: rgba(var(--bs-primary-rgb), 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--primary);
	transition: all 0.3s ease;
}

.hire-option-card:hover .option-icon {
	background: var(--primary);
	color: #fff;
	transform: rotateY(180deg);
}

.option-header h3 {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.option-subtitle {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

.option-features {
	margin-bottom: 2rem;
}

.option-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.option-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.option-features li:last-child {
	border-bottom: none;
}

.option-features li i {
	color: var(--primary);
	font-size: 1.1rem;
}

.option-features li:hover {
	transform: translateX(5px);
	color: var(--primary);
}

.option-footer {
	text-align: center;
}

.option-footer .btn {
	width: 100%;
	padding: 0.75rem 1.5rem;
}

@media (max-width: 991px) {
	.hire-options-block {
		padding: 2rem;
	}

	.hire-option-card {
		margin-bottom: 1rem;
	}
}

@media (max-width: 768px) {
	.hire-options-block {
		padding: 1.5rem;
	}

	.option-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

/* Testimonials Section */
.testimonials-section {
	position: relative;
	background: #f8f9fa;
}

.testimonial-card {
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
	color: #ffb800;
	font-size: 1.1rem;
}

.testimonial-rating i {
	margin-right: 2px;
	transition: transform 0.2s ease;
}

.testimonial-rating i:hover {
	transform: scale(1.2);
}

.testimonial-content {
	position: relative;
	margin-bottom: 1.5rem;
}

.testimonial-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	font-style: italic;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author .author-info h4 {
	font-size: 1.1rem;
	margin: 0;
	color: #333;
}

.testimonial-author .author-info span {
	font-size: 0.9rem;
	color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.testimonial-card {
		margin-bottom: 1rem;
	}
}

/* Family Business Styles */
.family-story {
	position: relative;
	margin: 3rem 0;
}

.family-image {
	border-radius: 10px;
}

.years-badge {
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background: var(--primary-gradient);
	color: var(--text-light);
	padding: 1rem 2rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Family Values List */
.family-values li {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	background: rgba(var(--bs-primary-rgb), 0.03);
	border-radius: 12px;
	transition: all 0.3s ease;
	border-left: 3px solid var(--primary);
}

.family-values li:hover {
	transform: translateX(10px);
	background: rgba(var(--bs-primary-rgb), 0.08);
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.1);
}

.family-values li i {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	margin-right: 1rem;
	color: var(--primary);
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.1);
}

.family-values li:hover i {
	transform: scale(1.1) rotate(10deg);
	color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.family-values li {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.family-values li:hover {
		transform: translateY(-5px);
	}
}

/* Ensure container handles overflow properly */
.container {
	overflow: visible;
}

/* Add specific styling for CTA wrapper */
.intro-cta-wrapper {
	position: relative;
	padding: 2rem 0;
	margin-top: 2rem;
	z-index: 10; /* Ensure it's above other elements */
}

/* Contact CTA Section */
.contact-cta {
	position: relative;
	background: var(--primary-gradient);
	overflow: hidden;
}

.contact-cta-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
		url("path-to-your-image.jpg") center/cover no-repeat;
	opacity: 0.15;
}

.contact-cta-content {
	position: relative;
	z-index: 2;
}

.contact-option-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-option-card.featured {
	background: var(--text-light);
	border: none;
}

.contact-option-card:hover {
	transform: translateY(-5px);
}

.contact-option-card .contact-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.8rem;
	color: #fff;
}

.contact-option-card.featured .contact-icon {
	background: var(--bs-primary);
}

.contact-option-card h3 {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.contact-option-card p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
}

.contact-option-card.featured h3,
.contact-option-card.featured p {
	color: #333;
}

.feature-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	color: #fff;
	font-size: 0.9rem;
	margin: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.contact-option-card {
		margin-bottom: 1rem;
	}

	.contact-option-card.featured {
		transform: none;
	}

	.feature-badge {
		width: 100%;
		justify-content: center;
		margin: 0.5rem 0;
	}
}

/* Enhanced Footer Styles */
.site-footer {
	background: linear-gradient(to bottom, #f8f9fa, #ffffff);
	color: var(--text-dark);
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-top {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
}

/* Decorative background elements */
.footer-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 0% 0%,
			rgba(var(--bs-primary-rgb), 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 100% 100%,
			rgba(var(--bs-primary-rgb), 0.05) 0%,
			transparent 50%
		);
	z-index: 0;
}

/* Footer Logo and Info */
.footer-info {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
}

.footer-logo {
	max-height: 65px;
	width: auto;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
}

.footer-logo:hover {
	transform: translateY(-3px);
}

/* Footer Contact Items */
.footer-contact .contact-item {
	padding: 0.75rem 1rem;
	background: rgba(var(--bs-primary-rgb), 0.03);
	border-radius: 8px;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
	background: rgba(var(--bs-primary-rgb), 0.06);
	transform: translateX(5px);
}

.footer-contact .contact-item i {
	color: var(--primary);
	font-size: 1.1rem;
	width: 24px;
	text-align: center;
}

.footer-contact .contact-item a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
	color: var(--primary);
}

/* Footer Menu Links */
.footer-menu {
	position: relative;
	z-index: 1;
	margin-top: 0.5rem;
}

.footer-menu li {
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.footer-menu a {
	color: var(--text-muted);
	text-decoration: none;
	display: inline-block;
	padding: 0.35rem 0;
	position: relative;
	transition: all 0.3s ease;
}

.footer-menu a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.footer-menu a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.footer-menu a:hover::after {
	width: 100%;
}

/* Enhanced Social Links */
.social-links {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.social-link {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--bs-primary-rgb), 0.1);
	color: var(--primary);
	border-radius: 50%;
	transition: all 0.3s ease;
	text-decoration: none;
	z-index: 1000;
}

.social-link:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-3px) rotate(8deg);
	box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
}

/* Footer Bottom */
.footer-bottom {
	background: #f8f9fa;
	padding: 1.25rem 0;
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom-links {
	display: flex;
	justify-content: flex-end;
	gap: 2rem;
}

.footer-bottom-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
	color: var(--primary);
}

.copyright {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.footer-top {
		padding: 3rem 0;
	}

	.footer-bottom-links {
		justify-content: center;
		margin-top: 1rem;
	}

	.copyright {
		text-align: center;
	}
}

/* Additional Enhancements */
.btn {
	border-radius: 50px;
	padding: 0.8rem 1.5rem;
	transition: all 0.3s ease;
}

.btn-lg {
	padding: 1rem 2rem;
}

.badge {
	padding: 0.5rem 1rem;
	border-radius: 50px;
}

/* Animation Classes */
.hover-lift {
	transition: transform 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
}

/* Custom Shadows */
.shadow-custom {
	box-shadow: 0 5px 20px rgba(32, 154, 212, 0.1);
}

/* Bootstrap Color Overrides */
:root {
	--bs-primary: #209ad4;
	--bs-primary-rgb: 32, 154, 212;
	--bs-primary-light: #28c0ee;
	--bs-primary-dark: #0089cd;
}

/* Button Overrides */
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-primary-dark);
	--bs-btn-hover-border-color: var(--bs-primary-dark);
	--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--bs-primary-dark);
	--bs-btn-active-border-color: var(--bs-primary-dark);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--bs-primary);
	--bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--bs-primary);
}

/* Background Utilities */
.bg-primary {
	background-color: var(--bs-primary) !important;
}

.bg-primary-light {
	background-color: var(--bs-primary-light) !important;
}

.bg-primary-dark {
	background-color: var(--bs-primary-dark) !important;
}

/* Text Utilities */
.text-primary {
	color: var(--bs-primary) !important;
}

/* Border Utilities */
.border-primary {
	border-color: var(--bs-primary) !important;
}

/* Link Colors */
.link-primary {
	color: var(--bs-primary) !important;
}

.link-primary:hover,
.link-primary:focus {
	color: var(--bs-primary-dark) !important;
}

/* Alert Modifications */
.alert-primary {
	--bs-alert-color: var(--bs-primary-dark);
	--bs-alert-bg: rgba(var(--bs-primary-rgb), 0.1);
	--bs-alert-border-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* Badge Modifications */
.badge.bg-primary {
	background-color: var(--bs-primary) !important;
}

/* Global Fix for Horizontal Scroll */
html,
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

/* Container Fix */
.container {
	overflow: visible;
	/*max-width: 100%;*/
}

/* Fix for Full-width Sections */
section {
	overflow: hidden;
	width: 100%;
}

/* Fix for Bootstrap Row Negative Margins */
.row {
	margin-right: 0;
	margin-left: 0;
}

/* Optional: Add a subtle zoom effect on hover */
.hero-section:hover .hero-background {
	transform: scale(1.02);
}

/* Enhanced Animations and Transitions */
.transition-all {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Refined Button Styles */
.btn {
	position: relative;
	overflow: hidden;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
}

.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.3s ease;
}

.btn:active::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	transition: 0s;
}

/* Enhanced Card Styles */
.card {
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Refined Section Styles */
section {
	position: relative;
	z-index: 1;
}

section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.1),
		rgba(0, 0, 0, 0)
	);
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: -0.02em;
}

.display-4 {
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.lead {
	font-weight: 400;
	line-height: 1.8;
}

/* Refined Feature Icons */
.feature-item i {
	position: relative;
	z-index: 1;
}

.feature-item i::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: currentColor;
	border-radius: 50%;
	opacity: 0.1;
	transform: translate(-50%, -50%) scale(1.6);
	z-index: -1;
	transition: transform 0.3s ease;
}

.feature-item:hover i::after {
	transform: translate(-50%, -50%) scale(1.8);
}

/* Enhanced Image Treatments */
.img-fluid {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-zoom {
	overflow: hidden;
	border-radius: 10px;
}

.img-hover-zoom img {
	transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
	transform: scale(1.05);
}

/* Refined Badge Styles */
.badge {
	padding: 0.5em 1em;
	font-weight: 500;
	letter-spacing: 0.03em;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
	background: linear-gradient(145deg, #ffffff, #f8f9fa);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), 0 15px 35px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}


/* Refined Contact CTA */
.contact-cta {
	background: linear-gradient(
		135deg,
		var(--primary-dark),
		var(--primary),
		var(--primary-light)
	);
}

.contact-option-card {
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
.footer-top {
	position: relative;
	overflow: hidden;
}

.footer-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(var(--bs-primary-rgb), 0.03),
		rgba(var(--bs-primary-rgb), 0.01)
	);
	z-index: 0;
}

/* Scroll Animations */
.scroll-fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
	.display-4 {
		font-size: calc(1.8rem + 1.5vw);
	}

	.card {
		margin-bottom: 1.5rem;
	}

	.contact-option-card {
		margin-bottom: 1rem;
	}
}

/* Social Links in Header Top Bar */
.header-top .social-links a {
	color: #fff;
	font-size: 1rem;
	opacity: 0.9;
	transition: all 0.3s ease;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
}

.header-top .social-links a:hover {
	opacity: 1;
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.2);
	text-decoration: none;
}

.header-top .social-links i {
	color: #fff;
}

/* Remove focus outline from nav links */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-item:focus,
.dropdown-item:active {
	background-color: var(--primary-transparent);
	color: var(--primary);
	outline: none;
	box-shadow: none;
}

/* Style active dropdown items */
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--primary-transparent);
	color: var(--primary);
}

/* Simplified Dropdown Styling */
.dropdown-menu {
	border: none;
	border-radius: 12px;
	padding: 0.5rem;
	margin-top: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--primary);
	animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-item {
	padding: 0.75rem 1.25rem;
	font-weight: 500;
	color: var(--text-dark);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.dropdown-menu li.active .dropdown-item {
	background: var(--primary);
	color: #fff;
}

.dropdown-item:hover {
	background: var(--primary);
	color: #fff;
}

.dropdown-item.active {
	background: var(--primary);
	color: #fff;
}

/* Dropdown Arrow */
.dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
	transform: rotate(180deg);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.dropdown-menu {
		background: rgba(var(--bs-primary-rgb), 0.05);
		box-shadow: none;
		border-top: none;
	}

	.dropdown-item:hover {
		background: var(--primary);
		color: #fff;
	}
}

/* Header States */
.site-header {
	transition: transform 0.3s ease;
}

.site-header.nav-up .header-top {
	transform: translateY(-100%);
	margin-bottom: -45px; /* Match the height of header-top */
}

.site-header.nav-down .header-top {
	transform: translateY(0);
	margin-bottom: 0;
}

/* Footer Title Styling */
.footer-title {
	color: var(--text-dark);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.footer-title:hover::after {
	width: 50px;
}

/* Header Top Bar Social Links Fix */
.header-top-right {
	height: 100%;
	display: flex;
	align-items: center;
}

.header-top .social-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	height: 100%;
	margin: 0; /* Remove any margins */
}

.header-top .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px
	color: #fff;
	font-size: 1rem;
	opacity: 0.9;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* Adjust container height */
.header-top .container {
	height: 100%;
}

.header-top .row {
	height: 100%;
}

.header-top .col-lg-9,
.header-top .col-lg-3 {
	height: 100%;
	display: flex;
	align-items: center;
}

/* Waste Removal Page Styles */
.waste-removal-page .hero-features {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.feature-card {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li:hover {
	transform: translateX(5px);
	color: var(--primary);
}

.feature-list li i {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.feature-list li span {
	margin-left: 0.5rem;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.service-item {
	text-align: center;
	padding: 2rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item i {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.location-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.location-badge {
	background: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.location-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: var(--primary);
	color: #fff;
}

@media (max-width: 768px) {
	.hero-features {
		flex-direction: column;
		align-items: center;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}
}

/* Enhanced Unit Features Styles */
.unit-features {
	position: relative;
	overflow: hidden;
}

.section-header {
	margin-bottom: 3rem;
}

.section-header .subtitle {
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 1rem;
}

.feature-card {
	background: #fff;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.card-icon-wrapper {
	margin-bottom: 2rem;
	position: relative;
}

.card-icon {
	width: 70px;
	height: 70px;
	background: rgba(var(--bs-primary-rgb), 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--primary);
	transition: all 0.3s ease;
	position: relative;
}

.feature-card:hover .card-icon {
	background: var(--primary);
	color: #fff;
	transform: rotateY(180deg);
}

.card-title {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	font-weight: 600;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	display: flex;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li:hover {
	transform: translateX(5px);
	color: var(--primary);
}

.feature-list li i {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.feature-list li span {
	margin-left: 0.5rem;
}

@media (max-width: 768px) {
	.feature-card {
		padding: 1.5rem;
	}

	.card-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.card-title {
		font-size: 1.25rem;
	}
}

/* Enhanced Coverage Area Styles */
.coverage-area {
	position: relative;
	background: linear-gradient(
		to bottom,
		rgba(var(--bs-light-rgb), 1) 0%,
		rgba(var(--bs-light-rgb), 0.5) 100%
	);
}

.coverage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

.coverage-map {
	position: relative;
	background: url("path/to/map-placeholder.jpg") center/cover;
	border-radius: 20px;
	min-height: 400px;
	overflow: hidden;
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--bs-primary-rgb), 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	padding: 2rem;
}

.map-overlay i {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.map-overlay h3 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

.location-wrapper {
	padding: 2rem;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-groups {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.location-group h4 {
	color: var(--text-dark);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	font-size: 1.2rem;
}

.location-group h4 i {
	color: var(--primary);
}

.location-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.location-badge {
	background: rgba(var(--bs-primary-rgb), 0.1);
	color: var(--text-dark);
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.location-badge i {
	color: var(--primary);
	font-size: 0.9rem;
}

.location-badge:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-3px);
}

.location-badge:hover i {
	color: #fff;
}

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

	.coverage-map {
		min-height: 300px;
	}
}

@media (max-width: 768px) {
	.location-wrapper {
		padding: 1.5rem;
	}

	.location-groups {
		gap: 1.5rem;
	}

	.location-badge {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
}

/* Enhanced Unit Specs Styles */
.unit-specs {
	background: rgba(var(--bs-primary-rgb), 0.03);
	padding: 3rem;
	border-radius: 20px;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.spec-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.spec-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.spec-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: rgba(var(--bs-primary-rgb), 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary);
	transition: all 0.3s ease;
}

.spec-item:hover .spec-icon {
	background: var(--primary);
	color: #fff;
	transform: rotateY(180deg);
}

.spec-content h4 {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.spec-content p {
	color: var(--text-muted);
	margin-bottom: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.unit-specs {
		padding: 1.5rem;
	}

	.specs-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.spec-item {
		padding: 1rem;
	}

	.spec-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 1.25rem;
	}
}

/* Enhanced Specifications Styles */
.specifications-block {
	background: #fff;
	border-radius: 20px;
	padding: 3rem;
}

.specs-container {
	position: relative;
}

.specs-image {
	position: relative;
	background: rgba(var(--bs-primary-rgb), 0.05);
	border-radius: 15px;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.dimension-markers {
	position: absolute;
	width: 100%;
	height: 100%;
}

.marker {
	position: absolute;
	background: rgba(var(--bs-primary-rgb), 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.marker.height {
	width: 40px;
	height: 80%;
	right: 20px;
	top: 10%;
}

.marker.width {
	height: 40px;
	width: 80%;
	bottom: 20px;
	left: 10%;
}

.marker span {
	font-size: 0.9rem;
	color: #fff!important;
	font-weight: 500;
	white-space: nowrap;
}

.marker.height span {
	transform: rotate(90deg);
}

.specs-overlay {
	font-size: 4rem;
	color: var(--primary);
	opacity: 1;
}

.specs-details {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.spec-group {
	background: rgba(var(--bs-primary-rgb), 0.03);
	border-radius: 15px;
	padding: 1.5rem;
}

.spec-group-title {
	color: var(--text-dark);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
}

.spec-group-title i {
	color: var(--primary);
}

.spec-list {
	display: grid;
	gap: 1rem;
}

.spec-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.spec-item:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: rgba(var(--bs-primary-rgb), 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.spec-item:hover .spec-icon {
	background: var(--primary);
	color: #fff;
	transform: rotateY(180deg);
}

.spec-info {
	display: flex;
	flex-direction: column;
}

.spec-label {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.spec-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
}

@media (max-width: 991px) {
	.specs-image {
		min-height: 300px;
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	.specifications-block {
		padding: 1.5rem;
	}

	.spec-group {
		padding: 1rem;
	}

	.spec-item {
		padding: 0.75rem;
	}
}

/* Enhanced About Page Styles */
.about-hero {
	position: relative;
	overflow: hidden;
}

.hero-subtitle {
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.hero-badges {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.badge-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
}

.badge-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.badge-item i {
	font-size: 1.2rem;
}

/* Timeline Styles */
.timeline {
	position: relative;
	padding: 2rem 0;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: var(--primary);
	opacity: 0.2;
}

.timeline-item {
	position: relative;
	padding: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.timeline-marker {
	background: var(--primary);
	color: #fff;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	position: relative;
	z-index: 1;
	min-width: 120px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.2);
}

.timeline-content {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	flex: 1;
	max-width: 500px;
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

/* Values Section */
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-card {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
	transform: scaleX(1);
}

.value-icon {
	width: 80px;
	height: 80px;
	background: rgba(var(--bs-primary-rgb), 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--primary);
	transition: all 0.3s ease;
}

.value-card:hover .value-icon {
	background: var(--primary);
	color: #fff;
	transform: rotateY(180deg);
}

.value-card h3 {
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.value-card p {
	color: var(--text-muted);
	margin-bottom: 0;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.timeline::before {
		left: 2rem;
	}

	.timeline-item {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 4rem;
	}

	.timeline-marker {
		position: absolute;
		left: 0;
		transform: translateX(-50%);
	}

	.timeline-content {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.hero-badges {
		flex-direction: column;
		align-items: center;
	}

	.badge-item {
		width: 100%;
		justify-content: center;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.value-card {
		padding: 1.5rem;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

/* Enhanced FAQ Accordion Styles */
.accordion-item {
	border: none;
	margin-bottom: 1rem;
	background: #fff;
	border-radius: 10px !important;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
	padding: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	background: #fff;
	border: none;
}

.accordion-button:not(.collapsed) {
	color: var(--primary);
	background: #fff;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(var(--bs-primary-rgb), 0.1);
}

.accordion-button::after {
	background-size: 1rem;
	transition: all 0.3s ease;
}

.accordion-body {
	padding: 1rem 1.25rem 1.25rem;
	color: var(--text-muted);
}

.accordion-button:hover {
	background: rgba(var(--bs-primary-rgb), 0.03);
}

/* Custom arrow icon */
.accordion-button::after {
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	background-image: none !important;
	font-size: 1.2rem;
	color: var(--primary);
}

.accordion-button:not(.collapsed)::after {
	transform: rotate(-180deg);
}

/* Enhanced Contact Hero Styles */
.contact-hero {
    padding: 5rem 0;
    background: var(--primary);
    overflow: hidden;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-hero .hero-badges {
    margin: 2rem 0;
}

.contact-hero .badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.contact-hero .badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-hero .badge-item i {
    font-size: 1.2rem;
}

.contact-hero .hero-cta {
    margin-top: 2.5rem;
}

.contact-hero .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-hero .btn-light {
    background: #fff!important;
    color: var(--primary)!important;
	text-decoration: none!important;
}

.about-cta .btn-light {
	text-decoration: none!important;
}

.about-cta .btn-outline-light {
	color: #fff!important;
	text-decoration: none!important;
}

.about-cta .btn-outline-light:hover {
	color: #000!important;
	text-decoration: none!important;
}

.contact-hero .btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}

/* Contact Information Styles */
.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(var(--bs-primary-rgb), 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.info-details a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-details a:hover {
    color: var(--primary-dark) !important;
}

.info-details address {
    font-style: normal;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .info-item {
        padding: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

/* Family Story Section Styles */
.story-timeline {
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.2;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.story-year {
    min-width: 200px;
    text-align: right;
    padding-right: 2rem;
    position: relative;
}

.story-year span {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.story-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 10px;
}

.story-highlight i {
    color: var(--primary);
    font-size: 1.5rem;
}

.story-quote {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 10px;
    position: relative;
}

.story-quote i {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.story-quote p {
    margin: 0;
    padding-left: 2rem;
    font-style: italic;
}

@media (max-width: 991px) {
    .story-timeline::before {
        left: 0;
    }

    .story-item {
        flex-direction: column;
        padding-left: 2rem;
    }

    .story-year {
        text-align: left;
        padding-right: 0;
        padding-left: 2rem;
    }

    .story-content {
        width: 100%;
    }

	.btn {
		margin-bottom: 1rem!important;
	}
}

/* Credentials Section Styles */
.credentials-section {
    position: relative;
    overflow: hidden;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.credential-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.credential-card:hover::before {
    transform: scaleX(1);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.credential-card:hover .credential-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.credential-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.credential-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.credential-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credential-card:hover .feature-tag {
    background: var(--primary);
    color: #fff;
}

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

    .credential-card {
        padding: 1.5rem;
    }

    .credential-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.team-card .years-badge,
.team-card .role-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-card .role-badge {
    background: rgba(0, 0, 0, 0.75);
}

/* Fix for badge hover state */
.team-card:hover .years-badge,
.team-card:hover .role-badge {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-content .position {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.team-card.founder {
    border: 2px solid rgba(var(--bs-primary-rgb), 0.1);
}

.team-card.founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-content {
        padding: 1.5rem;
    }
}

/* Team Badge Styles */
.team-image .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.badge-experience, .badge-family {
    background: var(--primary);
    color: #fff;
}

/* Remove the dark background style
.badge-family {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}
*/

.team-image .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Enhanced Introduction Section Styles */
.intro-feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.intro-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.intro-feature-item:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.feature-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.intro-content .subtitle {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .intro-feature-item {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }
}

/* Enhanced Content Block Styles */
.solution-block,
.service-block,
.quality-block {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Solution Block Styles */
.highlight-box {
    background: rgba(var(--bs-primary-rgb), 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    font-size: 2rem;
    color: var(--primary);
}

.experience-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
	width: 100%;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.solution-features .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features .feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.solution-features .feature-list li:hover {
    transform: translateX(10px);
    background: rgba(var(--bs-primary-rgb), 0.05);
}

.solution-features .feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Service Block Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-content .feature-item {
    height: 100%;
}

.service-content .service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.service-content .service-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.service-content .service-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

.service-note {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 15px;
    margin-top: 2rem;
}

.service-note .feature-icon {
    margin-bottom: 0;
}

.service-note p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-note {
        padding: 1rem;
    }
}


.blog h1 small {
	display: block;
	font-weight: 100;
}

.blog-card .card-header, .blog-card .card-body, .blog-card .card-footer {
	background: none;
	background-color: #fff;
	border:none;
}

.blog-card .card-body, .blog-card .card-footer {
	padding: 1rem 2rem;
}

.blog-card .card-footer {
	padding-bottom:2rem;
}

.blog-card {
	-moz-border-radius: 5px;
-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	-moz-box-shadow: 2px 2px 10px #ddd;
-webkit-box-shadow: 2px 2px 10px #ddd;
box-shadow: 2px 2px 10px #ddd;
}
	.blog-card img {
		height: 200px;
		object-fit: cover;
		aspect-ratio: 1/1!important;
	}

	.blog-card .card-header {
		height: 200px;
		object-fit: cover;
		aspect-ratio: 1/1!important;
		padding: 0;
	}

	.navigation h2.screen-reader-text {
		display: none;
	}
	.navigation {
		margin-top: 2rem;
		margin-bottom: 4rem;
	}

	.nav-links > div {
		width: 50%;
		display: inline-block;
	}

	.nav-links .nav-next {
		text-align: right;
	}

	.nav-links a {
		text-decoration: none;
		color: var(--primary-dark);
		text-transform: capitalize;
		font-size: 1.3rem;
	}

	.nav-links a:hover {
		color: #000;
	}
	
	#photoGalleryCarousel {
		border-radius: 10px;
		overflow: hidden;
	}

	.waste-image img, .hire-image img {
		border-radius: 10px;
	}

	.waste-badge, .hire-image-badge {
		margin-left: 20px;
		margin-top: -25px;
	}

	.btn-light {
		background-color: #ff5757;
		color: #fff!important;
	}

	.btn-light:hover {
		background-color: #fff!important;
		color: #ff5757!important;
	}

	